API Integration Guide
Complete documentation for integrating with the Magpie Scraping API.
๐ Authentication
All endpoints require a Bearer token in the Authorization header:
Authorization: your-api-token
Contact us for trial access or manage your token in Magpie Data.
โณ Approval Flow
Jobs for Variant Sold, Merchant Items and Search Items endpoints go through manual approval:
- You submit a job โ Status:
AWAITING_APPROVAL - Our team reviews and approves (within 24 hours)
- Job starts processing โ Status:
PROCESSING - Results ready โ Status:
COMPLETEDorPARTIAL_COMPLETE
Note: Shopee Product Page, Tokopedia PDP, and Blibli PDP do NOT require approval - tasks are processed immediately.
1. Variant Sold
Batch scraping for Shopee product variant and sales data. Up to 50,000 items per request.
Supported regions: ID ยท SG ยท TH ยท PH ยท MY ยท VN ยท TW
๐ Endpoint
POST /v1/shopee/variant_sold_v1/submit
GET /v1/shopee/variant_sold_v1/retrieve/{job_id}
GET /v1/shopee/variant_sold_v1/download/{job_id}
๐ฅ Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
country | string | Yes | Country code: id, sg, th, ph, my, vn, tw |
items | array | Yes | Array of objects with item_id and shop_id (max 50,000) |
๐ป Code Examples
# Submit Job
curl -X POST "https://nest-api.magpieiq.com/v1/shopee/variant_sold_v1/submit" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"country": "id",
"items": [
{"item_id": 13490493252, "shop_id": 651735813},
{"item_id": 12345678901, "shop_id": 987654321}
]
}'
# Poll Status
curl "https://nest-api.magpieiq.com/v1/shopee/variant_sold_v1/retrieve/{job_id}" \
-H "Authorization: Bearer YOUR_API_TOKEN"
# Download Results
curl "https://nest-api.magpieiq.com/v1/shopee/variant_sold_v1/download/{job_id}" \
-H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time
API_HOST = "https://nest-api.magpieiq.com"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
# 1. Submit Job
payload = {
"country": "id",
"items": [
{"item_id": 13490493252, "shop_id": 651735813},
{"item_id": 12345678901, "shop_id": 987654321}
]
}
response = requests.post(f"{API_HOST}/v1/shopee/variant_sold_v1/submit", json=payload, headers=headers)
job_id = response.json()["job_id"]
print(f"Job submitted: {job_id}")
# 2. Poll until complete
while True:
status_resp = requests.get(f"{API_HOST}/v1/shopee/variant_sold_v1/retrieve/{job_id}", headers=headers)
status = status_resp.json()["status"]
print(f"Status: {status}")
if status in ["COMPLETED", "PARTIAL_COMPLETE", "FAILED"]:
break
time.sleep(30)
# 3. Download results
download_resp = requests.get(f"{API_HOST}/v1/shopee/variant_sold_v1/download/{job_id}", headers=headers)
print(download_resp.json())
Behavior
- Cost: 10 credits per item
- Approval: Required (24h timeout)
- Batching: Items are chunked into batches of 50 for processing
- Results: Merged into a single JSON file per job
Result Example
Variant Sold JSON Click to expand
{
"cbOption": 0,
"cmtCount": 56,
"condition": 1,
"createTime": 1651126772,
"currency": "IDR",
"description": "Philips Sonicare Brush Head Opt Wht 4x Wht HX6064/67\n\nGigi lebih putih hingga 100% hanya dalam satu minggu*. \nKepala sikat W2 Optimal White sangat cocok untuk mereka yang ingin melakukan lebih dari sekadar pembersihan mendalam untuk menghilangkan noda di permukaan untuk senyum putih dan bercahaya. Kepala sikat ini juga bagus untuk menjaga kecerahan di antara perawatan pemutihan profesional. Bulu sikat berkualitas tinggi yang padat menghilangkan plak hingga 7x lebih banyak daripada sikat gigi manual.\n\nKepala sikat menjadi kurang efektif setelah 3 bulan penggunaan, tetapi dengan BrushSyncโข Anda akan diingatkan sebelum hal ini terjadi. Sikat gigi pintar Anda akan melacak seberapa sering dan seberapa keras Anda menyikat, dan akan memberi tahu Anda kapan saatnya untuk mengganti.\n\nKepala sikat W2 Optimal White Anda sangat cocok dengan gagang sikat gigi Philips Sonicare, kecuali Philips One dan Essence. Cukup klik on dan off untuk penggantian dan pembersihan yang mudah.\n\nKeunggulan:\n1. Gigi lebih putih dalam 7 hari\n2. Penyandingan mode BrushSyncโข \n3. Pemasangan mudah",
"flag": 917504,
"globalBrandId": 1146897,
"images": [
"id-11134207-7ra0s-mcvqfkodg4yg05",
"id-11134207-7ra0u-mcvqfkodhjiw79",
"id-11134207-7ra0h-mcvqfkodiy3cac",
"id-11134207-7ra0i-mcvqfkodkcns17",
"id-11134207-7ra0h-mcvqfkodlr88d6",
"id-11134207-7ra0m-mcvqfkodn5so0d",
"id-11134207-7ra0m-mcvqfkodokd43e"
],
"itemCardV2": {
"displayPrice": {
"currency": "IDR",
"discount": 0,
"discountPrice": "44862400000",
"discountText": {
"buyerTranslatedText": {
"source": "",
"translatedLanguage": "",
"translatedText": ""
},
"text": "-29%"
},
"displayFinalPriceIcon": true,
"priceMask": false
}
},
"itemId": "13490493252",
"likedCount": 47,
"localBrand": "",
"localCatIds": null,
"maxPriceDisplay": "52480000000",
"maxPriceDisplayBeforeDiscount": "63590000000",
"minPriceDisplay": "52480000000",
"minPriceDisplayBeforeDiscount": "63590000000",
"models": [
{
"createTime": 1651126772,
"currency": "IDR",
"modelId": "116455280153",
"name": "",
"normalPrice": "63590000000",
"price": "52480000000",
"priceInfo": {},
"priceRebate": null,
"priceRuleId": "907214374617088",
"sellerSku": "",
"sold": 237,
"status": 1,
"stock": 4,
"tierIndices": [
0
]
}
],
"mtime": 1775640991,
"name": "Philips | Brush Replacement | Kepala Sikat Gigi Optimal White | Gigi Lebih Putih dalam Satu Minggu | Putih | Isi 4 | HX6064/67",
"offerCount": 0,
"option": 0,
"priceBeforeDiscount": "63590000000",
"priceInfo": {
"maxFinalPrice": "44862400000",
"minFinalPrice": "44862400000"
},
"priceMax": "52480000000",
"priceMin": "52480000000",
"rating": {
"ratingCounts": [
0,
0,
0,
0,
1,
55
]
},
"region": "ID",
"sellerSku": "PSB3A35",
"shopId": "651735813",
"singlePriceDisplay": "52480000000",
"singlePriceDisplayBeforeDiscount": "63590000000",
"sizeChart": "",
"sold": 237,
"soldOutTime": "0",
"status": 1,
"tierVariations": [
{
"images": null,
"name": "",
"options": [
""
]
}
],
"totalStock": "4",
"touchTime": 1651126772,
"translatedItemName": null,
"videoInfo": null,
"wholesaleTierList": null
}
2. Shopee Product Page
Extended product details from Shopee product detail page. Single task per request. No Approval Required
Supported regions: ID ยท SG ยท TH ยท PH ยท MY ยท VN
๐ Endpoint
POST /v1/shopee/get_pc/submit
GET /v1/shopee/get_pc/retrieve/{task_id}
๐ฅ Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | Yes | Shopee product URL (e.g., https://shopee.co.id/product/{shop_id}/{item_id}) |
๐ป Code Examples
# Submit Task
curl -X POST "https://nest-api.magpieiq.com/v1/shopee/get_pc/submit" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"url": "https://shopee.co.id/product/34907167/40869177342"}'
# Retrieve Result (poll until status is "completed")
curl "https://nest-api.magpieiq.com/v1/shopee/get_pc/retrieve/{task_id}" \
-H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time
API_HOST = "https://nest-api.magpieiq.com"
headers = {"Authorization": "Bearer YOUR_API_TOKEN", "Content-Type": "application/json"}
# Submit
resp = requests.post(f"{API_HOST}/v1/shopee/get_pc/submit",
json={"url": "https://shopee.co.id/product/34907167/40869177342"}, headers=headers)
task_id = resp.json()["task_id"]
# Poll until ready
while True:
result = requests.get(f"{API_HOST}/v1/shopee/get_pc/retrieve/{task_id}", headers=headers).json()
if result.get("status") == "completed":
print(result["data"])
break
time.sleep(5)
โก Behavior
- Cost: 8 credits per request
- Approval: NOT required - immediate processing
- Processing: Single task processing
- Results: Full product detail page data including attributes, models, description
Result Example
Shopee Product Page JSON Click to expand
{
"bff_meta": null,
"error": null,
"error_msg": null,
"data": {
"item": {
"item_id": 40869177342,
"shop_id": 34907167,
"item_status": "normal",
"status": 1,
"item_type": 0,
"reference_item_id": "",
"title": "Apple iPhone 15 - Garansi Resmi",
"image": "id-11134207-82250-mkkn12wketc0d8",
"label_ids": [
1400066568,
47,
1000255,
1000544,
1000167,
1000559,
1000560,
2018619,
1000584,
1012729,
2018618,
2153644,
1428713,
1718087960,
844931064601283,
1119699,
1015914,
700190087,
1400285055,
2213652,
2008656,
700765096,
700005503,
1049134,
700005498,
1049130,
700005505,
1059150,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
2048660,
2048661,
1718093079,
1049131,
700005507,
700000530,
700005570,
1049126,
1059152,
700005489,
298938356,
299138386,
298463379,
1718088045,
298468389
],
"is_adult": false,
"is_preview": false,
"flag": 131072,
"is_service_by_shopee": false,
"condition": 1,
"cat_id": 100013,
"has_low_fulfillment_rate": false,
"is_live_streaming_price": null,
"currency": "IDR",
"brand": "Apple",
"brand_id": 1189223,
"show_discount": 0,
"ctime": 1758006715,
"item_rating": {
"rating_star": 4.916666666666667
},
"cb_option": 0,
"has_model_with_available_shopee_stock": false,
"shop_location": "KOTA MEDAN",
"attributes": [
{
"name": "Kapasitas Penyimpanan",
"value": "256GB",
"id": 100465,
"is_timestamp": false,
"brand_option": null,
"val_id": 5162,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Masa Garansi",
"value": "12 Bulan",
"id": 100121,
"is_timestamp": false,
"brand_option": null,
"val_id": 822,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Tipe Kabel Seluler",
"value": "Type C, i-phone, iphone",
"id": 100481,
"is_timestamp": false,
"brand_option": null,
"val_id": 2790,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Tipe Pengaman Layar",
"value": "Lainnya",
"id": 100503,
"is_timestamp": false,
"brand_option": null,
"val_id": 2839,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Tipe Case",
"value": "Lainnya",
"id": 100471,
"is_timestamp": false,
"brand_option": null,
"val_id": 2792,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Produk Custom",
"value": "Tidak",
"id": 101219,
"is_timestamp": false,
"brand_option": null,
"val_id": 7222,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Build-in Battery",
"value": "Ya",
"id": 100526,
"is_timestamp": false,
"brand_option": null,
"val_id": 2950,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "SIRIM Certified",
"value": "Yes",
"id": 101198,
"is_timestamp": false,
"brand_option": null,
"val_id": 7057,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Jenis Garansi",
"value": "Garansi Resmi",
"id": 100370,
"is_timestamp": false,
"brand_option": null,
"val_id": 0,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Kondisi",
"value": "baru",
"id": 100413,
"is_timestamp": false,
"brand_option": null,
"val_id": 0,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Model Handphone",
"value": "iphone 15",
"id": 100490,
"is_timestamp": false,
"brand_option": null,
"val_id": 0,
"url": null,
"brand_id": null,
"full_url": null,
"type": null,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "No.Sertifikat (POSTEL)",
"value": "-",
"id": 101255,
"is_timestamp": false,
"brand_option": null,
"val_id": null,
"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": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C โ semuanya dalam desain aluminium dan kaca berwarna yang tangguh. ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 10001,
"text": null,
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": 1
},
{
"type": 0,
"text": "Isi Kotak :",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "โข iPhone dengan iOS 17.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "โข Kabel USB-C ke USB-C.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "โข Buku Manual dan dokumentasi lain.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 10001,
"text": null,
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": 1
},
{
"type": 0,
"text": "Poin-poin fitur utama",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "DYNAMIC ISLAND HADIR DI IPHONE 15 โ Dynamic Island menampilkan gelembung pemberitahuan dan Aktivitas Langsung โ jadi Anda tidak melewatkannya saat melakukan hal lain. Anda dapat melihat siapa yang menelepon, memeriksa status penerbangan Anda, dan banyak lagi.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "DESAIN INOVATIF โ iPhone 15 dilengkapi dengan desain aluminium dan kaca berwarna yang tangguh. Tahan cipratan, air, dan debu.(1) Bagian depan Ceramic Shield lebih tangguh dibandingkan kaca ponsel pintar mana pun. Dan layar Super Retina XDR 6,1 (2) hingga 2x lebih terang di bawah sinar matahari dibandingkan iPhone 14.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "KAMERA UTAMA 48 MP DENGAN TELEFOTO 2X โ Kamera Utama 48 MP mengambil gambar dengan resolusi super tinggi. Jadi kini semakin mudah untuk mengambil foto yang memukau dengan detail menakjubkan. Telefoto berkualitas optik 2x memungkinkan Anda mengambil gambar close-up yang sempurna.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "GENERASI BARU MODE POTRET โ Ambil gambar dengan lebih banyak detail dan warna. Ketuk untuk mengalihkan fokus antara subjek โ bahkan setelah Anda mengambil gambar.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "CHIP A16 BIONIC SUPER BERTENAGA โ Chip super cepat mendukung beragam fitur canggih seperti fotografi komputasional, transisi Dynamic Island yang lancar, dan Isolasi Suara untuk panggilan telepon. Dan A16 Bionic sangat efisien dalam membantu menghadirkan kekuatan baterai sepanjang hari yang menakjubkan.(3)",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "KONEKTIVITAS USB-C โ Konektor USB-C memungkinkan Anda mengisi daya Mac atau iPad dengan kabel yang sama dengan yang Anda gunakan untuk mengisi daya iPhone 15. Anda bahkan dapat menggunakan iPhone 15 untuk mengisi daya Apple Watch atau AirPods.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "FITUR KESELAMATAN PENTING โ Dengan Deteksi Tabrakan, iPhone bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan saat Anda tak bisa.(4)",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "DIDESAIN UNTUK MEMBUAT PERUBAHAN โ iPhone dilengkapi dengan perlindungan privasi yang membantu Anda tetap memegang kendali atas data. Terbuat dari lebih banyak material daur ulang untuk meminimalkan dampak lingkungan. Dan memiliki fitur bawaan yang menjadikan iPhone lebih mudah diakses oleh semua orang.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 10001,
"text": null,
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": 1
},
{
"type": 0,
"text": "Legal",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "(1) iPhone 15, iPhone 15 Plus, iPhone 15 Pro, dan iPhone 15 Pro Max tahan cipratan, air, dan debu dan diuji dalam kondisi laboratorium terkontrol dengan level IP68 menurut standar IEC 60529 (kedalaman maksimum 6 meter hingga selama 30 menit). Ketahanan terhadap cipratan, air, dan debu tidak berlaku secara permanen. Daya tahan mungkin berkurang akibat penggunaan sehari-hari. Jangan coba mengisi daya iPhone yang basah; lihat panduan pengguna untuk instruksi pembersihan dan pengeringan. Kerusakan akibat cairan tidak ditanggung dalam garansi.ย ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "(2) Layar memiliki sudut melengkung. Jika diukur sebagai persegi standar, layarnya memiliki ukuran diagonal 6,12 inci (iPhone 15 Pro, iPhone 15) atau 6,69 inci (iPhone 15 Pro Max, iPhone 15 Plus). Area bidang layar berukuran lebih kecil.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "(3) Kekuatan baterai bervariasi tergantung penggunaan dan konfigurasi; lihat apple.com/batteries untuk informasi selengkapnya.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "(4) iPhone 15 dan iPhone 15 Pro bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan. Memerlukan panggilan Wi-Fi atau koneksi seluler.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 10001,
"text": null,
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": 1
},
{
"type": 0,
"text": "Cara klaim garansi:",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "1. Bawa UNIT, DUS, NOTA PEMBELIAN dan KARTU GARANSI ke Service Center terdekat di kota Anda.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "2. Jelaskan ke Customer Service keluhan anda (selama masih dalam masa garansi, tidak dikenakan biaya/gratis).",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "3. Garansi TIDAK BERLAKU apabila kerusakan karena human error (Contoh: Jatuh/Pecah, kena air, terbakar)",
"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": "MEMBELI = SETUJU",
"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": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C โ semuanya dalam desain aluminium dan kaca berwarna yang tangguh. \n\nIsi Kotak :\nโข iPhone dengan iOS 17.\nโข Kabel USB-C ke USB-C.\nโข Buku Manual dan dokumentasi lain.\n\nPoin-poin fitur utama\nDYNAMIC ISLAND HADIR DI IPHONE 15 โ Dynamic Island menampilkan gelembung pemberitahuan dan Aktivitas Langsung โ jadi Anda tidak melewatkannya saat melakukan hal lain. Anda dapat melihat siapa yang menelepon, memeriksa status penerbangan Anda, dan banyak lagi.\nDESAIN INOVATIF โ iPhone 15 dilengkapi dengan desain aluminium dan kaca berwarna yang tangguh. Tahan cipratan, air, dan debu.(1) Bagian depan Ceramic Shield lebih tangguh dibandingkan kaca ponsel pintar mana pun. Dan layar Super Retina XDR 6,1 (2) hingga 2x lebih terang di bawah sinar matahari dibandingkan iPhone 14.\nKAMERA UTAMA 48 MP DENGAN TELEFOTO 2X โ Kamera Utama 48 MP mengambil gambar dengan resolusi super tinggi. Jadi kini semakin mudah untuk mengambil foto yang memukau dengan detail menakjubkan. Telefoto berkualitas optik 2x memungkinkan Anda mengambil gambar close-up yang sempurna.\nGENERASI BARU MODE POTRET โ Ambil gambar dengan lebih banyak detail dan warna. Ketuk untuk mengalihkan fokus antara subjek โ bahkan setelah Anda mengambil gambar.\nCHIP A16 BIONIC SUPER BERTENAGA โ Chip super cepat mendukung beragam fitur canggih seperti fotografi komputasional, transisi Dynamic Island yang lancar, dan Isolasi Suara untuk panggilan telepon. Dan A16 Bionic sangat efisien dalam membantu menghadirkan kekuatan baterai sepanjang hari yang menakjubkan.(3)\nKONEKTIVITAS USB-C โ Konektor USB-C memungkinkan Anda mengisi daya Mac atau iPad dengan kabel yang sama dengan yang Anda gunakan untuk mengisi daya iPhone 15. Anda bahkan dapat menggunakan iPhone 15 untuk mengisi daya Apple Watch atau AirPods.\nFITUR KESELAMATAN PENTING โ Dengan Deteksi Tabrakan, iPhone bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan saat Anda tak bisa.(4)\nDIDESAIN UNTUK MEMBUAT PERUBAHAN โ iPhone dilengkapi dengan perlindungan privasi yang membantu Anda tetap memegang kendali atas data. Terbuat dari lebih banyak material daur ulang untuk meminimalkan dampak lingkungan. Dan memiliki fitur bawaan yang menjadikan iPhone lebih mudah diakses oleh semua orang.\n\nLegal\n(1) iPhone 15, iPhone 15 Plus, iPhone 15 Pro, dan iPhone 15 Pro Max tahan cipratan, air, dan debu dan diuji dalam kondisi laboratorium terkontrol dengan level IP68 menurut standar IEC 60529 (kedalaman maksimum 6 meter hingga selama 30 menit). Ketahanan terhadap cipratan, air, dan debu tidak berlaku secara permanen. Daya tahan mungkin berkurang akibat penggunaan sehari-hari. Jangan coba mengisi daya iPhone yang basah; lihat panduan pengguna untuk instruksi pembersihan dan pengeringan. Kerusakan akibat cairan tidak ditanggung dalam garansi.ย \n(2) Layar memiliki sudut melengkung. Jika diukur sebagai persegi standar, layarnya memiliki ukuran diagonal 6,12 inci (iPhone 15 Pro, iPhone 15) atau 6,69 inci (iPhone 15 Pro Max, iPhone 15 Plus). Area bidang layar berukuran lebih kecil.\n(3) Kekuatan baterai bervariasi tergantung penggunaan dan konfigurasi; lihat apple.com/batteries untuk informasi selengkapnya.\n(4) iPhone 15 dan iPhone 15 Pro bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan. Memerlukan panggilan Wi-Fi atau koneksi seluler.\n\nCara klaim garansi:\n1. Bawa UNIT, DUS, NOTA PEMBELIAN dan KARTU GARANSI ke Service Center terdekat di kota Anda.\n2. Jelaskan ke Customer Service keluhan anda (selama masih dalam masa garansi, tidak dikenakan biaya/gratis).\n3. Garansi TIDAK BERLAKU apabila kerusakan karena human error (Contoh: Jatuh/Pecah, kena air, terbakar)\n========================\nMEMBELI = SETUJU",
"categories": [
{
"catid": 100013,
"display_name": "Handphone \u0026 Aksesoris",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 100073,
"display_name": "Handphone",
"no_sub": true,
"is_default_subcat": false
}
],
"fe_categories": [
{
"catid": 11044458,
"display_name": "Handphone \u0026 Aksesoris",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 11044476,
"display_name": "Handphone",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 11044496,
"display_name": "Apple",
"no_sub": true,
"is_default_subcat": false
}
],
"item_has_video": true,
"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": 40869177342,
"status": 1,
"current_promotion_reserved_stock": null,
"name": "Blue,128GB",
"promotion_id": 0,
"price": 1327000000000,
"price_stocks": [
{
"allocated_stock": null,
"stock_breakdown_by_location": null,
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": null,
"extinfo": {
"tier_index": [
4,
0
],
"is_pre_order": false,
"estimated_days": 2
},
"price_before_discount": 0,
"model_id": 238282002834,
"stock": null,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": null,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 40869177342,
"status": 1,
"current_promotion_reserved_stock": null,
"name": "Pink,128GB",
"promotion_id": 0,
"price": 1327000000000,
"price_stocks": [
{
"allocated_stock": null,
"stock_breakdown_by_location": null,
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": null,
"extinfo": {
"tier_index": [
3,
0
],
"is_pre_order": false,
"estimated_days": 2
},
"price_before_discount": 0,
"model_id": 238282002832,
"stock": null,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": null,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 40869177342,
"status": 1,
"current_promotion_reserved_stock": null,
"name": "Green,256GB",
"promotion_id": 0,
"price": 1407900000000,
"price_stocks": [
{
"allocated_stock": null,
"stock_breakdown_by_location": null,
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": null,
"extinfo": {
"tier_index": [
1,
1
],
"is_pre_order": false,
"estimated_days": 2
},
"price_before_discount": 0,
"model_id": 375252464276,
"stock": null,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": null,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 40869177342,
"status": 1,
"current_promotion_reserved_stock": null,
"name": "Yellow,128GB",
"promotion_id": 0,
"price": 1151700000000,
"price_stocks": [
{
"allocated_stock": null,
"stock_breakdown_by_location": null,
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": null,
"extinfo": {
"tier_index": [
0,
0
],
"is_pre_order": false,
"estimated_days": 2
},
"price_before_discount": 0,
"model_id": 375252464273,
"stock": null,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": null,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 40869177342,
"status": 1,
"current_promotion_reserved_stock": null,
"name": "Black,256GB",
"promotion_id": 0,
"price": 1410300000000,
"price_stocks": [
{
"allocated_stock": null,
"stock_breakdown_by_location": null,
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": null,
"extinfo": {
"tier_index": [
2,
1
],
"is_pre_order": false,
"estimated_days": 2
},
"price_before_discount": 0,
"model_id": 435411719672,
"stock": null,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": null,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 40869177342,
"status": 1,
"current_promotion_reserved_stock": null,
"name": "Pink,256GB",
"promotion_id": 0,
"price": 1410300000000,
"price_stocks": [
{
"allocated_stock": null,
"stock_breakdown_by_location": null,
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": null,
"extinfo": {
"tier_index": [
3,
1
],
"is_pre_order": false,
"estimated_days": 2
},
"price_before_discount": 0,
"model_id": 238282002833,
"stock": null,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": null,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 40869177342,
"status": 1,
"current_promotion_reserved_stock": null,
"name": "Green,128GB",
"promotion_id": 0,
"price": 1151700000000,
"price_stocks": [
{
"allocated_stock": null,
"stock_breakdown_by_location": null,
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": null,
"extinfo": {
"tier_index": [
1,
0
],
"is_pre_order": false,
"estimated_days": 2
},
"price_before_discount": 0,
"model_id": 375252464275,
"stock": null,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": null,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 40869177342,
"status": 1,
"current_promotion_reserved_stock": null,
"name": "Blue,256GB",
"promotion_id": 0,
"price": 1410300000000,
"price_stocks": [
{
"allocated_stock": null,
"stock_breakdown_by_location": null,
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": null,
"extinfo": {
"tier_index": [
4,
1
],
"is_pre_order": false,
"estimated_days": 2
},
"price_before_discount": 0,
"model_id": 238282002835,
"stock": null,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": null,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
},
{
"item_id": 40869177342,
"status": 1,
"current_promotion_reserved_stock": null,
"name": "Black,128GB",
"promotion_id": 0,
"price": 1327000000000,
"price_stocks": [
{
"allocated_stock": null,
"stock_breakdown_by_location": null,
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": null,
"extinfo": {
"tier_index": [
2,
0
],
"is_pre_order": false,
"estimated_days": 2
},
"price_before_discount": 0,
"model_id": 435411719671,
"stock": null,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": null,
"is_lowest_price_at_shopee": true,
"name_tr": null,
"is_clickable": true,
"is_grayout": false,
"has_stock": true
},
{
"item_id": 40869177342,
"status": 1,
"current_promotion_reserved_stock": null,
"name": "Yellow,256GB",
"promotion_id": 0,
"price": 1432500000000,
"price_stocks": [
{
"allocated_stock": null,
"stock_breakdown_by_location": null,
"promotion_type": 0
}
],
"current_promotion_has_reserve_stock": false,
"normal_stock": null,
"extinfo": {
"tier_index": [
0,
1
],
"is_pre_order": false,
"estimated_days": 2
},
"price_before_discount": 0,
"model_id": 375252464274,
"stock": null,
"has_gimmick_tag": false,
"key_measurement": null,
"sold": null,
"is_lowest_price_at_shopee": false,
"name_tr": null,
"is_clickable": false,
"is_grayout": true,
"has_stock": false
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Yellow",
"Green",
"Black",
"Pink",
"Blue"
],
"images": [
"id-11134207-82250-mhvb7exbej9k54",
"id-11134207-8224o-mhvb7exbfxu000",
"id-11134207-82250-mj9evrbu2bcw1c",
"id-11134207-822wo-mnv6e6cv2q6e92",
"id-11134207-822wn-mnv6e6csp1j58e"
],
"properties": null,
"type": 0,
"summed_stocks": null,
"display_indicators": [
2,
2,
0,
0,
0
],
"name_tr": null,
"options_tr": null,
"selling_points": [
"",
"",
"",
"",
""
],
"selling_points_tr": null
},
{
"name": "Penyimpanan",
"options": [
"128GB",
"256GB"
],
"images": null,
"properties": null,
"type": 0,
"summed_stocks": null,
"display_indicators": [
0,
2
],
"name_tr": null,
"options_tr": null,
"selling_points": [
"",
""
],
"selling_points_tr": null
}
],
"size_chart": null,
"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": null,
"estimated_days": 2,
"is_pre_order": false,
"is_free_shipping": false,
"overall_purchase_limit": null,
"min_purchase_limit": 1,
"is_hide_stock": false,
"stock": null,
"normal_stock": null,
"current_promotion_reserved_stock": null,
"can_use_wholesale": false,
"wholesale_tier_list": [],
"price": 1327000000000,
"raw_discount": 0,
"hidden_price_display": null,
"price_min": 1327000000000,
"price_max": 1327000000000,
"price_before_discount": 1327000000000,
"price_min_before_discount": 1327000000000,
"price_max_before_discount": 1327000000000,
"other_stock": null,
"discount_stock": null,
"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": null,
"drug_details": null,
"selected_real_models": null,
"size_tier_variation_idx": null,
"is_fashion_item": false,
"social_proof_label": null,
"title_tr": null,
"description_tr": null,
"rich_text_description_tr": null,
"stock_display": "28",
"max_quantity_display": "Tersedia 28",
"disclaimer": null
},
"account": {
"user_id": 8534030442,
"is_new_user": true,
"default_address": {
"state": "DKI JAKARTA",
"city": "KOTA JAKARTA PUSAT",
"district": "MENTENG",
"town": "",
"zip_code": null,
"address": null,
"region": null,
"longitude": null,
"latitude": null,
"vn_data_version": ""
},
"adult_consent": 0,
"birth_timestamp": 0
},
"product_images": {
"video": {
"video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
"thumb_url": "id-11110105-6vdv4-mepeuiil53wg6e_cover",
"duration": 53,
"version": 2,
"vid": "id-11110105-6vdv4-mepeuiil53wg6e",
"formats": [
{
"format": 1600408,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4",
"width": 640,
"height": 360
},
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4",
"width": 960,
"height": 540
},
{
"format": 1600673,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4",
"width": 960,
"height": 540
},
{
"format": 1600409,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4",
"width": 960,
"height": 540
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
"width": 1280,
"height": 720
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4",
"width": 1280,
"height": 720
},
{
"format": 1600410,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4",
"width": 1280,
"height": 720
},
{
"format": 1600411,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.default.mp4",
"width": 960,
"height": 540
},
"mms_data": "{\"vid\":\"id-11110105-6vdv4-mepeuiil53wg6e\",\"biz\":107,\"duration\":52918,\"create_time\":1758005971,\"update_time\":1758005974,\"serviceID\":2,\"cover\":\"https://down-aka-sg.img.susercontent.com/id-11110105-6vdv4-mepeuiil53wg6e_cover\",\"formats\":[{\"format\":1600408,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4\",\"width\":640,\"height\":360,\"bitrate\":108363,\"abitrate\":32129,\"duration\":52918,\"size\":963458,\"fps\":25,\"update_time\":1777212324,\"codec\":\"H264\"},{\"format\":1600671,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4\",\"width\":960,\"height\":540,\"bitrate\":164363,\"abitrate\":32129,\"duration\":52918,\"size\":1334182,\"fps\":25,\"update_time\":1776587081,\"codec\":\"H264\"},{\"format\":1600673,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4\",\"width\":960,\"height\":540,\"bitrate\":279004,\"abitrate\":32129,\"duration\":52918,\"size\":2091963,\"fps\":25,\"update_time\":1776797773,\"codec\":\"H264\"},{\"format\":1600409,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4\",\"width\":960,\"height\":540,\"bitrate\":153593,\"abitrate\":32129,\"duration\":52918,\"size\":1262172,\"fps\":25,\"update_time\":1777212327,\"codec\":\"H264\"},{\"format\":1600008,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4\",\"width\":1280,\"height\":720,\"bitrate\":245989,\"abitrate\":128213,\"duration\":52918,\"size\":2519709,\"fps\":25,\"update_time\":1758006006,\"codec\":\"H264\"},{\"format\":1600325,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4\",\"width\":1280,\"height\":720,\"bitrate\":334286,\"abitrate\":48164,\"duration\":52918,\"size\":2563469,\"fps\":25,\"update_time\":1776587093,\"codec\":\"H264\"},{\"format\":1600410,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":325941,\"abitrate\":48164,\"duration\":52918,\"size\":2506604,\"fps\":25,\"update_time\":1777212353,\"codec\":\"H264\"},{\"format\":1600411,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":387755,\"abitrate\":48164,\"duration\":52918,\"size\":2914843,\"fps\":25.00047,\"update_time\":1777212338,\"codec\":\"H264\"}],\"extend_formats\":{\"H265\":[{\"format\":1600315,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003151776587040.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003151776587040.mp4\",\"width\":640,\"height\":360,\"bitrate\":119719,\"abitrate\":32129,\"duration\":52918,\"size\":1042815,\"fps\":25,\"update_time\":1776587067,\"codec\":\"H265\"},{\"format\":1600412,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004121777212306.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004121777212306.mp4\",\"width\":640,\"height\":360,\"bitrate\":71794,\"abitrate\":32129,\"duration\":52918,\"size\":725663,\"fps\":25,\"update_time\":1777212316,\"codec\":\"H265\"},{\"format\":1600316,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003161776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003161776587067.mp4\",\"width\":960,\"height\":540,\"bitrate\":201559,\"abitrate\":32129,\"duration\":52918,\"size\":1583768,\"fps\":25,\"update_time\":1776587092,\"codec\":\"H265\"},{\"format\":1600413,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004131777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004131777212317.mp4\",\"width\":960,\"height\":540,\"bitrate\":111665,\"abitrate\":32129,\"duration\":52918,\"size\":988987,\"fps\":25,\"update_time\":1777212337,\"codec\":\"H265\"},{\"format\":1600309,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003091758006006.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003091758006006.mp4\",\"width\":1280,\"height\":720,\"bitrate\":152291,\"abitrate\":128213,\"duration\":52918,\"size\":1904043,\"fps\":25,\"update_time\":1758006035,\"codec\":\"H265\"},{\"format\":1600317,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003171776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003171776587067.mp4\",\"width\":1280,\"height\":720,\"bitrate\":290039,\"abitrate\":48164,\"duration\":52918,\"size\":2274688,\"fps\":25,\"update_time\":1776587102,\"codec\":\"H265\"},{\"format\":1600318,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003181776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003181776587067.mp4\",\"width\":1280,\"height\":720,\"bitrate\":275456,\"abitrate\":48164,\"duration\":52918,\"size\":2178297,\"fps\":25,\"update_time\":1776587101,\"codec\":\"H265\"},{\"format\":1600415,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004151777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004151777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":206607,\"abitrate\":48164,\"duration\":52918,\"size\":1722147,\"fps\":25.00047,\"update_time\":1777212340,\"codec\":\"H265\"},{\"format\":1600414,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004141777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004141777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":190093,\"abitrate\":48164,\"duration\":52918,\"size\":1613067,\"fps\":25.00047,\"update_time\":1777212346,\"codec\":\"H265\"}]},\"default_format\":{\"format\":1600323,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"\",\"url\":\"https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.default.mp4\",\"width\":960,\"height\":540,\"bitrate\":210840,\"abitrate\":32210,\"duration\":52918,\"size\":1652259,\"fps\":25,\"update_time\":1758006017,\"codec\":\"H264\"}}",
"item_cover": null
},
"images": [
"id-11134207-82250-mkkn12wketc0d8",
"id-11134207-8224r-mhvb7ex33cas7d",
"id-11134207-8224r-mhvb7exb7ifc18",
"id-11134207-82251-mhvb7exb8wzs7c",
"id-11134207-8224u-mhvb7exbabk8bb",
"id-11134207-82250-mhbc73v1c1l47c"
],
"first_tier_variations": [
{
"name": "Yellow",
"image": "id-11134207-82250-mhvb7exbej9k54",
"summed_stock": null,
"display_indicator": 0,
"show_find_similar": null,
"name_tr": null,
"selling_point": "",
"selling_point_tr": null,
"gallery_image": "id-11134207-82250-mhvb7exbej9k54"
},
{
"name": "Green",
"image": "id-11134207-8224o-mhvb7exbfxu000",
"summed_stock": null,
"display_indicator": 0,
"show_find_similar": null,
"name_tr": null,
"selling_point": "",
"selling_point_tr": null,
"gallery_image": "id-11134207-8224o-mhvb7exbfxu000"
},
{
"name": "Black",
"image": "id-11134207-82250-mj9evrbu2bcw1c",
"summed_stock": null,
"display_indicator": 0,
"show_find_similar": null,
"name_tr": null,
"selling_point": "",
"selling_point_tr": null,
"gallery_image": "id-11134207-82250-mj9evrbu2bcw1c"
},
{
"name": "Pink",
"image": "id-11134207-822wo-mnv6e6cv2q6e92",
"summed_stock": null,
"display_indicator": 0,
"show_find_similar": null,
"name_tr": null,
"selling_point": "",
"selling_point_tr": null,
"gallery_image": "id-11134207-822wo-mnv6e6cv2q6e92"
},
{
"name": "Blue",
"image": "id-11134207-822wn-mnv6e6csp1j58e",
"summed_stock": null,
"display_indicator": 0,
"show_find_similar": null,
"name_tr": null,
"selling_point": "",
"selling_point_tr": null,
"gallery_image": "id-11134207-822wn-mnv6e6csp1j58e"
}
],
"sorted_variation_image_index_list": [
2,
3,
4,
0,
1
],
"overlay": null,
"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": false,
"show_find_similar": null,
"try_it_on": null,
"show_find_similar_for_selection": false,
"beautycam": null,
"unavailable_item_recommendation": null,
"models": [
{
"tier_index": [
4,
0
],
"gallery_image": "id-11134207-822wn-mnv6e6csp1j58e"
},
{
"tier_index": [
3,
0
],
"gallery_image": "id-11134207-822wo-mnv6e6cv2q6e92"
},
{
"tier_index": [
1,
1
],
"gallery_image": "id-11134207-8224o-mhvb7exbfxu000"
},
{
"tier_index": [
0,
0
],
"gallery_image": "id-11134207-82250-mhvb7exbej9k54"
},
{
"tier_index": [
2,
1
],
"gallery_image": "id-11134207-82250-mj9evrbu2bcw1c"
},
{
"tier_index": [
3,
1
],
"gallery_image": "id-11134207-822wo-mnv6e6cv2q6e92"
},
{
"tier_index": [
1,
0
],
"gallery_image": "id-11134207-8224o-mhvb7exbfxu000"
},
{
"tier_index": [
4,
1
],
"gallery_image": "id-11134207-822wn-mnv6e6csp1j58e"
},
{
"tier_index": [
2,
0
],
"gallery_image": "id-11134207-82250-mj9evrbu2bcw1c"
},
{
"tier_index": [
0,
1
],
"gallery_image": "id-11134207-82250-mhvb7exbej9k54"
}
],
"gallery_contents": [
{
"image": null,
"video": {
"video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
"thumb_url": "id-11110105-6vdv4-mepeuiil53wg6e_cover",
"duration": 53,
"version": 2,
"vid": "id-11110105-6vdv4-mepeuiil53wg6e",
"formats": [
{
"format": 1600408,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4",
"width": 640,
"height": 360
},
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4",
"width": 960,
"height": 540
},
{
"format": 1600673,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4",
"width": 960,
"height": 540
},
{
"format": 1600409,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4",
"width": 960,
"height": 540
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4",
"width": 1280,
"height": 720
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4",
"width": 1280,
"height": 720
},
{
"format": 1600410,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4",
"width": 1280,
"height": 720
},
{
"format": 1600411,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4",
"url": "https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.default.mp4",
"width": 960,
"height": 540
},
"mms_data": "{\"vid\":\"id-11110105-6vdv4-mepeuiil53wg6e\",\"biz\":107,\"duration\":52918,\"create_time\":1758005971,\"update_time\":1758005974,\"serviceID\":2,\"cover\":\"https://down-aka-sg.img.susercontent.com/id-11110105-6vdv4-mepeuiil53wg6e_cover\",\"formats\":[{\"format\":1600408,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004081777212317.mp4\",\"width\":640,\"height\":360,\"bitrate\":108363,\"abitrate\":32129,\"duration\":52918,\"size\":963458,\"fps\":25,\"update_time\":1777212324,\"codec\":\"H264\"},{\"format\":1600671,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006711776587068.mp4\",\"width\":960,\"height\":540,\"bitrate\":164363,\"abitrate\":32129,\"duration\":52918,\"size\":1334182,\"fps\":25,\"update_time\":1776587081,\"codec\":\"H264\"},{\"format\":1600673,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16006731776797764.mp4\",\"width\":960,\"height\":540,\"bitrate\":279004,\"abitrate\":32129,\"duration\":52918,\"size\":2091963,\"fps\":25,\"update_time\":1776797773,\"codec\":\"H264\"},{\"format\":1600409,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004091777212317.mp4\",\"width\":960,\"height\":540,\"bitrate\":153593,\"abitrate\":32129,\"duration\":52918,\"size\":1262172,\"fps\":25,\"update_time\":1777212327,\"codec\":\"H264\"},{\"format\":1600008,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16000081758005973.mp4\",\"width\":1280,\"height\":720,\"bitrate\":245989,\"abitrate\":128213,\"duration\":52918,\"size\":2519709,\"fps\":25,\"update_time\":1758006006,\"codec\":\"H264\"},{\"format\":1600325,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003251776587068.mp4\",\"width\":1280,\"height\":720,\"bitrate\":334286,\"abitrate\":48164,\"duration\":52918,\"size\":2563469,\"fps\":25,\"update_time\":1776587093,\"codec\":\"H264\"},{\"format\":1600410,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004101777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":325941,\"abitrate\":48164,\"duration\":52918,\"size\":2506604,\"fps\":25,\"update_time\":1777212353,\"codec\":\"H264\"},{\"format\":1600411,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004111777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":387755,\"abitrate\":48164,\"duration\":52918,\"size\":2914843,\"fps\":25.00047,\"update_time\":1777212338,\"codec\":\"H264\"}],\"extend_formats\":{\"H265\":[{\"format\":1600315,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003151776587040.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003151776587040.mp4\",\"width\":640,\"height\":360,\"bitrate\":119719,\"abitrate\":32129,\"duration\":52918,\"size\":1042815,\"fps\":25,\"update_time\":1776587067,\"codec\":\"H265\"},{\"format\":1600412,\"defn\":\"V360P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004121777212306.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004121777212306.mp4\",\"width\":640,\"height\":360,\"bitrate\":71794,\"abitrate\":32129,\"duration\":52918,\"size\":725663,\"fps\":25,\"update_time\":1777212316,\"codec\":\"H265\"},{\"format\":1600316,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003161776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003161776587067.mp4\",\"width\":960,\"height\":540,\"bitrate\":201559,\"abitrate\":32129,\"duration\":52918,\"size\":1583768,\"fps\":25,\"update_time\":1776587092,\"codec\":\"H265\"},{\"format\":1600413,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004131777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004131777212317.mp4\",\"width\":960,\"height\":540,\"bitrate\":111665,\"abitrate\":32129,\"duration\":52918,\"size\":988987,\"fps\":25,\"update_time\":1777212337,\"codec\":\"H265\"},{\"format\":1600309,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003091758006006.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003091758006006.mp4\",\"width\":1280,\"height\":720,\"bitrate\":152291,\"abitrate\":128213,\"duration\":52918,\"size\":1904043,\"fps\":25,\"update_time\":1758006035,\"codec\":\"H265\"},{\"format\":1600317,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003171776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003171776587067.mp4\",\"width\":1280,\"height\":720,\"bitrate\":290039,\"abitrate\":48164,\"duration\":52918,\"size\":2274688,\"fps\":25,\"update_time\":1776587102,\"codec\":\"H265\"},{\"format\":1600318,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003181776587067.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16003181776587067.mp4\",\"width\":1280,\"height\":720,\"bitrate\":275456,\"abitrate\":48164,\"duration\":52918,\"size\":2178297,\"fps\":25,\"update_time\":1776587101,\"codec\":\"H265\"},{\"format\":1600415,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004151777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004151777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":206607,\"abitrate\":48164,\"duration\":52918,\"size\":1722147,\"fps\":25.00047,\"update_time\":1777212340,\"codec\":\"H265\"},{\"format\":1600414,\"defn\":\"V720P\",\"profile\":\"MP4\",\"path\":\"api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004141777212317.mp4\",\"url\":\"https://down-aka-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.16004141777212317.mp4\",\"width\":1280,\"height\":720,\"bitrate\":190093,\"abitrate\":48164,\"duration\":52918,\"size\":1613067,\"fps\":25.00047,\"update_time\":1777212346,\"codec\":\"H265\"}]},\"default_format\":{\"format\":1600323,\"defn\":\"V540P\",\"profile\":\"MP4\",\"path\":\"\",\"url\":\"https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mepeuiil53wg6e.default.mp4\",\"width\":960,\"height\":540,\"bitrate\":210840,\"abitrate\":32210,\"duration\":52918,\"size\":1652259,\"fps\":25,\"update_time\":1758006017,\"codec\":\"H264\"}}",
"item_cover": null
}
},
{
"image": {
"url": "id-11134207-82250-mkkn12wketc0d8",
"promotion_image_type": null,
"label_content": null,
"cmt_id": null
},
"video": null
},
{
"image": {
"url": "id-11134207-8224r-mhvb7ex33cas7d",
"promotion_image_type": null,
"label_content": null,
"cmt_id": null
},
"video": null
},
{
"image": {
"url": "id-11134207-8224r-mhvb7exb7ifc18",
"promotion_image_type": null,
"label_content": null,
"cmt_id": null
},
"video": null
},
{
"image": {
"url": "id-11134207-82251-mhvb7exb8wzs7c",
"promotion_image_type": null,
"label_content": null,
"cmt_id": null
},
"video": null
},
{
"image": {
"url": "id-11134207-8224u-mhvb7exbabk8bb",
"promotion_image_type": null,
"label_content": null,
"cmt_id": null
},
"video": null
},
{
"image": {
"url": "id-11134207-82250-mhbc73v1c1l47c",
"promotion_image_type": null,
"label_content": null,
"cmt_id": null
},
"video": null
}
]
},
"product_price": {
"discount": null,
"installment_info": {
"recommended_plan": {
"months": 24,
"pay_per_month": 55291666000,
"has_buyer_transaction_fee": true
}
},
"spl_installment_info": null,
"pack_size": "",
"hide_price": false,
"price": {
"single_value": 1327000000000,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"price_before_discount": null,
"presale_price": null,
"lowest_past_price": null,
"labels": [
{
"type": 0,
"text": "Bebas Pengembalian",
"color": "#26AA99",
"display": "free_return",
"exclusive_price": null,
"promotion_id": null,
"voucher_ext_info": null
}
],
"hide_discount": false,
"discount_text": null,
"show_final_price_indicator": null,
"final_price_vouchers": null,
"has_final_price": true,
"final_price_info": null,
"price_subtext": null,
"price_model": {
"price_single_model_id": 238282002834,
"price_min_model_id": null,
"price_max_model_id": null
},
"price_promotion": {
"price_single_promotion_id": 0,
"price_single_promotion_type": 0,
"price_min_promotion_id": null,
"price_min_promotion_type": null,
"price_max_promotion_id": null,
"price_max_promotion_type": null
}
},
"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.916666666666667,
"rating_count": [
24,
0,
0,
1,
0,
23
],
"total_rating_count": 24,
"historical_sold": null,
"global_sold": null,
"liked": false,
"liked_count": 160,
"cmt_count": 24,
"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": "42",
"global_sold_display": "42",
"sold_count_display": "42"
},
"promotion_info": {
"spl": null,
"spl_lite": null,
"installment": {
"month": 24,
"price_raw": 55291666000,
"interest": 0,
"has_buyer_transaction_fee": true,
"display_text": "24x {{price}} (Bunga 0%)"
},
"wholesale": null,
"insurance": null,
"item_installment_eligibility": {
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true
}
},
"age_gate": {
"kyc": null
},
"shipping_meta": null,
"product_shipping": {
"free_shipping": null,
"shipping_fee_info": {
"ship_from_location": "KOTA MEDAN",
"price": {
"single_value": 5200000000,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"shipping_icon_type": 0,
"warning": null
},
"show_shipping_to": true,
"ungrouped_channel_infos": [
{
"channel_id": 8002,
"name": "Next Day",
"price": {
"single_value": 5200000000,
"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": 1778211973,
"estimated_delivery_date_to": 1778211973,
"estimated_delivery_time_min": 1,
"estimated_delivery_time_max": 1,
"delay_message": null,
"is_fastest_edt_channel": true,
"sla_message": "Pemesanan sebelum pk. 12:00 akan dikirim besok (kecuali hari libur nasional). \n\nPemesanan setelah pk. 12:00 akan dikirim lusa (kecuali hari libur nasional).",
"show_edt": true,
"edt_text": "Garansi tiba besok",
"formatted_edt_text": [
{
"template": "{label_guaranteed_get_by+}{label_fast_edt_tomorrow}",
"format": null,
"attributes": [
{
"type": 1,
"key": "label_guaranteed_get_by+",
"value": {
"value_str": "Garansi tiba ",
"value_int": null
},
"format": null,
"text_color": null,
"text_hex_color": "#000000de",
"url": null
},
{
"type": 1,
"key": "label_fast_edt_tomorrow",
"value": {
"value_str": "Besok",
"value_int": null
},
"format": [
3
],
"text_color": null,
"text_hex_color": "#ffffff",
"url": null
}
],
"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": "next_day",
"is_integrated_channel": true,
"late_delivery_compensation": {
"type": 1,
"amount": 1000000000,
"is_guaranteed_edt": true,
"compensation_amount": null,
"text": null
},
"is_sst_included": false,
"display_text": {
"late_delivery_compensation": null,
"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\":1,\"edt_min_hours\":24,\"edt_max_hours\":24,\"edt_display_identifier\":263433,\"buyer_address_hash\":\"6RslI4\",\"is_cache_edt\":false}"
},
{
"channel_id": 8003,
"name": "Reguler",
"price": {
"single_value": 0,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"price_before_discount": null,
"channel_delivery_info": {
"has_edt": false,
"display_mode": null,
"estimated_delivery_date_from": null,
"estimated_delivery_date_to": null,
"estimated_delivery_time_min": null,
"estimated_delivery_time_max": null,
"delay_message": null,
"is_fastest_edt_channel": false,
"sla_message": "",
"show_edt": null,
"edt_text": null,
"formatted_edt_text": null,
"formatted_pre_order_text": null,
"formatted_fbs_description_text": null,
"show_edt_as_header": false
},
"channel_promotion_infos": null,
"warning": {
"type": "address_no_long_lat",
"warning_msg": "Mohon atur lokasi peta"
},
"shipping_icon_type": null,
"lowest_bpsf_promotion_rule": null,
"service_type_info": "regular",
"is_integrated_channel": true,
"late_delivery_compensation": null,
"is_sst_included": false,
"display_text": {
"late_delivery_compensation": null,
"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": null
},
{
"channel_id": 8005,
"name": "Hemat Kargo",
"price": {
"single_value": 0,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"price_before_discount": null,
"channel_delivery_info": {
"has_edt": false,
"display_mode": null,
"estimated_delivery_date_from": null,
"estimated_delivery_date_to": null,
"estimated_delivery_time_min": null,
"estimated_delivery_time_max": null,
"delay_message": null,
"is_fastest_edt_channel": false,
"sla_message": "",
"show_edt": null,
"edt_text": null,
"formatted_edt_text": null,
"formatted_pre_order_text": null,
"formatted_fbs_description_text": null,
"show_edt_as_header": false
},
"channel_promotion_infos": null,
"warning": {
"type": "address_no_long_lat",
"warning_msg": "Mohon atur lokasi peta"
},
"shipping_icon_type": null,
"lowest_bpsf_promotion_rule": null,
"service_type_info": "regular",
"is_integrated_channel": true,
"late_delivery_compensation": null,
"is_sst_included": false,
"display_text": {
"late_delivery_compensation": null,
"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": null
},
{
"channel_id": 8007,
"name": "Instant",
"price": {
"single_value": 0,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"price_before_discount": null,
"channel_delivery_info": {
"has_edt": false,
"display_mode": null,
"estimated_delivery_date_from": null,
"estimated_delivery_date_to": null,
"estimated_delivery_time_min": null,
"estimated_delivery_time_max": null,
"delay_message": null,
"is_fastest_edt_channel": false,
"sla_message": "",
"show_edt": null,
"edt_text": null,
"formatted_edt_text": null,
"formatted_pre_order_text": null,
"formatted_fbs_description_text": null,
"show_edt_as_header": false
},
"channel_promotion_infos": null,
"warning": {
"type": "address_no_long_lat",
"warning_msg": "Mohon atur lokasi peta"
},
"shipping_icon_type": null,
"lowest_bpsf_promotion_rule": null,
"service_type_info": "instant",
"is_integrated_channel": true,
"late_delivery_compensation": null,
"is_sst_included": false,
"display_text": {
"late_delivery_compensation": null,
"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": null
},
{
"channel_id": 8008,
"name": "Instant Prioritas",
"price": {
"single_value": 0,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"price_before_discount": null,
"channel_delivery_info": {
"has_edt": false,
"display_mode": null,
"estimated_delivery_date_from": null,
"estimated_delivery_date_to": null,
"estimated_delivery_time_min": null,
"estimated_delivery_time_max": null,
"delay_message": null,
"is_fastest_edt_channel": false,
"sla_message": "",
"show_edt": null,
"edt_text": null,
"formatted_edt_text": null,
"formatted_pre_order_text": null,
"formatted_fbs_description_text": null,
"show_edt_as_header": false
},
"channel_promotion_infos": null,
"warning": {
"type": "address_no_long_lat",
"warning_msg": "Mohon atur lokasi peta"
},
"shipping_icon_type": null,
"lowest_bpsf_promotion_rule": null,
"service_type_info": "instant",
"is_integrated_channel": true,
"late_delivery_compensation": null,
"is_sst_included": false,
"display_text": {
"late_delivery_compensation": null,
"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": null
}
],
"grouped_channel_infos_by_service_type": [],
"also_available_channel_name": "",
"pre_selected_shipping_channel": {
"channel_id": 8002,
"name": "Next Day",
"price": {
"single_value": 5200000000,
"range_min": -1,
"range_max": -1,
"price_mask": ""
},
"price_before_discount": null,
"channel_delivery_info": {
"has_edt": true,
"display_mode": "edt_by_date",
"estimated_delivery_date_from": 1778211973,
"estimated_delivery_date_to": 1778211973,
"estimated_delivery_time_min": 1,
"estimated_delivery_time_max": 1,
"delay_message": "",
"is_fastest_edt_channel": true,
"sla_message": "Pemesanan sebelum pk. 12:00 akan dikirim besok (kecuali hari libur nasional). \n\nPemesanan setelah pk. 12:00 akan dikirim lusa (kecuali hari libur nasional).",
"show_edt": true,
"edt_text": "Garansi tiba besok",
"formatted_edt_text": [
{
"template": "{label_guaranteed_get_by+}{label_fast_edt_tomorrow}",
"format": [],
"attributes": [
{
"type": 1,
"key": "label_guaranteed_get_by+",
"value": {
"value_str": "Garansi tiba ",
"value_int": null
},
"format": [],
"text_color": null,
"text_hex_color": "#000000de",
"url": null
},
{
"type": 1,
"key": "label_fast_edt_tomorrow",
"value": {
"value_str": "Besok",
"value_int": null
},
"format": [
3
],
"text_color": null,
"text_hex_color": "#ffffff",
"url": null
}
],
"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": "next_day",
"is_integrated_channel": true,
"late_delivery_compensation": {
"type": 1,
"amount": 1000000000,
"is_guaranteed_edt": true,
"compensation_amount": {
"value": 1000000000
},
"text": ""
},
"is_sst_included": false,
"display_text": {
"late_delivery_compensation": {
"text": "Dapatkan Voucher s/d {compensation_amount} jika pesanan terlambat.",
"gdt_max": null,
"compensation_amount": {
"value": 1000000000
}
},
"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": 0,
"hide_shipping_fee": null,
"edt_tracking_info": "{\"edt_min\":1,\"edt_max\":1,\"edt_min_hours\":24,\"edt_max_hours\":24,\"edt_display_identifier\":263173,\"buyer_address_hash\":\"6RslI4\",\"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": {
"type": 1,
"amount": null,
"is_guaranteed_edt": true,
"compensation_amount": {
"value": 1000000000
},
"text": "Dapatkan Voucher s/d {compensation_amount} jika pesanan terlambat."
},
"shipping_info_text": {
"text_template": null,
"shipping_fee": null,
"edt_from": null,
"edt_to": null,
"show_shipping_fee_suffix": false,
"formatted_text": {
"edt": {
"template": "{label_guaranteed_get_by++label_fast_edt_tomorrow}",
"format": null,
"attributes": [
{
"type": 1,
"key": "label_guaranteed_get_by++label_fast_edt_tomorrow",
"value": {
"value_str": "Garansi tiba Besok",
"value_int": null
},
"format": [
6
],
"text_color": null,
"text_hex_color": "#000000de",
"url": null
}
],
"text_color": null,
"text_hex_color": null
},
"shipping_fee": null,
"late_delivery_compensation": {
"template": "Dapatkan Voucher s/d {compensation_amount} jika pesanan terlambat.",
"format": null,
"attributes": [
{
"type": 2,
"key": "compensation_amount",
"value": {
"value_str": null,
"value_int": 1000000000
},
"format": null,
"text_color": null,
"text_hex_color": null,
"url": null
}
],
"text_color": null,
"text_hex_color": null
},
"fbs_description": null,
"display_edt_text_first_line": true,
"should_wrap_edt_text_by_attribute": false
},
"highlight_free_shipping": false
},
"formatted_pre_order_text": null,
"has_free_return": null,
"model_id": 238282002832,
"delivery_address": {
"state": "DKI JAKARTA",
"city": "KOTA JAKARTA PUSAT",
"district": "MENTENG",
"town": null,
"zip_code": null,
"address": null,
"region": null,
"longitude": null,
"latitude": null,
"vn_data_version": null
}
},
"shop_vouchers": [],
"free_return": null,
"coin_info": {
"spend_cash_unit": 100000,
"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_label": null
},
"product_attributes": {
"attrs": [
{
"name": "Stok",
"value": "28",
"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": "Merek",
"value": "Apple",
"id": null,
"is_timestamp": null,
"brand_option": null,
"val_id": null,
"url": "/search?brands=1189223",
"brand_id": 1189223,
"full_url": "https://shopee.co.id/search?brands=1189223",
"type": 1,
"item_attribute_type": null,
"name_tr": null,
"value_tr": null
},
{
"name": "Kapasitas Penyimpanan",
"value": "256GB",
"id": 100465,
"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": "Masa Garansi",
"value": "12 Bulan",
"id": 100121,
"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": "Tipe Kabel Seluler",
"value": "Type C, i-phone, iphone",
"id": 100481,
"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": "Tipe Pengaman Layar",
"value": "Lainnya",
"id": 100503,
"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": "Tipe Case",
"value": "Lainnya",
"id": 100471,
"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": "Produk Custom",
"value": "Tidak",
"id": 101219,
"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": "Build-in Battery",
"value": "Ya",
"id": 100526,
"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": "SIRIM Certified",
"value": "Yes",
"id": 101198,
"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": "Jenis Garansi",
"value": "Garansi Resmi",
"id": 100370,
"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": "Kondisi",
"value": "baru",
"id": 100413,
"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": "Model Handphone",
"value": "iphone 15",
"id": 100490,
"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": "No.Sertifikat (POSTEL)",
"value": "-",
"id": 101255,
"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": "Dikirim Dari",
"value": "KOTA MEDAN",
"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": 11044458,
"display_name": "Handphone \u0026 Aksesoris",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 11044476,
"display_name": "Handphone",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 11044496,
"display_name": "Apple",
"no_sub": true,
"is_default_subcat": false
}
],
"related_items": []
},
"shop_detailed": {
"shopid": 34907167,
"userid": 34908551,
"last_active_time": 1778125477,
"vacation": false,
"place": null,
"account": {
"portrait": "id-11134216-7rask-m5dxlm5n2g7sef",
"username": "doranwearablemanado",
"status": 1
},
"is_shopee_verified": false,
"is_preferred_plus_seller": false,
"is_official_shop": true,
"shop_location": null,
"item_count": 1264,
"rating_star": 4.851093,
"response_rate": 100,
"session_info": null,
"name": "Doran Wearable Manado",
"ctime": 1505465623,
"response_time": 3039,
"follower_count": 6821,
"show_official_shop_label": true,
"rating_bad": 150,
"rating_good": 27672,
"rating_normal": 482,
"session_infos": null,
"status": 1,
"is_individual_seller": null,
"is_mart": false,
"favorite_shop_info": null,
"is_3pf": false,
"sold_total": null,
"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,
"is_chatroom_online": true,
"outlet_shop": null,
"vacation_status": null,
"display_shopee_choice_tick": 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,
"shift_featured_videos_above_review_ratings_section": null,
"enable_fashion_featured_videos_improvements": null,
"hide_shipping_channel_promotion_text": 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": null,
"ineligible_user_platform_exclusive_sku": null
},
"installment_drawer": {
"priority": [
0,
1
],
"spl": null,
"bank": {
"channels": [
{
"channel_ic": "ic_paymentoption_ccinstallment",
"channel_name": "label_nicepay_cc_installment",
"is_cc": true,
"plans": null,
"banks": [
{
"bank_id": 833,
"bank_name": "DBS",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_dbs_digibank_id.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-200",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-201",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-202",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "18x @ 0.00%",
"channel_id": 8000501,
"tenure": 18,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 73722222000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-203",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "24x @ 0.00%",
"channel_id": 8000501,
"tenure": 24,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 55291666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-204",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 858,
"bank_name": "Danamon",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_danamon_bank.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-205",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-206",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-207",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 1499,
"bank_name": "CIMB",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_CIMB.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-260",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-261",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-262",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "24x @ 0.00%",
"channel_id": 8000501,
"tenure": 24,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 55291666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-264",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 1577,
"bank_name": "Bukopin",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_BUKOPIN.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-280",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-281",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-282",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 2200,
"bank_name": "Mandiri",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_mandiri.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-215",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-216",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-217",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "18x @ 0.00%",
"channel_id": 8000501,
"tenure": 18,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 73722222000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-218",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "24x @ 0.50%",
"channel_id": 8000501,
"tenure": 24,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 55291666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-219",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 2505,
"bank_name": "Permata",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_permata.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-220",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-221",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-222",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "18x @ 0.00%",
"channel_id": 8000501,
"tenure": 18,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 73722222000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-223",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "24x @ 0.00%",
"channel_id": 8000501,
"tenure": 24,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 55291666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-224",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 3632,
"bank_name": "BNI",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_negara.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-255",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-256",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-257",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "18x @ 0.00%",
"channel_id": 8000501,
"tenure": 18,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 73722222000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-258",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "24x @ 0.00%",
"channel_id": 8000501,
"tenure": 24,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 55291666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-259",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 4495,
"bank_name": "HSBC",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_hsbc.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-225",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-226",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-227",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "18x @ 0.00%",
"channel_id": 8000501,
"tenure": 18,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 73722222000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-228",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "24x @ 0.00%",
"channel_id": 8000501,
"tenure": 24,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 55291666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-229",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 4882,
"bank_name": "Bank Mega",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_mega_bank.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-235",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-236",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 5011,
"bank_name": "BRI",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_BRI.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-240",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-241",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-242",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 5236,
"bank_name": "BCA",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_bca.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-290",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-291",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-292",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 6391,
"bank_name": "UOB",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_UOB.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-245",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-246",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-247",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 7447,
"bank_name": "OCBC NISP",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_OCBC_NISP.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-275",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-276",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-277",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "18x @ 0.00%",
"channel_id": 8000501,
"tenure": 18,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 73722222000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-278",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "24x @ 0.00%",
"channel_id": 8000501,
"tenure": 24,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 55291666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-279",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 13339,
"bank_name": "Panin",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_panin_bank.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-285",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-286",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-287",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 13863,
"bank_name": "MNC",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_MNC.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-270",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-271",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-272",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 13865,
"bank_name": "Maybank",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_maybank.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-250",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-251",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-252",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "24x @ 0.00%",
"channel_id": 8000501,
"tenure": 24,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 55291666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-254",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 13895,
"bank_name": "BTN",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_BTN.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-265",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-266",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-267",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 13897,
"bank_name": "Sinarmas",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_sinarmas.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-300",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-301",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 13916,
"bank_name": "Mayapada",
"bank_logo": "https://mall.shopee.co.id/static/images/bank_logo/ID/box_icon/ic_bank_mayapada.png",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-295",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-296",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-297",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
},
{
"bank_id": 102979,
"bank_name": "PT BANK SMBC INDONESIA TBK",
"bank_logo": "",
"sub_options": [
{
"data": {
"name": "3x @ 0.00%",
"channel_id": 8000501,
"tenure": 3,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 442333333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-410",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "6x @ 0.00%",
"channel_id": 8000501,
"tenure": 6,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 221166666000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-411",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
},
{
"data": {
"name": "12x @ 0.00%",
"channel_id": 8000501,
"tenure": 12,
"total_amount": 1327000000000,
"down_payment": null,
"interest_rate": 0,
"installment_amount": null,
"monthly_installment": 110583333000,
"bank_id": null,
"bank_name": null,
"has_buyer_transaction_fee": true
},
"name": null,
"option_info": "8002000-412",
"disabled_reason_key": null,
"disabled_reason": null,
"disabled_reason_data": null,
"sub_title": "Cicilan Murah 0%"
}
]
}
],
"plan_groups": null
}
]
},
"credit_card": null
},
"ongoing_banner": null,
"teaser_banner": null,
"price_breakdown": null,
"membership_exclusive": null,
"membership_exclusive_teaser": null,
"service_entrance": {
"services": [
{
"text": "15 Hari Pengembalian",
"type": null,
"id": 30
},
{
"text": "100% Original",
"type": null,
"id": 23
},
{
"text": "Proteksi Gadget",
"type": null,
"id": 25
}
]
},
"service_drawer": {
"services": [
{
"title": "15 Hari Pengembalian",
"description": "Untuk memastikan kepuasanmu, Shopee Mall memberikan periode pengembalian yang lebih panjang (15 hari setelah barang diterima).",
"type": null,
"free_return": null,
"insurance": null,
"id": 30,
"redirection_url": "https://shopee.co.id/m/bebas-pengembalian",
"icon": "id-11134258-7rasd-m3bt5w8dhhjxdf",
"insurance_drawer": null,
"product_type": 0
},
{
"title": "100% Original",
"description": "Produk ini dijamin 100% asli dan akan dikirimkan secara langsung. Jika produk yang diterima tidak asli, kamu dapat mengajukan Pengembalian Dana.",
"type": null,
"free_return": null,
"insurance": null,
"id": 23,
"redirection_url": "https://shopee.co.id/m/shopee-garansi-ori",
"icon": "id-11134258-7ras8-m3bt6aa6vxsk65",
"insurance_drawer": null,
"product_type": 0
},
{
"title": "Proteksi Gadget",
"description": "Melindungi gadgetmu dari kerusakan akibat cairan atau tidak disengaja hingga 12 bulan",
"type": null,
"free_return": null,
"insurance": null,
"id": 25,
"redirection_url": "https://insurance.shopee.co.id/ec/ec-pdp.html?from=pdp\u0026locale=ID\u0026product_id=1507653218475573533",
"icon": "id-11134258-7rasa-m3bt6nx0z2dw71",
"insurance_drawer": {},
"product_type": 0
}
]
},
"trade_in": null,
"product_description": {
"paragraph_list": [
{
"type": 0,
"text": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C โ semuanya dalam desain aluminium dan kaca berwarna yang tangguh. ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 10001,
"text": null,
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": 1
},
{
"type": 0,
"text": "Isi Kotak :",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "โข iPhone dengan iOS 17.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "โข Kabel USB-C ke USB-C.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "โข Buku Manual dan dokumentasi lain.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 10001,
"text": null,
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": 1
},
{
"type": 0,
"text": "Poin-poin fitur utama",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "DYNAMIC ISLAND HADIR DI IPHONE 15 โ Dynamic Island menampilkan gelembung pemberitahuan dan Aktivitas Langsung โ jadi Anda tidak melewatkannya saat melakukan hal lain. Anda dapat melihat siapa yang menelepon, memeriksa status penerbangan Anda, dan banyak lagi.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "DESAIN INOVATIF โ iPhone 15 dilengkapi dengan desain aluminium dan kaca berwarna yang tangguh. Tahan cipratan, air, dan debu.(1) Bagian depan Ceramic Shield lebih tangguh dibandingkan kaca ponsel pintar mana pun. Dan layar Super Retina XDR 6,1 (2) hingga 2x lebih terang di bawah sinar matahari dibandingkan iPhone 14.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "KAMERA UTAMA 48 MP DENGAN TELEFOTO 2X โ Kamera Utama 48 MP mengambil gambar dengan resolusi super tinggi. Jadi kini semakin mudah untuk mengambil foto yang memukau dengan detail menakjubkan. Telefoto berkualitas optik 2x memungkinkan Anda mengambil gambar close-up yang sempurna.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "GENERASI BARU MODE POTRET โ Ambil gambar dengan lebih banyak detail dan warna. Ketuk untuk mengalihkan fokus antara subjek โ bahkan setelah Anda mengambil gambar.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "CHIP A16 BIONIC SUPER BERTENAGA โ Chip super cepat mendukung beragam fitur canggih seperti fotografi komputasional, transisi Dynamic Island yang lancar, dan Isolasi Suara untuk panggilan telepon. Dan A16 Bionic sangat efisien dalam membantu menghadirkan kekuatan baterai sepanjang hari yang menakjubkan.(3)",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "KONEKTIVITAS USB-C โ Konektor USB-C memungkinkan Anda mengisi daya Mac atau iPad dengan kabel yang sama dengan yang Anda gunakan untuk mengisi daya iPhone 15. Anda bahkan dapat menggunakan iPhone 15 untuk mengisi daya Apple Watch atau AirPods.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "FITUR KESELAMATAN PENTING โ Dengan Deteksi Tabrakan, iPhone bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan saat Anda tak bisa.(4)",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "DIDESAIN UNTUK MEMBUAT PERUBAHAN โ iPhone dilengkapi dengan perlindungan privasi yang membantu Anda tetap memegang kendali atas data. Terbuat dari lebih banyak material daur ulang untuk meminimalkan dampak lingkungan. Dan memiliki fitur bawaan yang menjadikan iPhone lebih mudah diakses oleh semua orang.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 10001,
"text": null,
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": 1
},
{
"type": 0,
"text": "Legal",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "(1) iPhone 15, iPhone 15 Plus, iPhone 15 Pro, dan iPhone 15 Pro Max tahan cipratan, air, dan debu dan diuji dalam kondisi laboratorium terkontrol dengan level IP68 menurut standar IEC 60529 (kedalaman maksimum 6 meter hingga selama 30 menit). Ketahanan terhadap cipratan, air, dan debu tidak berlaku secara permanen. Daya tahan mungkin berkurang akibat penggunaan sehari-hari. Jangan coba mengisi daya iPhone yang basah; lihat panduan pengguna untuk instruksi pembersihan dan pengeringan. Kerusakan akibat cairan tidak ditanggung dalam garansi.ย ",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "(2) Layar memiliki sudut melengkung. Jika diukur sebagai persegi standar, layarnya memiliki ukuran diagonal 6,12 inci (iPhone 15 Pro, iPhone 15) atau 6,69 inci (iPhone 15 Pro Max, iPhone 15 Plus). Area bidang layar berukuran lebih kecil.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "(3) Kekuatan baterai bervariasi tergantung penggunaan dan konfigurasi; lihat apple.com/batteries untuk informasi selengkapnya.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "(4) iPhone 15 dan iPhone 15 Pro bisa mendeteksi kecelakaan mobil yang parah dan melakukan panggilan bantuan. Memerlukan panggilan Wi-Fi atau koneksi seluler.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 10001,
"text": null,
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": 1
},
{
"type": 0,
"text": "Cara klaim garansi:",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "1. Bawa UNIT, DUS, NOTA PEMBELIAN dan KARTU GARANSI ke Service Center terdekat di kota Anda.",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "2. Jelaskan ke Customer Service keluhan anda (selama masih dalam masa garansi, tidak dikenakan biaya/gratis).",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
},
{
"type": 0,
"text": "3. Garansi TIDAK BERLAKU apabila kerusakan karena human error (Contoh: Jatuh/Pecah, kena air, terbakar)",
"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": "MEMBELI = SETUJU",
"img_id": null,
"ratio": null,
"description_type": 1,
"empty_paragraph_count": null
}
],
"source_language": ""
},
"selected_tiers": null,
"size_info": null,
"size_recommendation": null,
"translation_status": 0,
"product_description_tr": null,
"default_warnings": null,
"bcrs_disclaimer": null
}
}
3. Search / Category Items
Scrape all products from Shopee search or category pages. Up to 50 URLs per request.
Supported regions: ID ยท SG ยท TH ยท PH ยท MY ยท VN ยท TW
๐ Endpoint
POST /v1/shopee/search-items/submit
GET /v1/shopee/search-items/retrieve/{job_id}
๐ฅ Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
urls | array | Yes | Array of Shopee search/category URLs (max 50) |
๐ Supported URL Formats
- Search:
https://shopee.co.id/search?keyword=iphone - Category:
https://shopee.co.id/Elektronik-cat.11044070
๐ป Code Examples
# Submit Job
curl -X POST "https://nest-api.magpieiq.com/v1/shopee/search-items/submit" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"urls": [
"https://shopee.co.id/search?keyword=iphone",
"https://shopee.co.id/Elektronik-cat.11044070"
]
}'
# Poll Status & collect download URLs
curl "https://nest-api.magpieiq.com/v1/shopee/search-items/retrieve/{job_id}" \
-H "Authorization: Bearer YOUR_API_TOKEN"
# Download a specific result (download_url requires the same Bearer token)
curl "https://nest-api.magpieiq.com/v1/shopee/pgnt/jobs/{job_id}/items/{item_token}/data" \
-H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time
API_HOST = "https://nest-api.magpieiq.com"
headers = {"Authorization": "Bearer YOUR_API_TOKEN", "Content-Type": "application/json"}
# Submit
payload = {"urls": ["https://shopee.co.id/search?keyword=iphone"]}
resp = requests.post(f"{API_HOST}/v1/shopee/search-items/submit", json=payload, headers=headers)
job_id = resp.json()["job_id"]
# Poll until complete
while True:
result = requests.get(f"{API_HOST}/v1/shopee/search-items/retrieve/{job_id}", headers=headers).json()
if result["status"] in ["COMPLETED", "PARTIAL_COMPLETE"]:
for item in result["items"]:
print(f"URL: {item['url']}, Status: {item['status']}, Download: {item.get('download_url')}")
break
time.sleep(30)
โก Behavior
- Cost: 6 credits per URL
- Approval: Required (24h timeout)
- Region: Automatically extracted from URL (e.g., shopee.co.id โ ID)
- Results: One JSON file per URL containing all items from the search/category
- Download: Each
download_urlpoints to/v1/shopee/pgnt/jobs/{job_id}/items/{token}/dataand requires the same Bearer token. - Data source: Returns items from
search_items(all pages)
Result Example
Search Items JSON Click to expand
{
"success": true,
"url": "https://shopee.co.id/search?keyword=iphone",
"total_items": 94,
"items": [
{
"itemid": 40011228763,
"shopid": 24843249,
"name": "iPhone 15 Pro Max 256GB",
"price": 800000000,
"price_min": 800000000,
"price_max": 800000000,
"stock": 1,
"sold": 1000,
"historical_sold": 1000,
"liked_count": 221,
"cmt_count": 624,
"item_rating": {
"rating_star": 4.815705128205129,
"rating_count": [624, 21, 2, 7, 11, 583]
},
"shop_location": "KOTA JAKARTA UTARA",
"shop_name": "tokojualbarangmurahbanget",
"is_official_shop": false,
"tier_variations": [
{
"name": "Garansi",
"options": ["1 Bulan", "3 Bulan", "6 Bulan", "Lifetime"]
}
]
}
]
}
4. Merchant Items
Scrape all products from Shopee merchant/shop pages. Up to 50 URLs per request.
Supported regions: ID ยท SG ยท TH ยท PH ยท MY ยท VN ยท TW
๐ Endpoint
POST /v1/shopee/merchant-items/submit
GET /v1/shopee/merchant-items/retrieve/{job_id}
๐ฅ Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
urls | array | Yes | Array of Shopee shop/merchant URLs (max 50) |
๐ Supported URL Formats
- Shop ID:
https://shopee.co.id/shop/24843249
๐ป Code Examples
# Submit Job
curl -X POST "https://nest-api.magpieiq.com/v1/shopee/merchant-items/submit" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"urls": [
"https://shopee.co.id/shop/24843249",
"https://shopee.co.id/shop/651735813"
]
}'
# Poll Status & collect download URLs
curl "https://nest-api.magpieiq.com/v1/shopee/merchant-items/retrieve/{job_id}" \
-H "Authorization: Bearer YOUR_API_TOKEN"
# Download a specific result
curl "https://nest-api.magpieiq.com/v1/shopee/pgnt/jobs/{job_id}/items/{item_token}/data" \
-H "Authorization: Bearer YOUR_API_TOKEN"
View Python Example
import requests
import time
API_HOST = "https://nest-api.magpieiq.com"
headers = {"Authorization": "Bearer YOUR_API_TOKEN", "Content-Type": "application/json"}
# Submit
payload = {"urls": ["https://shopee.co.id/shop/24843249"]}
resp = requests.post(f"{API_HOST}/v1/shopee/merchant-items/submit", json=payload, headers=headers)
job_id = resp.json()["job_id"]
# Poll & download results
while True:
result = requests.get(f"{API_HOST}/v1/shopee/merchant-items/retrieve/{job_id}", headers=headers).json()
if result["status"] in ["completed", "partial_complete"]:
for item in result["items"]:
if item["status"] == "SUCCESS" and item["download_url"]:
data = requests.get(f"{API_HOST}{item['download_url']}", headers=headers).json()
print(item["url"], data.keys())
break
time.sleep(30)
โก Behavior
- Cost: 6 credits per URL
- Approval: Required (24h timeout)
- Region: Automatically extracted from URL (e.g., shopee.co.id โ ID)
- Results: One JSON file per shop URL containing all products
- Download: Use the
download_urlfrom retrieve to call/v1/shopee/pgnt/jobs/{job_id}/items/{token}/datawith your Bearer token. - Data sources: Returns items from both:
rcmd_items- Recommended/active itemssearch_items?filter_sold_out=1- Sold out items (if any)
Result Example
Merchant Items JSON Click to expand
{
"success": true,
"shops": {
"https://shopee.co.id/shop/24843249": {
"page_url": "https://shopee.co.id/shop/24843249",
"page_type": "shop",
"page_params": {
"shop_id": 24843249
},
"items": {
"items": [],
"total_fetched": 0,
"total_count": 0,
"pages_fetched": 0,
"has_more": true
},
"rcmd_items": {
"items": [
{
"itemid": 40011228763,
"shopid": 24843249,
"name": "Lifetime N3TFLXX Premium UHD 4K Akun Netflix",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
1015914,
700190087,
700830032,
298933384,
1400285055
],
"image": "id-11134207-7ra0i-mcwe7x8ljik5bb",
"images": [
"id-11134207-7ra0i-mcwe7x8ljik5bb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1754070551,
"sold": 1000,
"historical_sold": 1000,
"liked": false,
"liked_count": 221,
"catid": 100642,
"brand": "",
"cmt_count": 624,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 800000000,
"price_min": 800000000,
"price_max": 800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.815705128205129,
"rating_count": [
624,
21,
2,
7,
11,
583
],
"rcount_with_context": 124,
"rcount_with_image": 35
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.154511},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 1000,
"local_monthly_sold_count_text": "1RB+",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 29700784692,
"shopid": 24843249,
"name": "LIFETIME SUNO AI PREMIUM",
"label_ids": [
700025282,
1400285055,
1428713,
1718087960,
1015914,
700190087,
2018619,
1059152,
1049122,
822059908662278,
822120592853526,
298933384,
700830032
],
"image": "id-11134207-7r98p-lyamb5m0up0gd3",
"images": [
"id-11134207-7r98p-lyamb5m0up0gd3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1716487553,
"sold": 680,
"historical_sold": 7000,
"liked": false,
"liked_count": 1581,
"catid": 100642,
"brand": "",
"cmt_count": 2869,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1500000000,
"price_min": 1500000000,
"price_max": 1500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"2 Bulan",
"3 Bulan",
"6 Bulan",
"8 Bulan",
"10 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.495569188820722,
"rating_count": [
2934,
278,
46,
70,
90,
2450
],
"rcount_with_context": 633,
"rcount_with_image": 124
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.151433},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 7000,
"rounded_display_sold_count": 7000,
"display_sold_count_text": "7RB+",
"rounded_local_monthly_sold_count": 680,
"local_monthly_sold_count_text": "680",
"rounded_local_historical_sold_count": 7000,
"local_historical_sold_count_text": "7RB+",
"rounded_global_historical_sold_count": 7000,
"global_historical_sold_count_text": "7RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 23759132564,
"shopid": 24843249,
"name": "LIFETIME CLAUDE AI PREMIUM Dengan Akun Lifetime",
"label_ids": [
700025282,
1059152,
1059154,
822059908662278,
1400285055,
822120592853526,
1718087960,
1428713,
2018619,
298933384,
700830032,
1015914,
700190087
],
"image": "id-11134207-7r98z-lnamcttrextm9c",
"images": [
"id-11134207-7r98z-lnamcttrextm9c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1698272945,
"sold": 314,
"historical_sold": 4000,
"liked": false,
"liked_count": 785,
"catid": 100642,
"brand": "",
"cmt_count": 1213,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1000000000,
"price_min": 1000000000,
"price_max": 1000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.581749049429658,
"rating_count": [
1315,
68,
33,
57,
65,
1092
],
"rcount_with_context": 180,
"rcount_with_image": 34
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.132052},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 4000,
"rounded_display_sold_count": 4000,
"display_sold_count_text": "4RB+",
"rounded_local_monthly_sold_count": 314,
"local_monthly_sold_count_text": "314",
"rounded_local_historical_sold_count": 4000,
"local_historical_sold_count_text": "4RB+",
"rounded_global_historical_sold_count": 4000,
"global_historical_sold_count_text": "4RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 26275994044,
"shopid": 24843249,
"name": "PR1ME VID Premium - Akses Nonton Film Dengan Garansi",
"label_ids": [
700025282,
1428713,
1718087960,
1400285055,
2018619,
1059152,
1049122,
822059908662278,
822120592853526,
298933384,
1015914,
700190087
],
"image": "id-11134207-7rbk5-m661btyd7r5sad",
"images": [
"id-11134207-7rbk5-m661btyd7r5sad"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1739401229,
"sold": 387,
"historical_sold": 2000,
"liked": false,
"liked_count": 323,
"catid": 100644,
"brand": "",
"cmt_count": 1165,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.775107296137339,
"rating_count": [
1165,
43,
8,
18,
30,
1066
],
"rcount_with_context": 169,
"rcount_with_image": 42
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.122446},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 2000,
"rounded_display_sold_count": 2000,
"display_sold_count_text": "2RB+",
"rounded_local_monthly_sold_count": 387,
"local_monthly_sold_count_text": "387",
"rounded_local_historical_sold_count": 2000,
"local_historical_sold_count_text": "2RB+",
"rounded_global_historical_sold_count": 2000,
"global_historical_sold_count_text": "2RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 26280730972,
"shopid": 24843249,
"name": "Lifetime Kling Ai Premium Dengan Akun Baru Gratis",
"label_ids": [
2018619,
700025282,
1428713,
1718087960,
1059152,
1049122,
822059908662278,
822120592853526,
1400285055,
1015914,
700190087,
298933384,
700830032
],
"image": "id-11134207-7rbk0-m7qpotapjr1e79",
"images": [
"id-11134207-7rbk0-m7qpotapjr1e79"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1742847992,
"sold": 90,
"historical_sold": 768,
"liked": false,
"liked_count": 542,
"catid": 100642,
"brand": "",
"cmt_count": 260,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3000000000,
"price_min": 3000000000,
"price_max": 3000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.35,
"rating_count": [
260,
33,
4,
7,
11,
205
],
"rcount_with_context": 44,
"rcount_with_image": 9
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.093357},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 768,
"rounded_display_sold_count": 768,
"display_sold_count_text": "768",
"rounded_local_monthly_sold_count": 90,
"local_monthly_sold_count_text": "90",
"rounded_local_historical_sold_count": 768,
"local_historical_sold_count_text": "768",
"rounded_global_historical_sold_count": 768,
"global_historical_sold_count_text": "768"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 46602718815,
"shopid": 24843249,
"name": "LIFETIME MELOLO PREMIUM",
"label_ids": [
2018619,
700025282,
1428713,
1718087960,
1059152,
1049122,
822059908662278,
822120592853526,
298933384,
1400285055
],
"image": "id-11134207-8224x-mhxmjt5ljqx105",
"images": [
"id-11134207-8224x-mhxmjt5ljqx105"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765041674,
"sold": 210,
"historical_sold": 230,
"liked": false,
"liked_count": 29,
"catid": 100642,
"brand": "",
"cmt_count": 104,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 300000000,
"price_min": 300000000,
"price_max": 300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"ANDROID",
"ALL DEVICES"
],
"type": 0
},
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.894230769230769,
"rating_count": [
104,
1,
0,
2,
3,
98
],
"rcount_with_context": 17,
"rcount_with_image": 4
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.090885},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 230,
"rounded_display_sold_count": 230,
"display_sold_count_text": "230",
"rounded_local_monthly_sold_count": 210,
"local_monthly_sold_count_text": "210",
"rounded_local_historical_sold_count": 230,
"local_historical_sold_count_text": "230",
"rounded_global_historical_sold_count": 230,
"global_historical_sold_count_text": "230"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 27879193443,
"shopid": 24843249,
"name": "LIFETIME Bein Sports Premium Murah Dengan Garansi 1-12 Bulan",
"label_ids": [
700025282,
1718087960,
1428713,
1049122,
1059152,
822059908662278,
822120592853526,
2018619,
1400285055,
1015914,
700190087,
298933384,
700830032
],
"image": "id-11134207-7rbk9-m77yw8l073kmc8",
"images": [
"id-11134207-7rbk9-m77yw8l073kmc8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1741696836,
"sold": 109,
"historical_sold": 1000,
"liked": false,
"liked_count": 307,
"catid": 100642,
"brand": "",
"cmt_count": 716,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2100000000,
"price_min": 2100000000,
"price_max": 2100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.572625698324022,
"rating_count": [
716,
52,
12,
17,
28,
607
],
"rcount_with_context": 97,
"rcount_with_image": 20
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.089645},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 109,
"local_monthly_sold_count_text": "109",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 40226546605,
"shopid": 24843249,
"name": "LIFETIME LOKLLOCKK PPPREMIUM",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
1400285055,
298933384,
1015914,
700190087
],
"image": "id-11134207-8224o-mh839kz8cphn9a",
"images": [
"id-11134207-8224o-mh839kz8cphn9a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763495429,
"sold": 162,
"historical_sold": 208,
"liked": false,
"liked_count": 56,
"catid": 100642,
"brand": "",
"cmt_count": 122,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.819672131147541,
"rating_count": [
122,
4,
0,
2,
2,
114
],
"rcount_with_context": 28,
"rcount_with_image": 9
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.089563},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 208,
"rounded_display_sold_count": 208,
"display_sold_count_text": "208",
"rounded_local_monthly_sold_count": 162,
"local_monthly_sold_count_text": "162",
"rounded_local_historical_sold_count": 208,
"local_historical_sold_count_text": "208",
"rounded_global_historical_sold_count": 208,
"global_historical_sold_count_text": "208"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 28720158961,
"shopid": 24843249,
"name": "LIFETIME BLACKBOX AI PREMIUM",
"label_ids": [
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
1400285055,
2018619,
1015914,
700190087,
298933384,
700830032
],
"image": "id-11134207-7rasd-m3kkw94z5hbia1",
"images": [
"id-11134207-7rasd-m3kkw94z5hbia1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1733744842,
"sold": 361,
"historical_sold": 4000,
"liked": false,
"liked_count": 556,
"catid": 100642,
"brand": "",
"cmt_count": 1527,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2800000000,
"price_min": 2800000000,
"price_max": 2800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.68369351669941,
"rating_count": [
1527,
76,
15,
35,
64,
1337
],
"rcount_with_context": 178,
"rcount_with_image": 45
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.083507},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 4000,
"rounded_display_sold_count": 4000,
"display_sold_count_text": "4RB+",
"rounded_local_monthly_sold_count": 361,
"local_monthly_sold_count_text": "361",
"rounded_local_historical_sold_count": 4000,
"local_historical_sold_count_text": "4RB+",
"rounded_global_historical_sold_count": 4000,
"global_historical_sold_count_text": "4RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 56202053257,
"shopid": 24843249,
"name": "LIFETIME GROK AI PREMIUM",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
298933384,
1015914,
700190087,
1400285055
],
"image": "id-11134207-8224v-mhh7baj74buv8d",
"images": [
"id-11134207-8224v-mhh7baj74buv8d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764047666,
"sold": 193,
"historical_sold": 239,
"liked": false,
"liked_count": 110,
"catid": 100642,
"brand": "",
"cmt_count": 96,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.770833333333333,
"rating_count": [
96,
4,
1,
1,
1,
89
],
"rcount_with_context": 17,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.081607},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 239,
"rounded_display_sold_count": 239,
"display_sold_count_text": "239",
"rounded_local_monthly_sold_count": 193,
"local_monthly_sold_count_text": "193",
"rounded_local_historical_sold_count": 239,
"local_historical_sold_count_text": "239",
"rounded_global_historical_sold_count": 239,
"global_historical_sold_count_text": "239"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 41065546729,
"shopid": 24843249,
"name": "Lifetime FlareFlow Premium",
"label_ids": [
2018619,
700025282,
1428713,
1718087960,
1059152,
1049122,
822059908662278,
822120592853526,
298933384,
1015914,
700190087
],
"image": "id-11134207-81ztn-mdyyn782pvydf9",
"images": [
"id-11134207-81ztn-mdyyn782pvydf9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756405226,
"sold": 104,
"historical_sold": 366,
"liked": false,
"liked_count": 34,
"catid": 100642,
"brand": "",
"cmt_count": 95,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2000000000,
"price_min": 2000000000,
"price_max": 2000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.6,
"rating_count": [
95,
4,
3,
4,
5,
79
],
"rcount_with_context": 10,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.078361},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 366,
"rounded_display_sold_count": 366,
"display_sold_count_text": "366",
"rounded_local_monthly_sold_count": 104,
"local_monthly_sold_count_text": "104",
"rounded_local_historical_sold_count": 366,
"local_historical_sold_count_text": "366",
"rounded_global_historical_sold_count": 366,
"global_historical_sold_count_text": "366"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 46701258873,
"shopid": 24843249,
"name": "LIFETIME DERABOKS PREMIUM",
"label_ids": [
2018619,
700025282,
1428713,
1718087960,
1059152,
1049122,
822059908662278,
822120592853526,
298933384,
1400285055
],
"image": "id-11134207-8224z-mgzc5jq6a0p83c",
"images": [
"id-11134207-8224z-mgzc5jq6a0p83c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1762965628,
"sold": 56,
"historical_sold": 95,
"liked": false,
"liked_count": 10,
"catid": 100642,
"brand": "",
"cmt_count": 53,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1200000000,
"price_min": 1200000000,
"price_max": 1200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.9245283018867925,
"rating_count": [
53,
1,
0,
0,
0,
52
],
"rcount_with_context": 9,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.076410},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 95,
"rounded_display_sold_count": 95,
"display_sold_count_text": "95",
"rounded_local_monthly_sold_count": 56,
"local_monthly_sold_count_text": "56",
"rounded_local_historical_sold_count": 95,
"local_historical_sold_count_text": "95",
"rounded_global_historical_sold_count": 95,
"global_historical_sold_count_text": "95"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 25955568095,
"shopid": 24843249,
"name": "Premium Lifetime Eleven Labs Dengan Panduan Gratis",
"label_ids": [
700025282,
1400285055,
1718087960,
1428713,
2018619,
1049122,
1059152,
822059908662278,
822120592853526,
298933384,
1015914,
700190087
],
"image": "id-11134207-7r98o-lptm9vir0fjmcd",
"images": [
"id-11134207-7r98o-lptm9vir0fjmcd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1703780005,
"sold": 235,
"historical_sold": 1000,
"liked": false,
"liked_count": 292,
"catid": 100644,
"brand": "",
"cmt_count": 491,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2000000000,
"price_min": 2000000000,
"price_max": 2000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.315040650406504,
"rating_count": [
492,
66,
8,
16,
17,
385
],
"rcount_with_context": 91,
"rcount_with_image": 20
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.076247},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 235,
"local_monthly_sold_count_text": "235",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24522559441,
"shopid": 24843249,
"name": "Lifetime MoboReels Premium",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1400285055,
1718087960,
1428713,
2018619,
1015914,
700190087,
298933384,
700830032
],
"image": "id-11134207-7r990-ltr41vbovuytf1",
"images": [
"id-11134207-7r990-ltr41vbovuytf1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1712348840,
"sold": 28,
"historical_sold": 1000,
"liked": false,
"liked_count": 89,
"catid": 100642,
"brand": "",
"cmt_count": 646,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 600000000,
"price_min": 600000000,
"price_max": 600000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.776712328767124,
"rating_count": [
730,
20,
10,
12,
29,
659
],
"rcount_with_context": 100,
"rcount_with_image": 23
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.068148},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 28,
"local_monthly_sold_count_text": "28",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 26465072469,
"shopid": 24843249,
"name": "Lifetime FlickReels Premium",
"label_ids": [
700025282,
1428713,
1718087960,
1400285055,
1015914,
700190087,
2018619,
1059152,
1049122,
822059908662278,
822120592853526,
298933384,
700810080
],
"image": "id-11134207-7rase-m1pm2nejv41n11",
"images": [
"id-11134207-7rase-m1pm2nejv41n11"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1729689946,
"sold": 287,
"historical_sold": 3000,
"liked": false,
"liked_count": 188,
"catid": 100644,
"brand": "",
"cmt_count": 1021,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 800000000,
"price_min": 800000000,
"price_max": 800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.634671890303624,
"rating_count": [
1021,
58,
11,
35,
38,
879
],
"rcount_with_context": 103,
"rcount_with_image": 28
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.067686},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 3000,
"rounded_display_sold_count": 3000,
"display_sold_count_text": "3RB+",
"rounded_local_monthly_sold_count": 287,
"local_monthly_sold_count_text": "287",
"rounded_local_historical_sold_count": 3000,
"local_historical_sold_count_text": "3RB+",
"rounded_global_historical_sold_count": 3000,
"global_historical_sold_count_text": "3RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 27352939986,
"shopid": 24843249,
"name": "LIFETIME SUNO AI PREMIUM PRIVATE",
"label_ids": [
700025282,
1718087960,
1428713,
2018619,
298933384,
1059152,
1049122,
822059908662278,
822120592853526,
1015914,
700190087,
1400285055
],
"image": "id-11134207-7r98v-lyamb5m0w3kw6c",
"images": [
"id-11134207-7r98v-lyamb5m0w3kw6c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1718440675,
"sold": 63,
"historical_sold": 162,
"liked": false,
"liked_count": 120,
"catid": 100644,
"brand": "",
"cmt_count": 67,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 10000000000,
"price_min": 10000000000,
"price_max": 10000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.3428571428571425,
"rating_count": [
70,
9,
1,
1,
5,
54
],
"rcount_with_context": 19,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.065556},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 162,
"rounded_display_sold_count": 162,
"display_sold_count_text": "162",
"rounded_local_monthly_sold_count": 63,
"local_monthly_sold_count_text": "63",
"rounded_local_historical_sold_count": 162,
"local_historical_sold_count_text": "162",
"rounded_global_historical_sold_count": 162,
"global_historical_sold_count_text": "162"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 23281742299,
"shopid": 24843249,
"name": "LIFETIME PERPLEXITY AI PREMIUM",
"label_ids": [
700025282,
1400285055,
1059152,
1049122,
822059908662278,
822120592853526,
1718087960,
1428713,
1015914,
700190087,
2018619,
298933384,
700830032
],
"image": "id-11134207-7r98s-lm6n7wt2bu6m92",
"images": [
"id-11134207-7r98s-lm6n7wt2bu6m92"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1695858277,
"sold": 122,
"historical_sold": 4000,
"liked": false,
"liked_count": 1019,
"catid": 100642,
"brand": "",
"cmt_count": 1834,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.846711548420507,
"rating_count": [
1931,
41,
9,
29,
47,
1805
],
"rcount_with_context": 264,
"rcount_with_image": 70
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.059268},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 4000,
"rounded_display_sold_count": 4000,
"display_sold_count_text": "4RB+",
"rounded_local_monthly_sold_count": 122,
"local_monthly_sold_count_text": "122",
"rounded_local_historical_sold_count": 4000,
"local_historical_sold_count_text": "4RB+",
"rounded_global_historical_sold_count": 4000,
"global_historical_sold_count_text": "4RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 22444965011,
"shopid": 24843249,
"name": "LIFETIME ENV4TO ELEMENTS PREMIUM",
"label_ids": [
1400285055,
700025282,
1428713,
1718087960,
1059152,
1049122,
822059908662278,
822120592853526,
2018619,
298933384,
700830032
],
"image": "id-11134207-7qul0-lhs6xq83e84p65",
"images": [
"id-11134207-7qul0-lhs6xq83e84p65"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1686259468,
"sold": 27,
"historical_sold": 2000,
"liked": false,
"liked_count": 665,
"catid": 100642,
"brand": "",
"cmt_count": 910,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.752843846949328,
"rating_count": [
967,
33,
12,
19,
33,
870
],
"rcount_with_context": 160,
"rcount_with_image": 37
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.058598},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 2000,
"rounded_display_sold_count": 2000,
"display_sold_count_text": "2RB+",
"rounded_local_monthly_sold_count": 27,
"local_monthly_sold_count_text": "27",
"rounded_local_historical_sold_count": 2000,
"local_historical_sold_count_text": "2RB+",
"rounded_global_historical_sold_count": 2000,
"global_historical_sold_count_text": "2RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 17093507834,
"shopid": 24843249,
"name": "PREMIUM QU1LL B LIFETIME",
"label_ids": [
1400285055,
700025282,
1718087960,
1428713,
2018619,
1015914,
700190087,
298933384,
700830032,
1049122,
1059152,
822059908662278,
822120592853526
],
"image": "id-11134201-23030-n0no0ud2o4nvfb",
"images": [
"id-11134201-23030-n0no0ud2o4nvfb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1678735635,
"sold": 113,
"historical_sold": 8000,
"liked": false,
"liked_count": 945,
"catid": 100642,
"brand": "",
"cmt_count": 3310,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.875426621160409,
"rating_count": [
3516,
27,
23,
49,
163,
3254
],
"rcount_with_context": 487,
"rcount_with_image": 159
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.058488},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 8000,
"rounded_display_sold_count": 8000,
"display_sold_count_text": "8RB+",
"rounded_local_monthly_sold_count": 113,
"local_monthly_sold_count_text": "113",
"rounded_local_historical_sold_count": 8000,
"local_historical_sold_count_text": "8RB+",
"rounded_global_historical_sold_count": 8000,
"global_historical_sold_count_text": "8RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 29502349955,
"shopid": 24843249,
"name": "LIFETIME GEMINI AI ADVANCED PREMIUM",
"label_ids": [
700025282,
1049122,
1059152,
822059908662278,
822120592853526,
1718087960,
1428713,
1400285055,
2018619,
1015914,
700190087,
298933384,
700810080
],
"image": "id-11134207-7r98w-lwd5rnu9dz3x04",
"images": [
"id-11134207-7r98w-lwd5rnu9dz3x04"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1718041120,
"sold": 25,
"historical_sold": 220,
"liked": false,
"liked_count": 99,
"catid": 100644,
"brand": "",
"cmt_count": 95,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.755102040816326,
"rating_count": [
98,
3,
0,
4,
4,
87
],
"rcount_with_context": 15,
"rcount_with_image": 7
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.058222},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 220,
"rounded_display_sold_count": 220,
"display_sold_count_text": "220",
"rounded_local_monthly_sold_count": 25,
"local_monthly_sold_count_text": "25",
"rounded_local_historical_sold_count": 220,
"local_historical_sold_count_text": "220",
"rounded_global_historical_sold_count": 220,
"global_historical_sold_count_text": "220"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24808027544,
"shopid": 24843249,
"name": "LIFETIME GITHUB COPILOT PREMIUM",
"label_ids": [
700025282,
1400285055,
1059152,
1049122,
822059908662278,
822120592853526,
1428713,
1718087960,
2018619,
1015914,
700190087,
298933384,
700810080
],
"image": "id-11134207-7r990-lqefsyrxi0tu74",
"images": [
"id-11134207-7r990-lqefsyrxi0tu74"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1705040235,
"sold": 182,
"historical_sold": 1000,
"liked": false,
"liked_count": 304,
"catid": 100644,
"brand": "",
"cmt_count": 654,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2000000000,
"price_min": 2000000000,
"price_max": 2000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.770045385779123,
"rating_count": [
661,
29,
4,
6,
12,
610
],
"rcount_with_context": 130,
"rcount_with_image": 32
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.056557},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 182,
"local_monthly_sold_count_text": "182",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 22376222002,
"shopid": 24843249,
"name": "Lifetime Humata.Ai Premium Dengan Akun Lifetime",
"label_ids": [
1400285055,
700025282,
1015914,
700190087,
1049122,
1059152,
822059908662278,
822120592853526,
1428713,
1718087960,
2018619,
298933384,
700830032
],
"image": "id-11134207-7qukz-lk7agu2exs5r96",
"images": [
"id-11134207-7qukz-lk7agu2exs5r96"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1691533701,
"sold": 43,
"historical_sold": 7000,
"liked": false,
"liked_count": 1079,
"catid": 100642,
"brand": "",
"cmt_count": 3084,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.908279470606341,
"rating_count": [
3249,
20,
13,
38,
103,
3075
],
"rcount_with_context": 416,
"rcount_with_image": 114
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.051738},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 7000,
"rounded_display_sold_count": 7000,
"display_sold_count_text": "7RB+",
"rounded_local_monthly_sold_count": 43,
"local_monthly_sold_count_text": "43",
"rounded_local_historical_sold_count": 7000,
"local_historical_sold_count_text": "7RB+",
"rounded_global_historical_sold_count": 7000,
"global_historical_sold_count_text": "7RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24320951432,
"shopid": 24843249,
"name": "Lifetime Photoroom Premium Akun Lifetime Gratis Panduan",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1400285055,
1428713,
1718087960,
1015914,
700190087,
2018619,
298933384
],
"image": "id-11134207-7r98v-ltc0rbhdeqtlb9",
"images": [
"id-11134207-7r98v-ltc0rbhdeqtlb9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1711432524,
"sold": 26,
"historical_sold": 2000,
"liked": false,
"liked_count": 279,
"catid": 100644,
"brand": "",
"cmt_count": 1032,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 300000000,
"price_min": 300000000,
"price_max": 300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.853486319505737,
"rating_count": [
1133,
21,
9,
17,
21,
1065
],
"rcount_with_context": 229,
"rcount_with_image": 65
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.048983},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 2000,
"rounded_display_sold_count": 2000,
"display_sold_count_text": "2RB+",
"rounded_local_monthly_sold_count": 26,
"local_monthly_sold_count_text": "26",
"rounded_local_historical_sold_count": 2000,
"local_historical_sold_count_text": "2RB+",
"rounded_global_historical_sold_count": 2000,
"global_historical_sold_count_text": "2RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 22849901967,
"shopid": 24843249,
"name": "LIFETIME PIXELCUT PREMIUM ALL DEVICES",
"label_ids": [
1059152,
822059908662278,
700025282,
822120592853526,
1400285055,
1718087960,
1428713,
2018619,
1015914,
700190087,
298933384,
700830032,
1049122
],
"image": "id-11134207-7qukx-ljum41tk84pk31",
"images": [
"id-11134207-7qukx-ljum41tk84pk31"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1690764803,
"sold": 55,
"historical_sold": 1000,
"liked": false,
"liked_count": 125,
"catid": 100642,
"brand": "",
"cmt_count": 463,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime",
"Tip Untuk Seller"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.840670859538784,
"rating_count": [
477,
13,
3,
3,
9,
449
],
"rcount_with_context": 79,
"rcount_with_image": 12
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.048730},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 55,
"local_monthly_sold_count_text": "55",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 25559433414,
"shopid": 24843249,
"name": "PRIVATE ELEVEN LABS PREMIUM",
"label_ids": [
700025282,
1059152,
822059908662278,
1015914,
700190087,
822120592853526,
1400285055,
1049122,
1428713,
1718087960,
2018619,
298933384,
700830032
],
"image": "id-11134207-7r98p-lr56uqwajsivd2",
"images": [
"id-11134207-7r98p-lr56uqwajsivd2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1705689140,
"sold": 53,
"historical_sold": 1000,
"liked": false,
"liked_count": 487,
"catid": 100642,
"brand": "",
"cmt_count": 637,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3200000000,
"price_min": 3200000000,
"price_max": 3200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"Starter",
"Creator"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.606060606060606,
"rating_count": [
660,
52,
7,
7,
17,
577
],
"rcount_with_context": 121,
"rcount_with_image": 32
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.048580},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 53,
"local_monthly_sold_count_text": "53",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 18668822609,
"shopid": 24843249,
"name": "On3Drive Premium 1TB - 5TB",
"label_ids": [
1059152,
1059154,
822059908662278,
1400285055,
700025282,
822120592853526,
1428713,
1718087960,
2018619,
1015914,
700190087,
298933384
],
"image": "sg-11134201-22120-91anf0xxy5kv0a",
"images": [
"sg-11134201-22120-91anf0xxy5kv0a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1671156683,
"sold": 31,
"historical_sold": 1000,
"liked": false,
"liked_count": 917,
"catid": 100644,
"brand": "",
"cmt_count": 473,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 TB",
"5 TB"
],
"type": 0
},
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.703549060542797,
"rating_count": [
479,
25,
4,
6,
18,
426
],
"rcount_with_context": 126,
"rcount_with_image": 45
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.045890},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 31,
"local_monthly_sold_count_text": "31",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 46651755092,
"shopid": 24843249,
"name": "LIFETIME CHAT AI PREMIUM",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
298933384,
1400285055,
1015914,
700190087
],
"image": "id-11134207-8224z-mh8yujp3905qff",
"images": [
"id-11134207-8224z-mh8yujp3905qff"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763548403,
"sold": 199,
"historical_sold": 315,
"liked": false,
"liked_count": 70,
"catid": 100642,
"brand": "",
"cmt_count": 97,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.835051546391752,
"rating_count": [
97,
1,
0,
4,
4,
88
],
"rcount_with_context": 9,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.043347},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 315,
"rounded_display_sold_count": 315,
"display_sold_count_text": "315",
"rounded_local_monthly_sold_count": 199,
"local_monthly_sold_count_text": "199",
"rounded_local_historical_sold_count": 315,
"local_historical_sold_count_text": "315",
"rounded_global_historical_sold_count": 315,
"global_historical_sold_count_text": "315"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 43918954033,
"shopid": 24843249,
"name": "LIFETIME MOISES PREMIUM",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
298933384,
1400285055
],
"image": "id-11134207-81ztp-melm0264hkw18d",
"images": [
"id-11134207-81ztp-melm0264hkw18d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1757883692,
"sold": 58,
"historical_sold": 176,
"liked": false,
"liked_count": 26,
"catid": 100642,
"brand": "",
"cmt_count": 99,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1000000000,
"price_min": 1000000000,
"price_max": 1000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.858585858585859,
"rating_count": [
99,
3,
0,
1,
0,
95
],
"rcount_with_context": 15,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.042892},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 176,
"rounded_display_sold_count": 176,
"display_sold_count_text": "176",
"rounded_local_monthly_sold_count": 58,
"local_monthly_sold_count_text": "58",
"rounded_local_historical_sold_count": 176,
"local_historical_sold_count_text": "176",
"rounded_global_historical_sold_count": 176,
"global_historical_sold_count_text": "176"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 22211119225,
"shopid": 24843249,
"name": "LIFETIME T1DAL HIFI PLUS MASTER PREMIUMM ACCOUNT",
"label_ids": [
822059908662278,
1059152,
1400285055,
700025282,
822120592853526,
1718087960,
1428713,
1049122,
2018619,
700830032
],
"image": "sg-11134201-22120-v8n96xvaj4kva0",
"images": [
"sg-11134201-22120-v8n96xvaj4kva0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1671068836,
"sold": 60,
"historical_sold": 3000,
"liked": false,
"liked_count": 637,
"catid": 100642,
"brand": "",
"cmt_count": 1996,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 300000000,
"price_min": 300000000,
"price_max": 300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.868369351669941,
"rating_count": [
2036,
43,
6,
19,
40,
1928
],
"rcount_with_context": 463,
"rcount_with_image": 156
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.042152},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 3000,
"rounded_display_sold_count": 3000,
"display_sold_count_text": "3RB+",
"rounded_local_monthly_sold_count": 60,
"local_monthly_sold_count_text": "60",
"rounded_local_historical_sold_count": 3000,
"local_historical_sold_count_text": "3RB+",
"rounded_global_historical_sold_count": 3000,
"global_historical_sold_count_text": "3RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 56552323108,
"shopid": 24843249,
"name": "Lifetime CubeTV Premium Dengan Akun Lifetime",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
1015914,
700190087,
1400285055
],
"image": "id-11134207-8224z-mhnp3nywgq2r67",
"images": [
"id-11134207-8224z-mhnp3nywgq2r67"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764441186,
"sold": 548,
"historical_sold": 780,
"liked": false,
"liked_count": 23,
"catid": 100642,
"brand": "",
"cmt_count": 355,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 800000000,
"price_min": 800000000,
"price_max": 800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.870422535211268,
"rating_count": [
355,
6,
2,
4,
8,
335
],
"rcount_with_context": 35,
"rcount_with_image": 8
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.038997},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 780,
"rounded_display_sold_count": 780,
"display_sold_count_text": "780",
"rounded_local_monthly_sold_count": 548,
"local_monthly_sold_count_text": "548",
"rounded_local_historical_sold_count": 780,
"local_historical_sold_count_text": "780",
"rounded_global_historical_sold_count": 780,
"global_historical_sold_count_text": "780"
},
"global_cat": {
"catid": [
100642,
100773
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 25950499510,
"shopid": 24843249,
"name": "LIFETIME SCISPACE/TYPESET PREMIUM",
"label_ids": [
700025282,
1059152,
1059154,
822059908662278,
1400285055,
822120592853526,
1428713,
1718087960,
1015914,
700190087,
2018619,
298933384,
700830032
],
"image": "id-11134207-7r98z-lnum6e7qccg1c3",
"images": [
"id-11134207-7r98z-lnum6e7qccg1c3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1699486667,
"sold": 79,
"historical_sold": 5000,
"liked": false,
"liked_count": 446,
"catid": 100642,
"brand": "",
"cmt_count": 2529,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2800000000,
"price_min": 2800000000,
"price_max": 2800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8896783844427825,
"rating_count": [
2674,
38,
14,
11,
79,
2532
],
"rcount_with_context": 368,
"rcount_with_image": 89
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.038701},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 5000,
"rounded_display_sold_count": 5000,
"display_sold_count_text": "5RB+",
"rounded_local_monthly_sold_count": 79,
"local_monthly_sold_count_text": "79",
"rounded_local_historical_sold_count": 5000,
"local_historical_sold_count_text": "5RB+",
"rounded_global_historical_sold_count": 5000,
"global_historical_sold_count_text": "5RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 26002530627,
"shopid": 24843249,
"name": "Lifetime Medium Premium",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1428713,
1718087960,
1400285055,
2018619,
1015914,
700190087,
298933384
],
"image": "id-11134207-7r990-lwd5rnu9gs8t96",
"images": [
"id-11134207-7r990-lwd5rnu9gs8t96"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1718041971,
"sold": 63,
"historical_sold": 1000,
"liked": false,
"liked_count": 359,
"catid": 100644,
"brand": "",
"cmt_count": 343,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.856020942408377,
"rating_count": [
382,
10,
2,
3,
3,
364
],
"rcount_with_context": 56,
"rcount_with_image": 9
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.038128},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 63,
"local_monthly_sold_count_text": "63",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 18549480719,
"shopid": 24843249,
"name": "Lifetime Flightradar24 Premium",
"label_ids": [
1059152,
822059908662278,
1400285055,
700025282,
822120592853526,
1718087960,
1428713,
1049122,
2018619,
1015914,
700190087,
700830032
],
"image": "sg-11134201-22090-ruond1xo2whv61",
"images": [
"sg-11134201-22090-ruond1xo2whv61"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1664138801,
"sold": 26,
"historical_sold": 687,
"liked": false,
"liked_count": 112,
"catid": 100642,
"brand": "",
"cmt_count": 335,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 7000000000,
"price_min": 7000000000,
"price_max": 7000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Durasi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.893371757925072,
"rating_count": [
347,
4,
1,
5,
8,
329
],
"rcount_with_context": 64,
"rcount_with_image": 23
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.037164},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 687,
"rounded_display_sold_count": 687,
"display_sold_count_text": "687",
"rounded_local_monthly_sold_count": 26,
"local_monthly_sold_count_text": "26",
"rounded_local_historical_sold_count": 687,
"local_historical_sold_count_text": "687",
"rounded_global_historical_sold_count": 687,
"global_historical_sold_count_text": "687"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 41508495105,
"shopid": 24843249,
"name": "CEK PLAGIASI STUDENT ACCOUNT NO REPOSITORY UNLIMITEDD",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
298933384,
1015914,
700190087,
1400285055,
1049122,
1059152,
822059908662278,
822120592853526,
700810080
],
"image": "id-11134207-7ra0n-mc6hrsde1yybaf",
"images": [
"id-11134207-7ra0n-mc6hrsde1yybaf"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1752504009,
"sold": 154,
"historical_sold": 667,
"liked": false,
"liked_count": 87,
"catid": 100644,
"brand": "",
"cmt_count": 257,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3300000000,
"price_min": 3300000000,
"price_max": 3300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"Akun",
"Jasa"
],
"type": 0
},
{
"name": "Durasi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime",
"1x Check",
"3x Check",
"5x Check"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.715953307392996,
"rating_count": [
257,
12,
3,
5,
6,
231
],
"rcount_with_context": 40,
"rcount_with_image": 14
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.036648},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 667,
"rounded_display_sold_count": 667,
"display_sold_count_text": "667",
"rounded_local_monthly_sold_count": 154,
"local_monthly_sold_count_text": "154",
"rounded_local_historical_sold_count": 667,
"local_historical_sold_count_text": "667",
"rounded_global_historical_sold_count": 667,
"global_historical_sold_count_text": "667"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 25554476045,
"shopid": 24843249,
"name": "LIFETIME CONSENSUS AI PREMIUM",
"label_ids": [
700025282,
822059908662278,
1400285055,
1059152,
1059154,
822120592853526,
1428713,
1718087960,
2018619,
1015914,
700190087,
298933384,
700810080
],
"image": "id-11134207-7r98u-lpknbyv8v8y8e6",
"images": [
"id-11134207-7r98u-lpknbyv8v8y8e6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1703237355,
"sold": 37,
"historical_sold": 1000,
"liked": false,
"liked_count": 170,
"catid": 100644,
"brand": "",
"cmt_count": 457,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 300000000,
"price_min": 300000000,
"price_max": 300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.919831223628692,
"rating_count": [
474,
5,
2,
2,
8,
457
],
"rcount_with_context": 64,
"rcount_with_image": 13
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.036469},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 37,
"local_monthly_sold_count_text": "37",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 43073382296,
"shopid": 24843249,
"name": "Lifetime JustDone AI PREMIUM",
"label_ids": [
700025282,
2018619,
1428713,
1718087960,
1049122,
1059152,
822059908662278,
822120592853526,
298933384,
1015914,
700190087,
1400285055
],
"image": "id-11134207-81ztg-meodri0bsfepee",
"images": [
"id-11134207-81ztg-meodri0bsfepee"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1760014882,
"sold": 76,
"historical_sold": 241,
"liked": false,
"liked_count": 13,
"catid": 100642,
"brand": "",
"cmt_count": 79,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1000000000,
"price_min": 1000000000,
"price_max": 1000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.30379746835443,
"rating_count": [
79,
12,
1,
2,
0,
64
],
"rcount_with_context": 16,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.032176},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 241,
"rounded_display_sold_count": 241,
"display_sold_count_text": "241",
"rounded_local_monthly_sold_count": 76,
"local_monthly_sold_count_text": "76",
"rounded_local_historical_sold_count": 241,
"local_historical_sold_count_text": "241",
"rounded_global_historical_sold_count": 241,
"global_historical_sold_count_text": "241"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 28309520298,
"shopid": 24843249,
"name": "Lifetime Udemy Premium",
"label_ids": [
700025282,
1718087960,
1428713,
1400285055,
2018619,
1049122,
1059152,
822059908662278,
822120592853526,
298933384,
700830032
],
"image": "id-11134207-7r98o-lzj8ns9fvc2m38",
"images": [
"id-11134207-7r98o-lzj8ns9fvc2m38"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1724946514,
"sold": 20,
"historical_sold": 285,
"liked": false,
"liked_count": 121,
"catid": 100642,
"brand": "",
"cmt_count": 77,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 700000000,
"price_min": 700000000,
"price_max": 700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.716049382716049,
"rating_count": [
81,
4,
1,
2,
0,
74
],
"rcount_with_context": 15,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.030455},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 285,
"rounded_display_sold_count": 285,
"display_sold_count_text": "285",
"rounded_local_monthly_sold_count": 20,
"local_monthly_sold_count_text": "20",
"rounded_local_historical_sold_count": 285,
"local_historical_sold_count_text": "285",
"rounded_global_historical_sold_count": 285,
"global_historical_sold_count_text": "285"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 22017441064,
"shopid": 24843249,
"name": "LIFETIME M / M.NZ PREMIUM",
"label_ids": [
822059908662278,
1059152,
1400285055,
700025282,
822120592853526,
1049122,
1428713,
1718087960,
2018619,
1015914,
700190087,
298933384,
700830032
],
"image": "id-11134207-7r991-lz7m4s87xbnp77",
"images": [
"id-11134207-7r991-lz7m4s87xbnp77"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1673261579,
"sold": 2,
"historical_sold": 1000,
"liked": false,
"liked_count": 432,
"catid": 100642,
"brand": "",
"cmt_count": 578,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2700000000,
"price_min": 2700000000,
"price_max": 2700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"Pro Lite (1TB 400GB)",
"Pro I (4TB)",
"Pro II (16TB)",
"Pro III (32TB)",
"Random (4TB ke atas)"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.825,
"rating_count": [
600,
16,
3,
11,
10,
560
],
"rcount_with_context": 133,
"rcount_with_image": 24
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.029696},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 21092865960,
"shopid": 24843249,
"name": "LIFETIME SCITE AI PREMIUM",
"label_ids": [
700025282,
1400285055,
1428713,
1718087960,
1049122,
1059152,
822059908662278,
822120592853526,
1015914,
700190087,
2018619,
298933384,
700810080
],
"image": "id-11134207-7r992-lldubjthhyzt1d",
"images": [
"id-11134207-7r992-lldubjthhyzt1d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1694108494,
"sold": 89,
"historical_sold": 7000,
"liked": false,
"liked_count": 793,
"catid": 100644,
"brand": "",
"cmt_count": 3267,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1500000000,
"price_min": 1500000000,
"price_max": 1500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.855646100116415,
"rating_count": [
3436,
51,
23,
39,
145,
3178
],
"rcount_with_context": 476,
"rcount_with_image": 139
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.029419},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 7000,
"rounded_display_sold_count": 7000,
"display_sold_count_text": "7RB+",
"rounded_local_monthly_sold_count": 89,
"local_monthly_sold_count_text": "89",
"rounded_local_historical_sold_count": 7000,
"local_historical_sold_count_text": "7RB+",
"rounded_global_historical_sold_count": 7000,
"global_historical_sold_count_text": "7RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 23448164194,
"shopid": 24843249,
"name": "Lifetimelinktree Premium Akun Lifetime 1-12 Bulan",
"label_ids": [
1059152,
1059154,
822059908662278,
1400285055,
700025282,
822120592853526,
1718087960,
1428713,
2018619,
1015914,
700190087,
700830032,
298933384
],
"image": "id-11134207-7qul7-lj7nzjkkvuzn6e",
"images": [
"id-11134207-7qul7-lj7nzjkkvuzn6e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1689375691,
"sold": 15,
"historical_sold": 492,
"liked": false,
"liked_count": 214,
"catid": 100642,
"brand": "",
"cmt_count": 158,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Durasi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.691358024691358,
"rating_count": [
162,
6,
1,
9,
5,
141
],
"rcount_with_context": 33,
"rcount_with_image": 7
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.029229},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 492,
"rounded_display_sold_count": 492,
"display_sold_count_text": "492",
"rounded_local_monthly_sold_count": 15,
"local_monthly_sold_count_text": "15",
"rounded_local_historical_sold_count": 492,
"local_historical_sold_count_text": "492",
"rounded_global_historical_sold_count": 492,
"global_historical_sold_count_text": "492"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 20484932244,
"shopid": 24843249,
"name": "PREMIUM QU1LLBOT LIFETIME",
"label_ids": [
700025282,
1059152,
1059154,
822059908662278,
1400285055,
822120592853526,
1718087960,
1428713,
2018619,
1015914,
700190087,
298933384
],
"image": "id-11134207-7r98u-lmjjr2c71h1o2e",
"images": [
"id-11134207-7r98u-lmjjr2c71h1o2e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1696632889,
"sold": 41,
"historical_sold": 2000,
"liked": false,
"liked_count": 272,
"catid": 100644,
"brand": "",
"cmt_count": 846,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.893103448275862,
"rating_count": [
870,
7,
2,
11,
37,
813
],
"rcount_with_context": 131,
"rcount_with_image": 45
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.028102},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 2000,
"rounded_display_sold_count": 2000,
"display_sold_count_text": "2RB+",
"rounded_local_monthly_sold_count": 41,
"local_monthly_sold_count_text": "41",
"rounded_local_historical_sold_count": 2000,
"local_historical_sold_count_text": "2RB+",
"rounded_global_historical_sold_count": 2000,
"global_historical_sold_count_text": "2RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 21082027990,
"shopid": 24843249,
"name": "Lifetime Ubersuggest Premium Dengan Akun Lifetime",
"label_ids": [
1059152,
1059154,
822059908662278,
1400285055,
700025282,
822120592853526,
1428713,
1718087960,
2018619,
1015914,
700190087,
298933384,
700830032
],
"image": "id-11134207-7qul4-ljeurkxgqet735",
"images": [
"id-11134207-7qul4-ljeurkxgqet735"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1689810630,
"sold": 24,
"historical_sold": 1000,
"liked": false,
"liked_count": 353,
"catid": 100642,
"brand": "",
"cmt_count": 609,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1400000000,
"price_min": 1400000000,
"price_max": 1400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.768488745980707,
"rating_count": [
622,
20,
4,
11,
30,
557
],
"rcount_with_context": 122,
"rcount_with_image": 24
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.027414},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 24,
"local_monthly_sold_count_text": "24",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 26660700709,
"shopid": 24843249,
"name": "Lifetime Kittl Premium Expert Dengan Akun Lifetime",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1718087960,
1428713,
1400285055,
2018619,
1015914,
700190087,
298933384,
700830032
],
"image": "id-11134207-7r990-lzyffe4avnby0d",
"images": [
"id-11134207-7r990-lzyffe4avnby0d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1725863589,
"sold": 16,
"historical_sold": 377,
"liked": false,
"liked_count": 78,
"catid": 100642,
"brand": "",
"cmt_count": 168,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1000000000,
"price_min": 1000000000,
"price_max": 1000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.690476190476191,
"rating_count": [
168,
11,
2,
0,
2,
153
],
"rcount_with_context": 29,
"rcount_with_image": 10
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.027076},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 377,
"rounded_display_sold_count": 377,
"display_sold_count_text": "377",
"rounded_local_monthly_sold_count": 16,
"local_monthly_sold_count_text": "16",
"rounded_local_historical_sold_count": 377,
"local_historical_sold_count_text": "377",
"rounded_global_historical_sold_count": 377,
"global_historical_sold_count_text": "377"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 29120163160,
"shopid": 24843249,
"name": "LIFETIME WIBUKU PREMIUM",
"label_ids": [
700025282,
1428713,
1718087960,
1059152,
1049122,
822059908662278,
822120592853526,
2018619,
1400285055,
298933384,
700830032
],
"image": "id-11134207-7rasd-m3kkw94z6vvyf3",
"images": [
"id-11134207-7rasd-m3kkw94z6vvyf3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1733745114,
"sold": 3,
"historical_sold": 157,
"liked": false,
"liked_count": 41,
"catid": 100642,
"brand": "",
"cmt_count": 60,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2500000000,
"price_min": 2500000000,
"price_max": 2500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.533333333333333,
"rating_count": [
60,
6,
0,
0,
4,
50
],
"rcount_with_context": 11,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.025277},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 157,
"rounded_display_sold_count": 157,
"display_sold_count_text": "157",
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_local_historical_sold_count": 157,
"local_historical_sold_count_text": "157",
"rounded_global_historical_sold_count": 157,
"global_historical_sold_count_text": "157"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 27575518296,
"shopid": 24843249,
"name": "LIFETIME EPIDEMIC SOUND PREMIUM DENGAN GARANSI 1-12 BULAN",
"label_ids": [
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
2018619,
1015914,
700190087,
1400285055,
700830032,
298933384
],
"image": "id-11134207-7rash-m5zjo94f0o7saa",
"images": [
"id-11134207-7rash-m5zjo94f0o7saa"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1739009599,
"sold": 36,
"historical_sold": 435,
"liked": false,
"liked_count": 59,
"catid": 100642,
"brand": "",
"cmt_count": 188,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2800000000,
"price_min": 2800000000,
"price_max": 2800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.925531914893617,
"rating_count": [
188,
3,
0,
1,
0,
184
],
"rcount_with_context": 18,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.025228},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 435,
"rounded_display_sold_count": 435,
"display_sold_count_text": "435",
"rounded_local_monthly_sold_count": 36,
"local_monthly_sold_count_text": "36",
"rounded_local_historical_sold_count": 435,
"local_historical_sold_count_text": "435",
"rounded_global_historical_sold_count": 435,
"global_historical_sold_count_text": "435"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 21890766369,
"shopid": 24843249,
"name": "Lifetimes Blinkist Premium Akun Lifetime Garansi 1-12 Bulan",
"label_ids": [
1059152,
822059908662278,
700025282,
1400285055,
822120592853526,
1428713,
1718087960,
1049122,
2018619,
1015914,
700190087,
298933384
],
"image": "id-11134207-7qul8-lj7nzjkkx9k373",
"images": [
"id-11134207-7qul8-lj7nzjkkx9k373"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1689377148,
"sold": 18,
"historical_sold": 534,
"liked": false,
"liked_count": 103,
"catid": 100644,
"brand": "",
"cmt_count": 206,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1000000000,
"price_min": 1000000000,
"price_max": 1000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Durasi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.928909952606635,
"rating_count": [
211,
3,
0,
0,
3,
205
],
"rcount_with_context": 43,
"rcount_with_image": 7
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.024871},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 534,
"rounded_display_sold_count": 534,
"display_sold_count_text": "534",
"rounded_local_monthly_sold_count": 18,
"local_monthly_sold_count_text": "18",
"rounded_local_historical_sold_count": 534,
"local_historical_sold_count_text": "534",
"rounded_global_historical_sold_count": 534,
"global_historical_sold_count_text": "534"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 25041955387,
"shopid": 24843249,
"name": "Lifetime Qobuz Premium",
"label_ids": [
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
2018619,
1015914,
700190087,
1400285055,
700830032
],
"image": "id-11134207-7rbk3-m6pxk5519nai7c",
"images": [
"id-11134207-7rbk3-m6pxk5519nai7c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1740604999,
"sold": 26,
"historical_sold": 282,
"liked": false,
"liked_count": 27,
"catid": 100642,
"brand": "",
"cmt_count": 143,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1400000000,
"price_min": 1400000000,
"price_max": 1400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.748251748251748,
"rating_count": [
143,
7,
0,
3,
2,
131
],
"rcount_with_context": 24,
"rcount_with_image": 7
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.024632},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 282,
"rounded_display_sold_count": 282,
"display_sold_count_text": "282",
"rounded_local_monthly_sold_count": 26,
"local_monthly_sold_count_text": "26",
"rounded_local_historical_sold_count": 282,
"local_historical_sold_count_text": "282",
"rounded_global_historical_sold_count": 282,
"global_historical_sold_count_text": "282"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 26478704140,
"shopid": 24843249,
"name": "LIFETIME DEEPSEEK AI PREMIUM",
"label_ids": [
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
2018619,
1015914,
700190087,
298933384,
700830032
],
"image": "id-11134207-7rbk4-m71hfbcv8z6y3e",
"images": [
"id-11134207-7rbk4-m71hfbcv8z6y3e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1741304077,
"sold": 25,
"historical_sold": 394,
"liked": false,
"liked_count": 142,
"catid": 100642,
"brand": "",
"cmt_count": 139,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 7000000000,
"price_min": 7000000000,
"price_max": 7000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.625899280575539,
"rating_count": [
139,
9,
1,
5,
3,
121
],
"rcount_with_context": 15,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.024567},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 394,
"rounded_display_sold_count": 394,
"display_sold_count_text": "394",
"rounded_local_monthly_sold_count": 25,
"local_monthly_sold_count_text": "25",
"rounded_local_historical_sold_count": 394,
"local_historical_sold_count_text": "394",
"rounded_global_historical_sold_count": 394,
"global_historical_sold_count_text": "394"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 18995587046,
"shopid": 24843249,
"name": "Lifetime Ellicit AI Premium Dengan Akun Lifetime",
"label_ids": [
700025282,
822059908662278,
1400285055,
1059152,
1059154,
822120592853526,
1718087960,
1428713,
2018619,
1015914,
700190087,
298933384
],
"image": "id-11134207-7r98x-loooqpbt55cq5a",
"images": [
"id-11134207-7r98x-loooqpbt55cq5a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1701303120,
"sold": 19,
"historical_sold": 735,
"liked": false,
"liked_count": 189,
"catid": 100644,
"brand": "",
"cmt_count": 300,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 4900000000,
"price_min": 4900000000,
"price_max": 4900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.851735015772871,
"rating_count": [
317,
6,
2,
4,
9,
296
],
"rcount_with_context": 45,
"rcount_with_image": 12
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.022823},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 735,
"rounded_display_sold_count": 735,
"display_sold_count_text": "735",
"rounded_local_monthly_sold_count": 19,
"local_monthly_sold_count_text": "19",
"rounded_local_historical_sold_count": 735,
"local_historical_sold_count_text": "735",
"rounded_global_historical_sold_count": 735,
"global_historical_sold_count_text": "735"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 21991109642,
"shopid": 24843249,
"name": "Lifetime Epidemic Sound Premium Dengan Akun Lifetime",
"label_ids": [
1400285055,
700025282,
1718087960,
1428713,
1049122,
1059152,
822059908662278,
822120592853526,
2018619,
298933384
],
"image": "id-11134207-7qul9-ljj3a8cc9ief2f",
"images": [
"id-11134207-7qul9-ljj3a8cc9ief2f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1690067101,
"sold": 7,
"historical_sold": 1000,
"liked": false,
"liked_count": 238,
"catid": 100642,
"brand": "",
"cmt_count": 547,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1000000000,
"price_min": 1000000000,
"price_max": 1000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.934931506849315,
"rating_count": [
584,
4,
1,
4,
11,
564
],
"rcount_with_context": 83,
"rcount_with_image": 19
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.022724},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 7,
"local_monthly_sold_count_text": "7",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100642,
100773
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24820946017,
"shopid": 24843249,
"name": "Lifetimes Yousician Premium Dengan Panduan Gratis",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1718087960,
1428713,
1400285055,
2018619,
1015914,
700190087,
298933384
],
"image": "id-11134207-7r990-ltc0rbhddc951b",
"images": [
"id-11134207-7r990-ltc0rbhddc951b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1711432223,
"sold": 11,
"historical_sold": 346,
"liked": false,
"liked_count": 70,
"catid": 100644,
"brand": "",
"cmt_count": 146,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1000000000,
"price_min": 1000000000,
"price_max": 1000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.879746835443038,
"rating_count": [
158,
3,
0,
1,
5,
149
],
"rcount_with_context": 24,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.021141},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 346,
"rounded_display_sold_count": 346,
"display_sold_count_text": "346",
"rounded_local_monthly_sold_count": 11,
"local_monthly_sold_count_text": "11",
"rounded_local_historical_sold_count": 346,
"local_historical_sold_count_text": "346",
"rounded_global_historical_sold_count": 346,
"global_historical_sold_count_text": "346"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 23312235800,
"shopid": 24843249,
"name": "Lifetimee Scribd Premium Account | Unlock Download Dokumen",
"label_ids": [
1400285055,
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1718087960,
1428713,
2018619,
1015914,
700190087
],
"image": "sg-11134201-22120-3qhji76qn8kvda",
"images": [
"sg-11134201-22120-3qhji76qn8kvda"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1671318719,
"sold": 10,
"historical_sold": 931,
"liked": false,
"liked_count": 183,
"catid": 100642,
"brand": "",
"cmt_count": 476,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"Download Dokumen",
"Premium 1 Bulan",
"Premium 3 Bulan",
"Premium 6 Bulan",
"Premium 12 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.84394250513347,
"rating_count": [
487,
9,
5,
7,
11,
455
],
"rcount_with_context": 120,
"rcount_with_image": 30
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.020082},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 931,
"rounded_display_sold_count": 931,
"display_sold_count_text": "931",
"rounded_local_monthly_sold_count": 10,
"local_monthly_sold_count_text": "10",
"rounded_local_historical_sold_count": 931,
"local_historical_sold_count_text": "931",
"rounded_global_historical_sold_count": 931,
"global_historical_sold_count_text": "931"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 22435401531,
"shopid": 24843249,
"name": "Lifetimme Nb4 League Pass Premium Dengan Panduan Gratis",
"label_ids": [
1400285055,
700025282,
1015914,
700190087,
1428713,
1718087960,
1049122,
1059152,
822059908662278,
822120592853526,
2018619,
298933384
],
"image": "id-11134201-7qula-lex8g3mrt4zea2",
"images": [
"id-11134201-7qula-lex8g3mrt4zea2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1680027310,
"sold": 0,
"historical_sold": 1000,
"liked": false,
"liked_count": 315,
"catid": 100642,
"brand": "",
"cmt_count": 747,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.800796812749004,
"rating_count": [
753,
13,
13,
14,
31,
682
],
"rcount_with_context": 94,
"rcount_with_image": 24
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.018990},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100642,
100773
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 20190777492,
"shopid": 24843249,
"name": "LIFETIME SMALLPDF PREMIUM",
"label_ids": [
1059152,
1059154,
822059908662278,
1400285055,
700025282,
822120592853526,
1428713,
1718087960,
2018619,
1015914,
700190087,
298933384
],
"image": "id-11134207-7qula-lj7nzjkkyo4j73",
"images": [
"id-11134207-7qula-lj7nzjkkyo4j73"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1689378247,
"sold": 21,
"historical_sold": 956,
"liked": false,
"liked_count": 127,
"catid": 100644,
"brand": "",
"cmt_count": 427,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1700000000,
"price_min": 1700000000,
"price_max": 1700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Durasi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.830663615560641,
"rating_count": [
437,
9,
4,
6,
14,
404
],
"rcount_with_context": 63,
"rcount_with_image": 12
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.018561},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 956,
"rounded_display_sold_count": 956,
"display_sold_count_text": "956",
"rounded_local_monthly_sold_count": 21,
"local_monthly_sold_count_text": "21",
"rounded_local_historical_sold_count": 956,
"local_historical_sold_count_text": "956",
"rounded_global_historical_sold_count": 956,
"global_historical_sold_count_text": "956"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24274602905,
"shopid": 24843249,
"name": "Lifetime ChatPDF Premium Akun Lifetime Garansi 1-12 Bulan",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1400285055,
1428713,
1718087960,
2018619,
298933384,
700810080
],
"image": "id-11134207-7r98v-lu70311td3ba75",
"images": [
"id-11134207-7r98v-lu70311td3ba75"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1713307207,
"sold": 14,
"historical_sold": 1000,
"liked": false,
"liked_count": 111,
"catid": 100644,
"brand": "",
"cmt_count": 401,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8464912280701755,
"rating_count": [
456,
8,
5,
5,
13,
425
],
"rcount_with_context": 73,
"rcount_with_image": 24
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.017974},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 14,
"local_monthly_sold_count_text": "14",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24415599488,
"shopid": 24843249,
"name": "Lifetime Leonardo AI Premium Unlimited Akun Seumur Hidup",
"label_ids": [
700025282,
1049122,
1059152,
822059908662278,
822120592853526,
1400285055,
1718087960,
1428713,
1015914,
700190087,
2018619,
298933384
],
"image": "id-11134207-7r98z-ls9gbvpsvvt96e",
"images": [
"id-11134207-7r98z-ls9gbvpsvvt96e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1709097432,
"sold": 2,
"historical_sold": 259,
"liked": false,
"liked_count": 312,
"catid": 100644,
"brand": "",
"cmt_count": 92,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3000000000,
"price_min": 3000000000,
"price_max": 3000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.383838383838384,
"rating_count": [
99,
14,
1,
0,
2,
82
],
"rcount_with_context": 27,
"rcount_with_image": 8
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.017429},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 259,
"rounded_display_sold_count": 259,
"display_sold_count_text": "259",
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_local_historical_sold_count": 259,
"local_historical_sold_count_text": "259",
"rounded_global_historical_sold_count": 259,
"global_historical_sold_count_text": "259"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 22782519277,
"shopid": 24843249,
"name": "Lifetime Gamma AI Premium Unlimited Dengan Panduan Gratis",
"label_ids": [
700025282,
1059152,
1059154,
822059908662278,
822120592853526,
1400285055,
1718087960,
1428713,
2018619,
1015914,
700190087,
298933384,
700810080
],
"image": "id-11134207-7r98t-lmjjr2c74a6k8b",
"images": [
"id-11134207-7r98t-lmjjr2c74a6k8b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1696634440,
"sold": 20,
"historical_sold": 651,
"liked": false,
"liked_count": 102,
"catid": 100644,
"brand": "",
"cmt_count": 310,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.828220858895706,
"rating_count": [
326,
9,
2,
3,
8,
304
],
"rcount_with_context": 38,
"rcount_with_image": 6
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.017107},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 651,
"rounded_display_sold_count": 651,
"display_sold_count_text": "651",
"rounded_local_monthly_sold_count": 20,
"local_monthly_sold_count_text": "20",
"rounded_local_historical_sold_count": 651,
"local_historical_sold_count_text": "651",
"rounded_global_historical_sold_count": 651,
"global_historical_sold_count_text": "651"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 57900928199,
"shopid": 24843249,
"name": "LIFETIME SORA AI PREMIUM",
"label_ids": [
2018619,
700025282,
1428713,
1718087960,
1059152,
1049122,
822059908662278,
822120592853526,
298933384,
1015914,
700190087
],
"image": "id-11134207-8224t-mgqcaruvjuh568",
"images": [
"id-11134207-8224t-mgqcaruvjuh568"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1762423590,
"sold": 12,
"historical_sold": 36,
"liked": false,
"liked_count": 51,
"catid": 100642,
"brand": "",
"cmt_count": 12,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.833333333333333,
"rating_count": [
12,
0,
0,
1,
0,
11
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.015792},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 36,
"rounded_display_sold_count": 36,
"display_sold_count_text": "36",
"rounded_local_monthly_sold_count": 12,
"local_monthly_sold_count_text": "12",
"rounded_local_historical_sold_count": 36,
"local_historical_sold_count_text": "36",
"rounded_global_historical_sold_count": 36,
"global_historical_sold_count_text": "36"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 25663467883,
"shopid": 24843249,
"name": "Lifetime Academia.Edu Premium Dengan Garansi Lifetime",
"label_ids": [
700025282,
1059152,
1059154,
822059908662278,
822120592853526,
1400285055,
1428713,
1718087960,
2018619,
1015914,
700190087,
298933384
],
"image": "id-11134207-7r98w-lrpln5fekeplb5",
"images": [
"id-11134207-7r98w-lrpln5fekeplb5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1707895731,
"sold": 14,
"historical_sold": 674,
"liked": false,
"liked_count": 161,
"catid": 100644,
"brand": "",
"cmt_count": 258,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 600000000,
"price_min": 600000000,
"price_max": 600000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.944237918215613,
"rating_count": [
269,
2,
1,
1,
2,
263
],
"rcount_with_context": 38,
"rcount_with_image": 12
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.015516},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 674,
"rounded_display_sold_count": 674,
"display_sold_count_text": "674",
"rounded_local_monthly_sold_count": 14,
"local_monthly_sold_count_text": "14",
"rounded_local_historical_sold_count": 674,
"local_historical_sold_count_text": "674",
"rounded_global_historical_sold_count": 674,
"global_historical_sold_count_text": "674"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 28391552093,
"shopid": 24843249,
"name": "LIFETIME MONICA AI PREMIUM",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
298933384
],
"image": "id-11134207-81ztn-meodri0br0u9cc",
"images": [
"id-11134207-81ztn-meodri0br0u9cc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1757944390,
"sold": 4,
"historical_sold": 31,
"liked": false,
"liked_count": 6,
"catid": 100642,
"brand": "",
"cmt_count": 11,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 800000000,
"price_min": 800000000,
"price_max": 800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.636363636363637,
"rating_count": [
11,
1,
0,
0,
0,
10
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.015279},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 31,
"rounded_display_sold_count": 31,
"display_sold_count_text": "31",
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_local_historical_sold_count": 31,
"local_historical_sold_count_text": "31",
"rounded_global_historical_sold_count": 31,
"global_historical_sold_count_text": "31"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 23546367727,
"shopid": 24843249,
"name": "Lifetimes Prezi Premium Akun Lifetime Garansi 1-12 Bulan",
"label_ids": [
1059152,
1059154,
822059908662278,
700025282,
1400285055,
822120592853526,
1428713,
1718087960,
2018619,
298933384
],
"image": "id-11134207-7qul3-lif3kl9ms80g6c",
"images": [
"id-11134207-7qul3-lif3kl9ms80g6c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1687646194,
"sold": 21,
"historical_sold": 565,
"liked": false,
"liked_count": 72,
"catid": 100644,
"brand": "",
"cmt_count": 267,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1400000000,
"price_min": 1400000000,
"price_max": 1400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.825454545454545,
"rating_count": [
275,
4,
6,
2,
10,
253
],
"rcount_with_context": 25,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.014435},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 565,
"rounded_display_sold_count": 565,
"display_sold_count_text": "565",
"rounded_local_monthly_sold_count": 21,
"local_monthly_sold_count_text": "21",
"rounded_local_historical_sold_count": 565,
"local_historical_sold_count_text": "565",
"rounded_global_historical_sold_count": 565,
"global_historical_sold_count_text": "565"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 49902348029,
"shopid": 24843249,
"name": "Lifetime Lingokids Premium",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
298933384
],
"image": "id-11134207-8224q-mhnp3nywi4n7d2",
"images": [
"id-11134207-8224q-mhnp3nywi4n7d2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764441842,
"sold": 10,
"historical_sold": 13,
"liked": false,
"liked_count": 6,
"catid": 100642,
"brand": "",
"cmt_count": 9,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2000000000,
"price_min": 2000000000,
"price_max": 2000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.555555555555555,
"rating_count": [
9,
1,
0,
0,
0,
8
],
"rcount_with_context": 2,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.013980},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 13,
"rounded_display_sold_count": 13,
"display_sold_count_text": "13",
"rounded_local_monthly_sold_count": 10,
"local_monthly_sold_count_text": "10",
"rounded_local_historical_sold_count": 13,
"local_historical_sold_count_text": "13",
"rounded_global_historical_sold_count": 13,
"global_historical_sold_count_text": "13"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 48103617453,
"shopid": 24843249,
"name": "Lifetime Tunee AI Premium",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
1718596,
298933384
],
"image": "id-11134207-8224w-min1lj5vyxace5",
"images": [
"id-11134207-8224w-min1lj5vyxace5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766586907,
"sold": 2,
"historical_sold": 2,
"liked": false,
"liked_count": 3,
"catid": 100642,
"brand": "",
"cmt_count": 1,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 4000000000,
"price_min": 4000000000,
"price_max": 4000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"2 Bulan",
"3 Bulan",
"6 Bulan",
"8 Bulan",
"10 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.013411},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 2,
"rounded_display_sold_count": 2,
"display_sold_count_text": "2",
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_local_historical_sold_count": 2,
"local_historical_sold_count_text": "2",
"rounded_global_historical_sold_count": 2,
"global_historical_sold_count_text": "2"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 42562554338,
"shopid": 24843249,
"name": "Lifetime Pissat Premium Dengan Akun Lifetime Dan Garansi 1-12 Bulan",
"label_ids": [
2018619,
700025282,
1428713,
1718087960,
1049122,
1059152,
822059908662278,
822120592853526,
298933384,
1400285055
],
"image": "id-11134207-7ra0s-mdcwcu9ga9nn11",
"images": [
"id-11134207-7ra0s-mdcwcu9ga9nn11"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1755069747,
"sold": 6,
"historical_sold": 30,
"liked": false,
"liked_count": 5,
"catid": 100642,
"brand": "",
"cmt_count": 19,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1400000000,
"price_min": 1400000000,
"price_max": 1400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.631578947368421,
"rating_count": [
19,
1,
0,
0,
3,
15
],
"rcount_with_context": 3,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.013251},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 30,
"rounded_display_sold_count": 30,
"display_sold_count_text": "30",
"rounded_local_monthly_sold_count": 6,
"local_monthly_sold_count_text": "6",
"rounded_local_historical_sold_count": 30,
"local_historical_sold_count_text": "30",
"rounded_global_historical_sold_count": 30,
"global_historical_sold_count_text": "30"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 21490569881,
"shopid": 24843249,
"name": "LIFETIME TENNIS TV PREMIUM",
"label_ids": [
822059908662278,
1059152,
1059154,
1400285055,
700025282,
822120592853526,
1428713,
1718087960,
2018619,
1015914,
700190087,
298933384
],
"image": "id-11134207-7qul2-liz1yztcze77f5",
"images": [
"id-11134207-7qul2-liz1yztcze77f5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1688855981,
"sold": 6,
"historical_sold": 369,
"liked": false,
"liked_count": 34,
"catid": 100644,
"brand": "",
"cmt_count": 150,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 4500000000,
"price_min": 4500000000,
"price_max": 4500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Durasi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.910256410256411,
"rating_count": [
156,
3,
0,
0,
2,
151
],
"rcount_with_context": 32,
"rcount_with_image": 8
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.012111},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 369,
"rounded_display_sold_count": 369,
"display_sold_count_text": "369",
"rounded_local_monthly_sold_count": 6,
"local_monthly_sold_count_text": "6",
"rounded_local_historical_sold_count": 369,
"local_historical_sold_count_text": "369",
"rounded_global_historical_sold_count": 369,
"global_historical_sold_count_text": "369"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24209192612,
"shopid": 24843249,
"name": "LIFETIME CODECADEMY PRO PREMIUM",
"label_ids": [
700025282,
1059152,
1059154,
822059908662278,
822120592853526,
1400285055,
1718087960,
1428713,
2018619,
1015914,
700190087,
298933384,
700810080
],
"image": "id-11134207-7r98p-lqn8s2ldsggg92",
"images": [
"id-11134207-7r98p-lqn8s2ldsggg92"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1705573767,
"sold": 5,
"historical_sold": 526,
"liked": false,
"liked_count": 239,
"catid": 100644,
"brand": "",
"cmt_count": 205,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2000000000,
"price_min": 2000000000,
"price_max": 2000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.941704035874439,
"rating_count": [
223,
2,
0,
0,
5,
216
],
"rcount_with_context": 36,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.011890},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 526,
"rounded_display_sold_count": 526,
"display_sold_count_text": "526",
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_local_historical_sold_count": 526,
"local_historical_sold_count_text": "526",
"rounded_global_historical_sold_count": 526,
"global_historical_sold_count_text": "526"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 22361874379,
"shopid": 24843249,
"name": "LIFETIME Tome.App AI Premium Dengan Panduan Gratis",
"label_ids": [
700025282,
822059908662278,
1059152,
1059154,
822120592853526,
1428713,
1718087960,
2018619,
298933384
],
"image": "id-11134207-7r98w-loooqpbt7yhmb0",
"images": [
"id-11134207-7r98w-loooqpbt7yhmb0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1701303931,
"sold": 3,
"historical_sold": 213,
"liked": false,
"liked_count": 65,
"catid": 100644,
"brand": "",
"cmt_count": 90,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.709677419354839,
"rating_count": [
93,
2,
2,
3,
7,
79
],
"rcount_with_context": 10,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.011700},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 213,
"rounded_display_sold_count": 213,
"display_sold_count_text": "213",
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_local_historical_sold_count": 213,
"local_historical_sold_count_text": "213",
"rounded_global_historical_sold_count": 213,
"global_historical_sold_count_text": "213"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 16299547121,
"shopid": 24843249,
"name": "Lifetime Jenni.ai Chatpdf Premium Akun Lifetime",
"label_ids": [
700025282,
822059908662278,
1400285055,
1059152,
1059154,
822120592853526,
1718087960,
1428713,
2018619,
1015914,
700190087,
298933384
],
"image": "id-11134207-7r98w-lo71mrlaxt7od4",
"images": [
"id-11134207-7r98w-lo71mrlaxt7od4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1700254451,
"sold": 17,
"historical_sold": 1000,
"liked": false,
"liked_count": 255,
"catid": 100644,
"brand": "",
"cmt_count": 685,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2500000000,
"price_min": 2500000000,
"price_max": 2500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.891483516483516,
"rating_count": [
728,
6,
2,
12,
25,
683
],
"rcount_with_context": 128,
"rcount_with_image": 25
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.011425},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 17,
"local_monthly_sold_count_text": "17",
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 25520945467,
"shopid": 24843249,
"name": "LIFETIME PIXLR PREMIUM",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1400285055,
1718087960,
1428713,
2018619,
1015914,
700190087
],
"image": "id-11134207-7r98z-ltc0rbhdbxop31",
"images": [
"id-11134207-7r98z-ltc0rbhdbxop31"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1711431880,
"sold": 3,
"historical_sold": 133,
"liked": false,
"liked_count": 29,
"catid": 100644,
"brand": "",
"cmt_count": 56,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2500000000,
"price_min": 2500000000,
"price_max": 2500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.655737704918033,
"rating_count": [
61,
5,
0,
0,
1,
55
],
"rcount_with_context": 10,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.011181},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 133,
"rounded_display_sold_count": 133,
"display_sold_count_text": "133",
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_local_historical_sold_count": 133,
"local_historical_sold_count_text": "133",
"rounded_global_historical_sold_count": 133,
"global_historical_sold_count_text": "133"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 26513436147,
"shopid": 24843249,
"name": "Lifetime WWE Network Premium Akun Lifetime Garansi 1-12 Bulan",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1718087960,
1428713,
1400285055,
2018619,
298933384
],
"image": "id-11134207-7rasi-m12olcu7offs52",
"images": [
"id-11134207-7rasi-m12olcu7offs52"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1728301940,
"sold": 1,
"historical_sold": 76,
"liked": false,
"liked_count": 13,
"catid": 100642,
"brand": "",
"cmt_count": 35,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.742857142857143,
"rating_count": [
35,
1,
1,
1,
0,
32
],
"rcount_with_context": 5,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.010133},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 76,
"rounded_display_sold_count": 76,
"display_sold_count_text": "76",
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_local_historical_sold_count": 76,
"local_historical_sold_count_text": "76",
"rounded_global_historical_sold_count": 76,
"global_historical_sold_count_text": "76"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 53302725639,
"shopid": 24843249,
"name": "Lifetime 20 Kali Translate Premium",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
298933384
],
"image": "id-11134207-8224s-mhynyf5pklqd5e",
"images": [
"id-11134207-8224s-mhynyf5pklqd5e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765104138,
"sold": 9,
"historical_sold": 9,
"liked": false,
"liked_count": 5,
"catid": 100642,
"brand": "",
"cmt_count": 6,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 700000000,
"price_min": 700000000,
"price_max": 700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.333333333333333,
"rating_count": [
6,
1,
0,
0,
0,
5
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.009370},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 9,
"rounded_display_sold_count": 9,
"display_sold_count_text": "9",
"rounded_local_monthly_sold_count": 9,
"local_monthly_sold_count_text": "9",
"rounded_local_historical_sold_count": 9,
"local_historical_sold_count_text": "9",
"rounded_global_historical_sold_count": 9,
"global_historical_sold_count_text": "9"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24987966350,
"shopid": 24843249,
"name": "Lifetime MyFitnessPal Premium",
"label_ids": [
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
2018619,
1400285055,
298933384
],
"image": "id-11134207-7rase-m26xlw4gbexv4d",
"images": [
"id-11134207-7rase-m26xlw4gbexv4d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730737480,
"sold": 10,
"historical_sold": 60,
"liked": false,
"liked_count": 18,
"catid": 100644,
"brand": "",
"cmt_count": 20,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 7000000000,
"price_min": 7000000000,
"price_max": 7000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.55,
"rating_count": [
20,
1,
0,
2,
1,
16
],
"rcount_with_context": 4,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.009164},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 60,
"rounded_display_sold_count": 60,
"display_sold_count_text": "60",
"rounded_local_monthly_sold_count": 10,
"local_monthly_sold_count_text": "10",
"rounded_local_historical_sold_count": 60,
"local_historical_sold_count_text": "60",
"rounded_global_historical_sold_count": 60,
"global_historical_sold_count_text": "60"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 25124593596,
"shopid": 24843249,
"name": "Lifetime Paperpal Premium Dengan Akun Dan Garansi",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1400285055,
1718087960,
1428713,
2018619,
298933384,
700810080
],
"image": "id-11134207-7r990-lu70311thb0mfd",
"images": [
"id-11134207-7r990-lu70311thb0mfd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1713308078,
"sold": 8,
"historical_sold": 322,
"liked": false,
"liked_count": 29,
"catid": 100644,
"brand": "",
"cmt_count": 154,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 800000000,
"price_min": 800000000,
"price_max": 800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.904761904761905,
"rating_count": [
168,
3,
0,
0,
4,
161
],
"rcount_with_context": 30,
"rcount_with_image": 6
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.008960},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 322,
"rounded_display_sold_count": 322,
"display_sold_count_text": "322",
"rounded_local_monthly_sold_count": 8,
"local_monthly_sold_count_text": "8",
"rounded_local_historical_sold_count": 322,
"local_historical_sold_count_text": "322",
"rounded_global_historical_sold_count": 322,
"global_historical_sold_count_text": "322"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 28182110347,
"shopid": 24843249,
"name": "Lifetimes Dzine Ai Premium Creator Dengan Panduan Gratis",
"label_ids": [
2018619,
700025282,
1428713,
1718087960,
1059152,
1049122,
822059908662278,
822120592853526,
1015914,
700190087,
298933384
],
"image": "id-11134207-7rbk2-m874aneqyt4dae",
"images": [
"id-11134207-7rbk2-m874aneqyt4dae"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1743824745,
"sold": 0,
"historical_sold": 41,
"liked": false,
"liked_count": 17,
"catid": 100642,
"brand": "",
"cmt_count": 21,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.333333333333333,
"rating_count": [
21,
2,
1,
1,
1,
16
],
"rcount_with_context": 5,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.007308},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 41,
"rounded_display_sold_count": 41,
"display_sold_count_text": "41",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 41,
"local_historical_sold_count_text": "41",
"rounded_global_historical_sold_count": 41,
"global_historical_sold_count_text": "41"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24608812531,
"shopid": 24843249,
"name": "LIFETIME STUDOCU PREMIUM",
"label_ids": [
700025282,
822059908662278,
1059152,
1059154,
822120592853526,
1400285055,
1428713,
1718087960,
2018619,
298933384
],
"image": "id-11134207-7r98u-lqkv661bhnnq25",
"images": [
"id-11134207-7r98u-lqkv661bhnnq25"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1705429119,
"sold": 6,
"historical_sold": 284,
"liked": false,
"liked_count": 49,
"catid": 100644,
"brand": "",
"cmt_count": 100,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1400000000,
"price_min": 1400000000,
"price_max": 1400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.941747572815534,
"rating_count": [
103,
1,
0,
0,
2,
100
],
"rcount_with_context": 10,
"rcount_with_image": 4
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.007280},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 284,
"rounded_display_sold_count": 284,
"display_sold_count_text": "284",
"rounded_local_monthly_sold_count": 6,
"local_monthly_sold_count_text": "6",
"rounded_local_historical_sold_count": 284,
"local_historical_sold_count_text": "284",
"rounded_global_historical_sold_count": 284,
"global_historical_sold_count_text": "284"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 27259515769,
"shopid": 24843249,
"name": "Lifetime KooBits Premium Akun Dan Garansi 1-12 Bulan",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1718087960,
1428713,
1400285055,
2018619,
700830032,
298933384
],
"image": "id-11134207-7r98u-lzj8ns9ftxi691",
"images": [
"id-11134207-7r98u-lzj8ns9ftxi691"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1724946020,
"sold": 11,
"historical_sold": 161,
"liked": false,
"liked_count": 23,
"catid": 100642,
"brand": "",
"cmt_count": 35,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.864864864864865,
"rating_count": [
37,
1,
0,
0,
1,
35
],
"rcount_with_context": 5,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.007219},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 161,
"rounded_display_sold_count": 161,
"display_sold_count_text": "161",
"rounded_local_monthly_sold_count": 11,
"local_monthly_sold_count_text": "11",
"rounded_local_historical_sold_count": 161,
"local_historical_sold_count_text": "161",
"rounded_global_historical_sold_count": 161,
"global_historical_sold_count_text": "161"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 27588872906,
"shopid": 24843249,
"name": "Lifetime Miro Premium Dengan Akun Dan Garansi",
"label_ids": [
1428713,
1718087960,
2018619,
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1015914,
700190087,
298933384
],
"image": "id-11134207-7ra0s-mcf6sey8bq741a",
"images": [
"id-11134207-7ra0s-mcf6sey8bq741a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1753033650,
"sold": 6,
"historical_sold": 30,
"liked": false,
"liked_count": 7,
"catid": 100642,
"brand": "",
"cmt_count": 7,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.857142857142857,
"rating_count": [
7,
0,
0,
0,
1,
6
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.007136},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 30,
"rounded_display_sold_count": 30,
"display_sold_count_text": "30",
"rounded_local_monthly_sold_count": 6,
"local_monthly_sold_count_text": "6",
"rounded_local_historical_sold_count": 30,
"local_historical_sold_count_text": "30",
"rounded_global_historical_sold_count": 30,
"global_historical_sold_count_text": "30"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 16495977981,
"shopid": 24843249,
"name": "LIFETIME HOOTSUITE PREMIUM",
"label_ids": [
1059152,
1059154,
822059908662278,
700025282,
822120592853526,
1400285055,
1428713,
1718087960,
2018619,
1015914,
700190087,
298933384
],
"image": "id-11134207-7r98y-lldubjthgkfd52",
"images": [
"id-11134207-7r98y-lldubjthgkfd52"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1694108159,
"sold": 5,
"historical_sold": 321,
"liked": false,
"liked_count": 127,
"catid": 100644,
"brand": "",
"cmt_count": 89,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1200000000,
"price_min": 1200000000,
"price_max": 1200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime",
"Tip Untuk Seller"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.90625,
"rating_count": [
96,
1,
0,
2,
1,
92
],
"rcount_with_context": 18,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.006786},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 321,
"rounded_display_sold_count": 321,
"display_sold_count_text": "321",
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_local_historical_sold_count": 321,
"local_historical_sold_count_text": "321",
"rounded_global_historical_sold_count": 321,
"global_historical_sold_count_text": "321"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24963527284,
"shopid": 24843249,
"name": "LIFETIME QUIZIZZ PREMIUM",
"label_ids": [
700025282,
1059152,
1059154,
822059908662278,
1400285055,
822120592853526,
1428713,
1718087960,
2018619,
298933384
],
"image": "id-11134207-7r98u-lrpln5fen7uh6c",
"images": [
"id-11134207-7r98u-lrpln5fen7uh6c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1707930542,
"sold": 9,
"historical_sold": 315,
"liked": false,
"liked_count": 75,
"catid": 100644,
"brand": "",
"cmt_count": 147,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 400000000,
"price_min": 400000000,
"price_max": 400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.868421052631579,
"rating_count": [
152,
2,
1,
1,
7,
141
],
"rcount_with_context": 19,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.006693},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 315,
"rounded_display_sold_count": 315,
"display_sold_count_text": "315",
"rounded_local_monthly_sold_count": 9,
"local_monthly_sold_count_text": "9",
"rounded_local_historical_sold_count": 315,
"local_historical_sold_count_text": "315",
"rounded_global_historical_sold_count": 315,
"global_historical_sold_count_text": "315"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 52803085660,
"shopid": 24843249,
"name": "LIFETIME KRIIPIK PREMIUM",
"label_ids": [
2018619,
700025282,
1428713,
1718087960,
1059152,
1049122,
822059908662278,
822120592853526,
1718596
],
"image": "id-11134207-8224v-mi98j5s90irk63",
"images": [
"id-11134207-8224v-mi98j5s90irk63"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765743845,
"sold": 5,
"historical_sold": 5,
"liked": false,
"liked_count": 0,
"catid": 100642,
"brand": "",
"cmt_count": 3,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.006004},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 5,
"rounded_display_sold_count": 5,
"display_sold_count_text": "5",
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_local_historical_sold_count": 5,
"local_historical_sold_count_text": "5",
"rounded_global_historical_sold_count": 5,
"global_historical_sold_count_text": "5"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24913594603,
"shopid": 24843249,
"name": "Lifetime Numerade Premium Akun Per Device",
"label_ids": [
700025282,
1059154,
1059152,
822059908662278,
1400285055,
822120592853526,
1718087960,
1428713,
2018619,
298933384
],
"image": "id-11134207-7r98z-lrrhak1hcj0p06",
"images": [
"id-11134207-7r98z-lrrhak1hcj0p06"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1708010270,
"sold": 1,
"historical_sold": 393,
"liked": false,
"liked_count": 38,
"catid": 100644,
"brand": "",
"cmt_count": 101,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 200000000,
"price_min": 200000000,
"price_max": 200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.839622641509434,
"rating_count": [
106,
2,
0,
2,
5,
97
],
"rcount_with_context": 9,
"rcount_with_image": 4
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.005446},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 393,
"rounded_display_sold_count": 393,
"display_sold_count_text": "393",
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_local_historical_sold_count": 393,
"local_historical_sold_count_text": "393",
"rounded_global_historical_sold_count": 393,
"global_historical_sold_count_text": "393"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 26138872673,
"shopid": 24843249,
"name": "Lifetime Scholarcy Premium Dengan Akun Lifetime",
"label_ids": [
1428713,
1718087960,
2018619,
700025282,
1049122,
1059152,
822059908662278,
822120592853526,
298933384
],
"image": "id-11134207-7ra0k-mcf6sey88x28af",
"images": [
"id-11134207-7ra0k-mcf6sey88x28af"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1753029571,
"sold": 5,
"historical_sold": 20,
"liked": false,
"liked_count": 6,
"catid": 100642,
"brand": "",
"cmt_count": 5,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.004183},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 20,
"rounded_display_sold_count": 20,
"display_sold_count_text": "20",
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_local_historical_sold_count": 20,
"local_historical_sold_count_text": "20",
"rounded_global_historical_sold_count": 20,
"global_historical_sold_count_text": "20"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 25969107193,
"shopid": 24843249,
"name": "Kahoot!+ For Teachers Premium Lifetime 1-12 Bulan",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1400285055,
1428713,
1718087960,
2018619,
298933384
],
"image": "id-11134207-7r98o-lsvizj6sud1910",
"images": [
"id-11134207-7r98o-lsvizj6sud1910"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1710435025,
"sold": 4,
"historical_sold": 175,
"liked": false,
"liked_count": 37,
"catid": 100644,
"brand": "",
"cmt_count": 67,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2000000000,
"price_min": 2000000000,
"price_max": 2000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.626666666666667,
"rating_count": [
75,
3,
3,
3,
1,
65
],
"rcount_with_context": 12,
"rcount_with_image": 4
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.004117},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 175,
"rounded_display_sold_count": 175,
"display_sold_count_text": "175",
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_local_historical_sold_count": 175,
"local_historical_sold_count_text": "175",
"rounded_global_historical_sold_count": 175,
"global_historical_sold_count_text": "175"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 25932865522,
"shopid": 24843249,
"name": "F1 TV PRO FULL GARANSI PREMIUME",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1400285055,
1015914,
700190087,
1428713,
1718087960,
2018619,
298933384
],
"image": "id-11134207-7r992-lx3n3yo9gzff5a",
"images": [
"id-11134207-7r992-lx3n3yo9gzff5a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1719641252,
"sold": 47,
"historical_sold": 815,
"liked": false,
"liked_count": 538,
"catid": 100644,
"brand": "",
"cmt_count": 289,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 10500000000,
"price_min": 10500000000,
"price_max": 10500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.760135135135135,
"rating_count": [
296,
8,
3,
10,
10,
265
],
"rcount_with_context": 41,
"rcount_with_image": 16
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.003793},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 815,
"rounded_display_sold_count": 815,
"display_sold_count_text": "815",
"rounded_local_monthly_sold_count": 47,
"local_monthly_sold_count_text": "47",
"rounded_local_historical_sold_count": 815,
"local_historical_sold_count_text": "815",
"rounded_global_historical_sold_count": 815,
"global_historical_sold_count_text": "815"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 40358606922,
"shopid": 24843249,
"name": "LIFETIME MEG4 / MEG4.NZ PREMIUM",
"label_ids": [
2018619,
700025282,
1428713,
1718087960,
1059152,
1049122,
822059908662278,
822120592853526,
298933384,
1015914,
700190087
],
"image": "id-11134207-7ra0g-mc7wwec1m99c61",
"images": [
"id-11134207-7ra0g-mc7wwec1m99c61"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1752588518,
"sold": 1,
"historical_sold": 42,
"liked": false,
"liked_count": 7,
"catid": 100644,
"brand": "",
"cmt_count": 23,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 500000000,
"price_min": 500000000,
"price_max": 500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"TER4BOX",
"MEG4"
],
"type": 0
},
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.956521739130435,
"rating_count": [
23,
0,
0,
0,
1,
22
],
"rcount_with_context": 3,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.002958},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 42,
"rounded_display_sold_count": 42,
"display_sold_count_text": "42",
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_local_historical_sold_count": 42,
"local_historical_sold_count_text": "42",
"rounded_global_historical_sold_count": 42,
"global_historical_sold_count_text": "42"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 26838829428,
"shopid": 24843249,
"name": "Lifetime Connected Papers Premium",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
298933384
],
"image": "id-11134207-7ra0g-mcd93ybu5yyta6",
"images": [
"id-11134207-7ra0g-mcd93ybu5yyta6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1752914445,
"sold": 1,
"historical_sold": 15,
"liked": false,
"liked_count": 0,
"catid": 100642,
"brand": "",
"cmt_count": 4,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1400000000,
"price_min": 1400000000,
"price_max": 1400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4,
"rating_count": [
4,
1,
0,
0,
0,
3
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001681},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 15,
"rounded_display_sold_count": 15,
"display_sold_count_text": "15",
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_local_historical_sold_count": 15,
"local_historical_sold_count_text": "15",
"rounded_global_historical_sold_count": 15,
"global_historical_sold_count_text": "15"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 22920077027,
"shopid": 24843249,
"name": "Lifetime N4Pster Premium Dengan Akun Dan Garansi",
"label_ids": [
822059908662278,
1059152,
1059154,
700025282,
822120592853526,
1428713,
1718087960,
2018619,
298933384
],
"image": "sg-11134201-23010-uffp242ibrmvfd",
"images": [
"sg-11134201-23010-uffp242ibrmvfd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1674690270,
"sold": 0,
"historical_sold": 194,
"liked": false,
"liked_count": 13,
"catid": 100644,
"brand": "",
"cmt_count": 31,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 800000000,
"price_min": 800000000,
"price_max": 800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.709677419354839,
"rating_count": [
31,
2,
0,
0,
1,
28
],
"rcount_with_context": 12,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001600},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 194,
"rounded_display_sold_count": 194,
"display_sold_count_text": "194",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 194,
"local_historical_sold_count_text": "194",
"rounded_global_historical_sold_count": 194,
"global_historical_sold_count_text": "194"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 24692950072,
"shopid": 24843249,
"name": "LIFETIME UDIO PREMIUM DENGAN GRATIS PANDUAN",
"label_ids": [
2018619,
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
1015914,
700190087,
700830032,
298933384
],
"image": "id-11134207-7rbk3-m7lr7xrwdq9je4",
"images": [
"id-11134207-7rbk3-m7lr7xrwdq9je4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1742531583,
"sold": 1,
"historical_sold": 35,
"liked": false,
"liked_count": 6,
"catid": 100642,
"brand": "",
"cmt_count": 13,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4,
"rating_count": [
13,
3,
0,
0,
1,
9
],
"rcount_with_context": 2,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001343},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 35,
"rounded_display_sold_count": 35,
"display_sold_count_text": "35",
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_local_historical_sold_count": 35,
"local_historical_sold_count_text": "35",
"rounded_global_historical_sold_count": 35,
"global_historical_sold_count_text": "35"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 22349890773,
"shopid": 24843249,
"name": "LIFETIME JOOK PREMIUM",
"label_ids": [
1059152,
1059154,
822059908662278,
700025282,
1400285055,
822120592853526,
1428713,
1718087960,
2018619
],
"image": "id-11134207-7qul2-ljum41tk6q547d",
"images": [
"id-11134207-7qul2-ljum41tk6q547d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1690764505,
"sold": 0,
"historical_sold": 306,
"liked": false,
"liked_count": 97,
"catid": 100642,
"brand": "",
"cmt_count": 145,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1500000000,
"price_min": 1500000000,
"price_max": 1500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8493150684931505,
"rating_count": [
146,
2,
1,
2,
7,
134
],
"rcount_with_context": 25,
"rcount_with_image": 8
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001241},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 306,
"rounded_display_sold_count": 306,
"display_sold_count_text": "306",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 306,
"local_historical_sold_count_text": "306",
"rounded_global_historical_sold_count": 306,
"global_historical_sold_count_text": "306"
},
"global_cat": {
"catid": [
100642,
100773
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 23871858013,
"shopid": 24843249,
"name": "LIFETIME QUIZLET PREMIUM",
"label_ids": [
1059152,
1059154,
822059908662278,
700025282,
1400285055,
822120592853526,
1718087960,
1428713,
2018619,
298933384
],
"image": "id-11134207-7qul1-lif3kl9mtmkw6b",
"images": [
"id-11134207-7qul1-lif3kl9mtmkw6b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1687646524,
"sold": 1,
"historical_sold": 250,
"liked": false,
"liked_count": 43,
"catid": 100644,
"brand": "",
"cmt_count": 67,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2100000000,
"price_min": 2100000000,
"price_max": 2100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.72463768115942,
"rating_count": [
69,
4,
0,
1,
1,
63
],
"rcount_with_context": 8,
"rcount_with_image": 6
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001090},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 250,
"rounded_display_sold_count": 250,
"display_sold_count_text": "250",
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_local_historical_sold_count": 250,
"local_historical_sold_count_text": "250",
"rounded_global_historical_sold_count": 250,
"global_historical_sold_count_text": "250"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 26605629031,
"shopid": 24843249,
"name": "Lifetime Bein Sports Premium Full Garansi 1-12 Bulan",
"label_ids": [
700025282,
1049122,
1059152,
822059908662278,
822120592853526,
1400285055,
1718087960,
1428713,
1015914,
700190087,
2018619,
298933384,
700810080
],
"image": "id-11134207-7r98u-lxuv1ikc60bi10",
"images": [
"id-11134207-7r98u-lxuv1ikc60bi10"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1721289440,
"sold": 0,
"historical_sold": 3000,
"liked": false,
"liked_count": 798,
"catid": 100642,
"brand": "",
"cmt_count": 1016,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2100000000,
"price_min": 2100000000,
"price_max": 2100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.796309439318666,
"rating_count": [
1409,
29,
14,
28,
73,
1265
],
"rcount_with_context": 181,
"rcount_with_image": 65
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.001065},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 3000,
"rounded_display_sold_count": 3000,
"display_sold_count_text": "3RB+",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 3000,
"local_historical_sold_count_text": "3RB+",
"rounded_global_historical_sold_count": 3000,
"global_historical_sold_count_text": "3RB+"
},
"global_cat": {
"catid": [
100642,
100773
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 25038913025,
"shopid": 24843249,
"name": "Lifetime StardustTV Premiume Dengan Akun Lifetime",
"label_ids": [
700025282,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
822120592853526,
2018619,
298933384
],
"image": "id-11134207-82252-mhoi4txma68315",
"images": [
"id-11134207-82252-mhoi4txma68315"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732883889,
"sold": 3,
"historical_sold": 112,
"liked": false,
"liked_count": 9,
"catid": 100642,
"brand": "",
"cmt_count": 36,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.638888888888889,
"rating_count": [
36,
3,
0,
0,
1,
32
],
"rcount_with_context": 3,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.000787},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 112,
"rounded_display_sold_count": 112,
"display_sold_count_text": "112",
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_local_historical_sold_count": 112,
"local_historical_sold_count_text": "112",
"rounded_global_historical_sold_count": 112,
"global_historical_sold_count_text": "112"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 21178635945,
"shopid": 24843249,
"name": "FULL GARANSI MLB TV PREMIUM | M4JOR LE4GUE B4SEBALL",
"label_ids": [
700025282,
1718087960,
1428713,
1049122,
1059152,
822059908662278,
822120592853526,
2018619
],
"image": "id-11134207-7qula-lfn1tgdxhswy25",
"images": [
"id-11134207-7qula-lfn1tgdxhswy25"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1681590377,
"sold": 0,
"historical_sold": 102,
"liked": false,
"liked_count": 34,
"catid": 100644,
"brand": "",
"cmt_count": 38,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 3500000000,
"price_min": 3500000000,
"price_max": 3500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.82051282051282,
"rating_count": [
39,
1,
0,
1,
1,
36
],
"rcount_with_context": 4,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.000705},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 102,
"rounded_display_sold_count": 102,
"display_sold_count_text": "102",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 102,
"local_historical_sold_count_text": "102",
"rounded_global_historical_sold_count": 102,
"global_historical_sold_count_text": "102"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
},
{
"itemid": 29700312281,
"shopid": 24843249,
"name": "Lifetime Aithor Premium AI Dengan Akun Lifetime",
"label_ids": [
700025282,
1059152,
1049122,
822059908662278,
822120592853526,
1400285055,
1428713,
1718087960,
2018619,
298933384
],
"image": "id-11134207-7r98s-lvg4f0rw6sg861",
"images": [
"id-11134207-7r98s-lvg4f0rw6sg861"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1716039237,
"sold": 2,
"historical_sold": 190,
"liked": false,
"liked_count": 36,
"catid": 100644,
"brand": "",
"cmt_count": 79,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 2000000000,
"price_min": 2000000000,
"price_max": 2000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.887640449438202,
"rating_count": [
89,
1,
0,
1,
4,
83
],
"rcount_with_context": 19,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"info": "AB:78013|627360,REQID:b11ba3af48557c2286c2ef981f3b1a02,BND:shop_page_category_tab_main,QUES:category_item_recall_node,RNK:gpu_shop_v5_unify_cgc_wuv4_gemds_my@ID_1823540:{SCORE:0.000362},SECKEY:shop_page_category_tab_main_sec,ROI:0,DT:1768381852374,SK:b11ba3af48557c2286c2ef981f3b1a02",
"data_type": "item",
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 190,
"rounded_display_sold_count": 190,
"display_sold_count_text": "190",
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_local_historical_sold_count": 190,
"local_historical_sold_count_text": "190",
"rounded_global_historical_sold_count": 190,
"global_historical_sold_count_text": "190"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false,
"deduction_info": "",
"display_ad_tag": 0,
"traffic_source": 0,
"adsid": 0,
"campaign_id": 0,
"ctx_item_type": 0
}
],
"total_fetched": 94,
"total_count": 94,
"pages_fetched": 4,
"has_more": false
},
"sold_out_items": {
"items": [
{
"itemid": 18963694293,
"shopid": 24843249,
"item_basic": {
"itemid": 18963694293,
"shopid": 24843249,
"name": "Lifetime Curiosity Stre4m Premium",
"label_ids": [
1400285055,
700025282,
1718087960,
1428713,
2018619
],
"image": "sg-11134201-22110-mxiz5q6ay5jv80",
"images": [
"sg-11134201-22110-mxiz5q6ay5jv80"
],
"currency": "IDR",
"stock": 0,
"status": 1,
"ctime": 1668976313,
"sold": 0,
"historical_sold": 179,
"liked": false,
"liked_count": 52,
"catid": 100644,
"brand": "",
"cmt_count": 80,
"flag": 0,
"cb_option": 0,
"item_status": "sold_out",
"price": 2000000000,
"price_min": 2000000000,
"price_max": 2000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
81,
0,
0,
0,
0,
81
],
"rcount_with_context": 27,
"rcount_with_image": 7
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 179,
"rounded_display_sold_count": 179,
"display_sold_count_text": "179",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 179,
"local_historical_sold_count_text": "179",
"rounded_global_historical_sold_count": 179,
"global_historical_sold_count_text": "179"
},
"global_cat": {
"catid": [
100644,
101937
]
},
"is_mart": false
}
},
{
"itemid": 28428658559,
"shopid": 24843249,
"item_basic": {
"itemid": 28428658559,
"shopid": 24843249,
"name": "Lifetime Wink Premium Ios Dengan Akun Lifetime",
"label_ids": [
700025282,
1718087960,
1428713,
2018619,
1400285055,
1015914,
700190087,
298933384
],
"image": "id-11134207-7rbk9-m70szmcj1r8q4e",
"images": [
"id-11134207-7rbk9-m70szmcj1r8q4e"
],
"currency": "IDR",
"stock": 0,
"status": 1,
"ctime": 1741262134,
"sold": 0,
"historical_sold": 1000,
"liked": false,
"liked_count": 147,
"catid": 100642,
"brand": "",
"cmt_count": 412,
"flag": 0,
"cb_option": 0,
"item_status": "sold_out",
"price": 4900000000,
"price_min": 4900000000,
"price_max": 4900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.398058252427185,
"rating_count": [
412,
49,
6,
13,
8,
336
],
"rcount_with_context": 63,
"rcount_with_image": 11
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 1000,
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 1000,
"local_historical_sold_count_text": "1RB+",
"rounded_global_historical_sold_count": 1000,
"global_historical_sold_count_text": "1RB+"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false
}
},
{
"itemid": 27655356650,
"shopid": 24843249,
"item_basic": {
"itemid": 27655356650,
"shopid": 24843249,
"name": "Lifetime Wink Premium IOS Akun Lifetime Gratis Panduan",
"label_ids": [
700025282,
1428713,
1718087960,
1400285055,
1015914,
700190087,
2018619,
298933384
],
"image": "id-11134207-7r98v-lxqom2g6wtml3e",
"images": [
"id-11134207-7r98v-lxqom2g6wtml3e"
],
"currency": "IDR",
"stock": 0,
"status": 1,
"ctime": 1721037188,
"sold": 0,
"historical_sold": 565,
"liked": false,
"liked_count": 200,
"catid": 100642,
"brand": "",
"cmt_count": 174,
"flag": 0,
"cb_option": 0,
"item_status": "sold_out",
"price": 2800000000,
"price_min": 2800000000,
"price_max": 2800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.704761904761905,
"rating_count": [
210,
9,
4,
2,
10,
185
],
"rcount_with_context": 46,
"rcount_with_image": 12
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 565,
"rounded_display_sold_count": 565,
"display_sold_count_text": "565",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 565,
"local_historical_sold_count_text": "565",
"rounded_global_historical_sold_count": 565,
"global_historical_sold_count_text": "565"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false
}
},
{
"itemid": 27007361678,
"shopid": 24843249,
"item_basic": {
"itemid": 27007361678,
"shopid": 24843249,
"name": "LIFETIME MEITU PREMIUM IOS Dengan Akun Baru Gratis",
"label_ids": [
700025282,
1428713,
1718087960,
1015914,
700190087,
1400285055,
2018619,
298933384
],
"image": "id-11134207-7r98x-lyorxul6ueq0ea",
"images": [
"id-11134207-7r98x-lyorxul6ueq0ea"
],
"currency": "IDR",
"stock": 0,
"status": 1,
"ctime": 1723101682,
"sold": 0,
"historical_sold": 583,
"liked": false,
"liked_count": 210,
"catid": 100642,
"brand": "",
"cmt_count": 230,
"flag": 0,
"cb_option": 0,
"item_status": "sold_out",
"price": 2800000000,
"price_min": 2800000000,
"price_max": 2800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.6059322033898304,
"rating_count": [
236,
15,
5,
7,
4,
205
],
"rcount_with_context": 47,
"rcount_with_image": 14
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 583,
"rounded_display_sold_count": 583,
"display_sold_count_text": "583",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 583,
"local_historical_sold_count_text": "583",
"rounded_global_historical_sold_count": 583,
"global_historical_sold_count_text": "583"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false
}
},
{
"itemid": 26234469530,
"shopid": 24843249,
"item_basic": {
"itemid": 26234469530,
"shopid": 24843249,
"name": "LIFETIME STUDYX AI PREMIUM",
"label_ids": [
2018619,
700025282,
1428713,
1718087960,
1015914,
700190087,
1400285055
],
"image": "id-11134207-7rbk9-m8vxim02cgsxa8",
"images": [
"id-11134207-7rbk9-m8vxim02cgsxa8"
],
"currency": "IDR",
"stock": 0,
"status": 1,
"ctime": 1745327806,
"sold": 0,
"historical_sold": 52,
"liked": false,
"liked_count": 8,
"catid": 100642,
"brand": "",
"cmt_count": 15,
"flag": 0,
"cb_option": 0,
"item_status": "sold_out",
"price": 7000000000,
"price_min": 7000000000,
"price_max": 7000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Tipe",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.733333333333333,
"rating_count": [
15,
1,
0,
0,
0,
14
],
"rcount_with_context": 4,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 52,
"rounded_display_sold_count": 52,
"display_sold_count_text": "52",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 52,
"local_historical_sold_count_text": "52",
"rounded_global_historical_sold_count": 52,
"global_historical_sold_count_text": "52"
},
"global_cat": {
"catid": [
100642,
100764,
101514
]
},
"is_mart": false
}
},
{
"itemid": 23759130212,
"shopid": 24843249,
"item_basic": {
"itemid": 23759130212,
"shopid": 24843249,
"name": "LIFETIME ELEVEN LABS PREMIUM",
"label_ids": [
700025282,
1400285055,
1718087960,
1428713,
2018619,
700810080
],
"image": "id-11134207-7r992-lo71mrlaqsdg1c",
"images": [
"id-11134207-7r992-lo71mrlaqsdg1c"
],
"currency": "IDR",
"stock": 0,
"status": 1,
"ctime": 1698272001,
"sold": 0,
"historical_sold": 3000,
"liked": false,
"liked_count": 1099,
"catid": 100642,
"brand": "",
"cmt_count": 1651,
"flag": 0,
"cb_option": 0,
"item_status": "sold_out",
"price": 12600000000,
"price_min": 12600000000,
"price_max": 12600000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"tier_variations": [
{
"name": "Garansi",
"options": [
"1 Bulan",
"3 Bulan",
"6 Bulan",
"Lifetime"
],
"type": 0
}
],
"item_rating": {
"rating_star": 4.806433721575153,
"rating_count": [
1803,
40,
13,
40,
70,
1640
],
"rcount_with_context": 388,
"rcount_with_image": 65
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": 0,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": false,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"show_free_shipping": false,
"bundle_deal_id": 0,
"can_use_bundle_deal": false,
"welcome_package_type": 0,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "KOTA JAKARTA UTARA",
"has_model_with_available_shopee_stock": false,
"can_use_cod": false,
"is_on_flash_sale": false,
"is_service_by_shopee": false,
"shop_rating": 4.841217,
"flash_sale_ongoing_sold_count": 0,
"shop_name": "tokojualbarangmurahbanget",
"flash_sale_stock": 0,
"need_kyc": false,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"display_sold_count": 3000,
"rounded_display_sold_count": 3000,
"display_sold_count_text": "3RB+",
"rounded_local_monthly_sold_count": 0,
"rounded_local_historical_sold_count": 3000,
"local_historical_sold_count_text": "3RB+",
"rounded_global_historical_sold_count": 3000,
"global_historical_sold_count_text": "3RB+"
},
"global_cat": {
"catid": [
100642,
100773
]
},
"is_mart": false
}
}
],
"total_fetched": 6,
"total_count": 6,
"pages_fetched": 1,
"has_more": false
}
},
"https://shopee.co.id/search?keyword=ac%20window": {
"page_url": "https://shopee.co.id/search?keyword=ac%20window",
"page_type": "search",
"page_params": {
"keyword": "ac window",
"filters": {}
},
"items": {
"items": [
{
"item_basic": {
"itemid": 24075913288,
"shopid": 1084191383,
"name": "PROMO AC Sharp 1/2 PK A5BEY STANDARD FREE PASANG + AKSESORIS Raja AC Bekasi",
"label_ids": [
1049112,
822059908662278,
298458395,
1718087960,
1428713,
1015914,
700190087,
1400285055,
822120592853526,
298463379,
1059151,
1718093079,
2018619,
2023641,
298893311,
825465608497696,
700830032,
298933384,
700810080,
298468389,
1718088045
],
"image": "id-11134207-7ras9-m0oicw8ybxp2fc",
"images": [
"id-11134207-7ras9-m0oicw8ybxp2fc",
"id-11134207-7rasb-m0oicw8ydc9id0",
"id-11134207-7ra0q-md5koeebmtsz32",
"id-11134207-7r98y-lw5lqak60fcc5c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1713778218,
"sold": 38,
"historical_sold": 458,
"liked": false,
"liked_count": 587,
"view_count": null,
"catid": 100010,
"brand": "Sharp",
"cmt_count": 254,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 259300000000,
"price_min": 259300000000,
"price_max": 259300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Pembelian",
"options": [
"UNIT ONLY",
"Unit Only + Material",
"+ PASANG",
"+ Pasang Tradein"
],
"images": [
"id-11134207-7r991-lw5lqak61twscf",
"id-11134207-7ra0u-mc66ettl19y911",
"id-11134207-7ra0s-md5koeebo8dfc9",
"id-11134207-7ra0k-mc66ettkzvdt13"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.833976833976834,
"rating_count": [
259,
3,
2,
5,
15,
234
],
"rcount_with_context": 88,
"rcount_with_image": 82
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 258300000000,
"strikethrough_price": 259300000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1303365536858112,
"discount_text": null,
"model_id": 166435872497,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1303365536858112,
"voucher_code": "RAJAVPB2",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1764833040,
"end_time": 1772902740,
"valid_duration": null
},
"groups": [],
"min_spend": 200000000000
},
"recommended_platform_voucher_info": null,
"original_price": 259300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 458,
"rounded_local_monthly_sold_count": 38,
"local_monthly_sold_count_text": "38",
"rounded_display_sold_count": 458,
"display_sold_count_text": "458"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Raja AC Bekasi",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 355937842,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWia5mjbrfMRG6A2PLwcexvwO2wNjZQKTiHKiwSqS9Yk4T3J68TbuyYnvZ0P1yGwNS5uKF6eGNLFeHZjYSWdCsDcfzt+t5Rk00PO9AvsidTLG5eQN7FChJQIUvHwd74k3PjCWMIRu9RYlP8GdP05U9R+0pyPpWKI5upIWVLpFscASddDox1RlC9HxfXRneal3ewK6kwqhWhFv8E/L0nLOBhrK6MQImCFlpOePeDUTW9SJi8b81xIAzKhEo3FA0YfNjrXZSFg7qL7C5pKugVm0Z7cX0ohxFB6y3m2r7eDIxrG0Uc79KLilikc4iGKjlXadQF/z6Yzy2nQK+8vZICqi6Y3sRO/o5GflugSzW3IzFKBLVXQmd057bZYpoUSkoUWXidPrmv8+xpC74UMLT/0r4D8j9EhlIgf/k4DnmMEi4+cxKomcEHHmlRHBAKd/zXNyeL14JsijQH+z0L/KCN/D0xeLp+GSxhY/QORR18QW1+3+RA==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELLc3KkBGIiU/IoBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTVtamJyZk1SRzZBMlBMd2NleHZ3TzJ3TmpaUUtUaUhLaXdTcVM5WWs0VDNKNjhUYnV5WW52WjBQMXlHd05TNXVLRjZlR05MRmVIWmpZU1dkQ3NEY2Z6dCt0NVJrMDBQTzlBdnNpZFRMRzVlUU43RkNoSlFJVXZId2Q3NGszUGpDV01JUnU5UllsUDhHZFAwNVU5UiswcHlQcFdLSTV1cElXVkxwRnNjQVNkZERveDFSbEM5SHhmWFJuZWFsM2V3SzZrd3FoV2hGdjhFL0wwbkxPQmhySzZNUUltQ0ZscE9lUGVEVVRXOVNKaThiODF4SUF6S2hFbzNGQTBZZk5qclhaU0ZnN3FMN0M1cEt1Z1ZtMFo3Y1gwb2h4RkI2eTNtMnI3ZURJeHJHMFVjNzlLTGlsaWtjNGlHS2psWGFkUUYvejZZenkyblFLKzh2WklDcWk2WTNzUk8vbzVHZmx1Z1N6VzNJekZLQkxWWFFtZDA1N2JaWXBvVVNrb1VXWGlkUHJtdjgreHBDNzRVTUxULzByNEQ4ajlFaGxJZ2YvazREbm1NRWk0K2N4S29tY0VISG1sUkhCQUtkL3pYTnllTDE0SnNpalFIK3owTC9LQ04vRDB4ZUxwK0dTeGhZL1FPUlIxOFFXMSszK1JBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABmPP+vMMH6QEAAACgxB3xP/EBAAAAYHn49D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENexSuR6qwMUGhDQAAABAKpItB+A2AgI6f+QiwDoLh6JwB4g4Mqo0Gx40G1Y4G8JAGyA8B4hnECkVtVXhMakUwT0RRc0xURXNMVEVzTFRFc0xURXNNUzR4Tml3eExEQXVPREkxTXpjek5EUTFOek0yT1RJMU9Dd3dMamtzTFRFc01TNHdNREF3TVRJekxEYzBOall1TkRjM056RTVPRGMzT1RjM0xERXVNVE13TVRRME1EVTRNRFV6T1RjMk5pd3RNUjA2OGxWTUlNR0MwaHN0eGY2U1B6VUFBSUEvT1oySWhRMWJzU0pDUVRCd3owdTg4MnBDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFJQlR2Z2MvZVFBQUFDQUh1dmsrZ1FFQUFBQkFIV2h0UVlrQkFBQUFvTVZ4WDBHUkFRQUFBQWlBa0haQm1RRUFBQUFnZXRselFhRUJBQUFBb0pnNVpVR3BBUUFBQUhCR2RuNUI2QUVCZ0FLVUE0b0NQakF1TURBMU5qVXlMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpFd09EVTVMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUtQd3ZVb1hJL3lQNkVDN1JDNGdleTIwRUhCQWdBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBREtBZ3NJQWhFQUFBQUFBQUFBZ05rQ2dJcFB3dzlHVVVIaEFzRDZFZWhFQmtWQjZRSm11VTZZY25PMFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrRG5ZaUZEVnV4SWtLaEF6Qnd6MHU4ODJwQ3VRT2RjdGR1eTI3Z1A4RUQyZS9QZmVydDRqL0pBNHdWNWlpd2l1WS8wUU42bGZaOXNOZnNQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFBQW03QUJQNGtFQUFBQUFEZ2QrejZRQkpzRG1BVEsvK3VqcGg2Z0JLU0wzL0JrdUFTc2lQR280UXpBQk5DVDBKbkdEY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCQVdpWjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQmdyVi96UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS6TcJN+hmTBgoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChIKDHZvdWNoZXJfbGVucxICEAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI0MDc1OTEzMjg4ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHOwH8+CgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySXtELiB7LbQQfIlBlNFQVJDSA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 24075913288,
"shopid": 1084191383,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":57966914,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m0oicw8ybxp2fc\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1049112,822059908662278,298458395,1718087960,1428713,1015914,700190087,1400285055,822120592853526,298463379,1059151,1718093079,2018619,2023641,298893311,825465608497696,700830032,298933384,700810080,298468389,1718088045],\"merge_rank\":0,\"model_id\":166435872497,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":57966914,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m0oicw8ybxp2fc\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1049112,822059908662278,298458395,1718087960,1428713,1015914,700190087,1400285055,822120592853526,298463379,1059151,1718093079,2018619,2023641,298893311,825465608497696,700830032,298933384,700810080,298468389,1718088045],\"merge_rank\":0,\"model_id\":166435872497,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELLc3KkBGIiU/IoBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTVtamJyZk1SRzZBMlBMd2NleHZ3TzJ3TmpaUUtUaUhLaXdTcVM5WWs0VDNKNjhUYnV5WW52WjBQMXlHd05TNXVLRjZlR05MRmVIWmpZU1dkQ3NEY2Z6dCt0NVJrMDBQTzlBdnNpZFRMRzVlUU43RkNoSlFJVXZId2Q3NGszUGpDV01JUnU5UllsUDhHZFAwNVU5UiswcHlQcFdLSTV1cElXVkxwRnNjQVNkZERveDFSbEM5SHhmWFJuZWFsM2V3SzZrd3FoV2hGdjhFL0wwbkxPQmhySzZNUUltQ0ZscE9lUGVEVVRXOVNKaThiODF4SUF6S2hFbzNGQTBZZk5qclhaU0ZnN3FMN0M1cEt1Z1ZtMFo3Y1gwb2h4RkI2eTNtMnI3ZURJeHJHMFVjNzlLTGlsaWtjNGlHS2psWGFkUUYvejZZenkyblFLKzh2WklDcWk2WTNzUk8vbzVHZmx1Z1N6VzNJekZLQkxWWFFtZDA1N2JaWXBvVVNrb1VXWGlkUHJtdjgreHBDNzRVTUxULzByNEQ4ajlFaGxJZ2YvazREbm1NRWk0K2N4S29tY0VISG1sUkhCQUtkL3pYTnllTDE0SnNpalFIK3owTC9LQ04vRDB4ZUxwK0dTeGhZL1FPUlIxOFFXMSszK1JBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABmPP+vMMH6QEAAACgxB3xP/EBAAAAYHn49D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENexSuR6qwMUGhDQAAABAKpItB+A2AgI6f+QiwDoLh6JwB4g4Mqo0Gx40G1Y4G8JAGyA8B4hnECkVtVXhMakUwT0RRc0xURXNMVEVzTFRFc0xURXNNUzR4Tml3eExEQXVPREkxTXpjek5EUTFOek0yT1RJMU9Dd3dMamtzTFRFc01TNHdNREF3TVRJekxEYzBOall1TkRjM056RTVPRGMzT1RjM0xERXVNVE13TVRRME1EVTRNRFV6T1RjMk5pd3RNUjA2OGxWTUlNR0MwaHN0eGY2U1B6VUFBSUEvT1oySWhRMWJzU0pDUVRCd3owdTg4MnBDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFJQlR2Z2MvZVFBQUFDQUh1dmsrZ1FFQUFBQkFIV2h0UVlrQkFBQUFvTVZ4WDBHUkFRQUFBQWlBa0haQm1RRUFBQUFnZXRselFhRUJBQUFBb0pnNVpVR3BBUUFBQUhCR2RuNUI2QUVCZ0FLVUE0b0NQakF1TURBMU5qVXlMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpFd09EVTVMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUtQd3ZVb1hJL3lQNkVDN1JDNGdleTIwRUhCQWdBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBREtBZ3NJQWhFQUFBQUFBQUFBZ05rQ2dJcFB3dzlHVVVIaEFzRDZFZWhFQmtWQjZRSm11VTZZY25PMFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrRG5ZaUZEVnV4SWtLaEF6Qnd6MHU4ODJwQ3VRT2RjdGR1eTI3Z1A4RUQyZS9QZmVydDRqL0pBNHdWNWlpd2l1WS8wUU42bGZaOXNOZnNQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFBQW03QUJQNGtFQUFBQUFEZ2QrejZRQkpzRG1BVEsvK3VqcGg2Z0JLU0wzL0JrdUFTc2lQR280UXpBQk5DVDBKbkdEY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCQVdpWjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQmdyVi96UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS6TcJN+hmTBgoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChIKDHZvdWNoZXJfbGVucxICEAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI0MDc1OTEzMjg4ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHOwH8+CgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySXtELiB7LbQQfIlBlNFQVJDSA==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24075913288",
"debug_info": null
},
{
"item_basic": {
"itemid": 25975909087,
"shopid": 1084191383,
"name": "AC Sharp 1/2 PK A5ZCY LOW WATT FREE PASANG + AKSESORIS Raja AC Bekasi",
"label_ids": [
298458395,
1718087960,
1428713,
1400285055,
1015914,
700190087,
298463379,
1718093079,
2018619,
2023641,
298893311,
1049112,
1059151,
822059908662278,
825465608497696,
837860934119952,
822120592853526,
700830032,
298933384,
1718088045,
298468389
],
"image": "id-11134207-7ras8-m0oicw8yhjyu53",
"images": [
"id-11134207-7ras8-m0oicw8yhjyu53",
"id-11134207-7rasa-m0oicw8yiyjaa7",
"id-11134207-7ra0u-md5j9eqw2zsl79",
"id-11134207-7ra0t-md5j9eqw4ed17d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1713778639,
"sold": 25,
"historical_sold": 346,
"liked": false,
"liked_count": 538,
"view_count": null,
"catid": 100010,
"brand": "Sharp",
"cmt_count": 181,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 290700000000,
"price_min": 290700000000,
"price_max": 290700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "pembelian",
"options": [
"UNIT ONLY",
"Unit Only + Material",
"+ PASANG",
"+ Pasang Tradein"
],
"images": [
"id-11134207-7ra0g-md5j9eqw5sxh08",
"id-11134207-7ra0q-mc66ettkygtd7a",
"id-11134207-7r990-luesfru5a4h798",
"id-11134207-7ra0k-mc66ettkzvdt13"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.897849462365591,
"rating_count": [
186,
1,
1,
1,
10,
173
],
"rcount_with_context": 56,
"rcount_with_image": 42
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 289700000000,
"strikethrough_price": 290700000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1303365536858112,
"discount_text": null,
"model_id": 207455751507,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1303365536858112,
"voucher_code": "RAJAVPB2",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1764833040,
"end_time": 1772902740,
"valid_duration": null
},
"groups": [],
"min_spend": 200000000000
},
"recommended_platform_voucher_info": null,
"original_price": 290700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 346,
"rounded_local_monthly_sold_count": 25,
"local_monthly_sold_count_text": "25",
"rounded_display_sold_count": 346,
"display_sold_count_text": "346"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Raja AC Bekasi",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 355937836,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYi8a4c72FOgo+f12u1uqBGdugkPBo/QJ+gO7K7SmAoJe7spix+atHiZMznnybpCLNM5Ut0c04QFVQRkirvL/2qqxofKqKBAaVYrkO1HPLWjFc5i6zfX2oE4xiPVkxFU1217sBt78bH4nqB6E7DpBODw5rTm/GNLl7wXT/U0+UTxA8FVB/u73uOM9dea5l76oKOkaNvG6SPOd0nXmq3zQ4FGEf8sCUfZbV+0r4/as0moF/ssWYzuYxNSa1UoegKrdk0vonzEotz0iY0UNMEwLxM57mL0Iy5FG+v1FwB/iPP0/4ckhEUvsyjckxZiMTFpSE9VTSR/ul6uf+Y2dH9iS6bKeayplMjtxRwGT+M8LNcUPYr2qRQaJmBwsZ8zbLJin6NHP1ApqDFvrt5cJOg788hcG5mXZ8pvTZlg7D5qA4Oiu50guTEr7VJgBifT+G2Uz8S4/A5Lg/pmybuGeIb0Vgg0SgpAzhAeJFcJZ5IhKeyiQ==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKzc3KkBGICU/IoBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWk4YTRjNzJGT2dvK2YxMnUxdXFCR2R1Z2tQQm8vUUorZ083SzdTbUFvSmU3c3BpeCthdEhpWk16bm55YnBDTE5NNVV0MGMwNFFGVlFSa2lydkwvMnFxeG9mS3FLQkFhVllya08xSFBMV2pGYzVpNnpmWDJvRTR4aVBWa3hGVTEyMTdzQnQ3OGJING5xQjZFN0RwQk9EdzVyVG0vR05MbDd3WFQvVTArVVR4QThGVkIvdTczdU9NOWRlYTVsNzZvS09rYU52RzZTUE9kMG5YbXEzelE0RkdFZjhzQ1VmWmJWKzByNC9hczBtb0Yvc3NXWXp1WXhOU2ExVW9lZ0tyZGswdm9uekVvdHowaVkwVU5NRXdMeE01N21MMEl5NUZHK3YxRndCL2lQUDAvNGNraEVVdnN5amNreFppTVRGcFNFOVZUU1IvdWw2dWYrWTJkSDlpUzZiS2VheXBsTWp0eFJ3R1QrTThMTmNVUFlyMnFSUWFKbUJ3c1o4emJMSmluNk5IUDFBcHFERnZydDVjSk9nNzg4aGNHNW1YWjhwdlRabGc3RDVxQTRPaXU1MGd1VEVyN1ZKZ0JpZlQrRzJVejhTNC9BNUxnL3BteWJ1R2VJYjBWZ2cwU2dwQXpoQWVKRmNKWjVJaEtleWlRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB7qqlp48H6QEAAACgxB3xP/EBAAAAIJor9T/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENXI/C9dp2I0GhDQAAACC2aX5B+A2AgKKu5QmwDujgz6sB4g4Mqo0Gx40G1Y4G8JAGyA8C4hnICkVtY3dMall5TVRjeUxDMHhMQzB4TEMweExDMHhMREF1TmpJNExERXNNQzQyTWprd01ERXdOelF6TURjME56TXpMREF1T1N3dE1Td3hMakF3TURBeE1qTXNNVE0xTnpFdU9EQTNPVFl6TlRnMk16TXNNUzR4TkRnME5EVXdORFk1T1RFMU1qQTJMQzB4SFNacFdVd2c0YmFhRHkwTEtSOC9OUUFBZ0Q4NWgzV1BXcVdyRTBKQmx0eWVNQW9rWjBKS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJhQndpcTg1WURFQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9ZZzRJclBPV0F4RUFBQUFBQUFBQUFHSU9DS3Z6bGdNUkFBQUFBQUFBQUFCeEFBQUFvQzNpQno5NUFBQUFJRkRSQkQrQkFRQUFBTURpTG5CQmlRRUFBQUJnamo1b1FaRUJBQUFBOENsT2ZFR1pBUUFBQUdEbDJIVkJvUUVBQUFEZ2JGMXdRYWtCQUFBQUlDa2JnMEhvQVFHQUFwUURpZ0krTUM0d01EUTVNelVzTVM0d01EQXdNREFzTVM0d01URTFPRElzTVM0eU1UZzFOamtzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQW45cXZIU1RHT1Evb1FJaVFkSHdOdnpRUWNFQ0FBQUFBQUFBQUlES0Fnc0lBUkVBQUFBQUFBQUFBTW9DQ3dnQ0VRQUFBQUFBQUFDQTJRSUFEdUxRRC9GUVFlRUNRSE1PeDdwRFRrSHBBdktVTDNyS3pySkJpZ013QUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL21RT0hkWTlhcGFzVFFxRURsdHllTUFva1owSzVBMkc2M0UrVzZlQS93UU9HZG54V2NrWGpQOGtEdXpCUDBsZnM1ai9SQTk2am1LaWdXKzAvK2dNSkNnVkpjMDVRUWhBQStnTUxDZ2RTYjJsVWFXVnlFQVA2QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQU9CQkFBQUFJQ3QwQUUvaVFRQUFBQkE2cGY3UHBBRW13T1lCTXIvNjZPbUhxQUV2L3lua0lzQnVBVHNwN20wNlF6QUJLdWs0Y1QwRGNrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQ0E2RFowUDZFRkFBQUFBQUFBOEQrcEJRQUFBS0J3TC9BL3NRVUFBQUJBUW4velA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkEuU3BTfoZnQYKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDEwMTA0LDYxMTAyMDMwNAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAChIKDHZvdWNoZXJfbGVucxICEAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKDQoHaXNfdnNrdRICKAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjU5NzU5MDkwODcKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJSJB0fA2/NBB8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 25975909087,
"shopid": 1084191383,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":31890274,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m0oicw8yhjyu53\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[298458395,1718087960,1428713,1400285055,1015914,700190087,298463379,1718093079,2018619,2023641,298893311,1049112,1059151,822059908662278,825465608497696,837860934119952,822120592853526,700830032,298933384,1718088045,298468389],\"merge_rank\":0,\"model_id\":207455751507,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":31890274,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m0oicw8yhjyu53\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[298458395,1718087960,1428713,1400285055,1015914,700190087,298463379,1718093079,2018619,2023641,298893311,1049112,1059151,822059908662278,825465608497696,837860934119952,822120592853526,700830032,298933384,1718088045,298468389],\"merge_rank\":0,\"model_id\":207455751507,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKzc3KkBGICU/IoBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWk4YTRjNzJGT2dvK2YxMnUxdXFCR2R1Z2tQQm8vUUorZ083SzdTbUFvSmU3c3BpeCthdEhpWk16bm55YnBDTE5NNVV0MGMwNFFGVlFSa2lydkwvMnFxeG9mS3FLQkFhVllya08xSFBMV2pGYzVpNnpmWDJvRTR4aVBWa3hGVTEyMTdzQnQ3OGJING5xQjZFN0RwQk9EdzVyVG0vR05MbDd3WFQvVTArVVR4QThGVkIvdTczdU9NOWRlYTVsNzZvS09rYU52RzZTUE9kMG5YbXEzelE0RkdFZjhzQ1VmWmJWKzByNC9hczBtb0Yvc3NXWXp1WXhOU2ExVW9lZ0tyZGswdm9uekVvdHowaVkwVU5NRXdMeE01N21MMEl5NUZHK3YxRndCL2lQUDAvNGNraEVVdnN5amNreFppTVRGcFNFOVZUU1IvdWw2dWYrWTJkSDlpUzZiS2VheXBsTWp0eFJ3R1QrTThMTmNVUFlyMnFSUWFKbUJ3c1o4emJMSmluNk5IUDFBcHFERnZydDVjSk9nNzg4aGNHNW1YWjhwdlRabGc3RDVxQTRPaXU1MGd1VEVyN1ZKZ0JpZlQrRzJVejhTNC9BNUxnL3BteWJ1R2VJYjBWZ2cwU2dwQXpoQWVKRmNKWjVJaEtleWlRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB7qqlp48H6QEAAACgxB3xP/EBAAAAIJor9T/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENXI/C9dp2I0GhDQAAACC2aX5B+A2AgKKu5QmwDujgz6sB4g4Mqo0Gx40G1Y4G8JAGyA8C4hnICkVtY3dMall5TVRjeUxDMHhMQzB4TEMweExDMHhMREF1TmpJNExERXNNQzQyTWprd01ERXdOelF6TURjME56TXpMREF1T1N3dE1Td3hMakF3TURBeE1qTXNNVE0xTnpFdU9EQTNPVFl6TlRnMk16TXNNUzR4TkRnME5EVXdORFk1T1RFMU1qQTJMQzB4SFNacFdVd2c0YmFhRHkwTEtSOC9OUUFBZ0Q4NWgzV1BXcVdyRTBKQmx0eWVNQW9rWjBKS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJhQndpcTg1WURFQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9ZZzRJclBPV0F4RUFBQUFBQUFBQUFHSU9DS3Z6bGdNUkFBQUFBQUFBQUFCeEFBQUFvQzNpQno5NUFBQUFJRkRSQkQrQkFRQUFBTURpTG5CQmlRRUFBQUJnamo1b1FaRUJBQUFBOENsT2ZFR1pBUUFBQUdEbDJIVkJvUUVBQUFEZ2JGMXdRYWtCQUFBQUlDa2JnMEhvQVFHQUFwUURpZ0krTUM0d01EUTVNelVzTVM0d01EQXdNREFzTVM0d01URTFPRElzTVM0eU1UZzFOamtzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQW45cXZIU1RHT1Evb1FJaVFkSHdOdnpRUWNFQ0FBQUFBQUFBQUlES0Fnc0lBUkVBQUFBQUFBQUFBTW9DQ3dnQ0VRQUFBQUFBQUFDQTJRSUFEdUxRRC9GUVFlRUNRSE1PeDdwRFRrSHBBdktVTDNyS3pySkJpZ013QUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL21RT0hkWTlhcGFzVFFxRURsdHllTUFva1owSzVBMkc2M0UrVzZlQS93UU9HZG54V2NrWGpQOGtEdXpCUDBsZnM1ai9SQTk2am1LaWdXKzAvK2dNSkNnVkpjMDVRUWhBQStnTUxDZ2RTYjJsVWFXVnlFQVA2QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQU9CQkFBQUFJQ3QwQUUvaVFRQUFBQkE2cGY3UHBBRW13T1lCTXIvNjZPbUhxQUV2L3lua0lzQnVBVHNwN20wNlF6QUJLdWs0Y1QwRGNrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQ0E2RFowUDZFRkFBQUFBQUFBOEQrcEJRQUFBS0J3TC9BL3NRVUFBQUJBUW4velA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkEuU3BTfoZnQYKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDEwMTA0LDYxMTAyMDMwNAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAChIKDHZvdWNoZXJfbGVucxICEAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKDQoHaXNfdnNrdRICKAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjU5NzU5MDkwODcKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJSJB0fA2/NBB8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25975909087",
"debug_info": null
},
{
"item_basic": {
"itemid": 52053072191,
"shopid": 592127666,
"name": "AC DAIKIN STV15CXV / FTV15CXV14 ,STANDAR 0,5 PK MALAYSIA",
"label_ids": [
2018619,
844931064601283,
298463379,
1718093079,
1049127,
1049112,
822059908662278,
834403089593352,
825465608497696,
822120592853526,
298488495,
2023641,
298468389,
1718088045
],
"image": "id-11134207-82252-mi8iruolce8395",
"images": [
"id-11134207-82252-mi8iruolce8395",
"id-11134207-8224r-mi8iruolf7cz27",
"id-11134207-8224w-mi8iruoldssj8f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765708840,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "Daikin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 384900000000,
"price_min": 384900000000,
"price_max": 384900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 384900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 335296117529,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 384900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "A1 ELECTRONIC",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 665159997,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiY/9Il/XoZbI+53wSL5rVV8klUnvegRtpyQRK8lj26Kvf0ZsJdwESCQAx2FoEvj0zLKIbKg3pNiqLe0ivEazpvW/DdKf+ktnP8sLCjkqNJE67xYmGLAyqbybFSm82wzi8UrHF10wI80OiveaFMDBNSLJdunoSDfJtyDCEptimaHRtfCPqVNWUSWfSH20majBAwWx/J+7u837BiBQ8mfloBEUrcNmTHMVJabc9IMn1Pz1r2pGkIkrCmLIYHdysybPPVyaJ8sQasdgjvDV25HiPf4C6MwiW2d3ikYbtrGOwyNEKLMl/wpRzQnfpQzRsdTU2vyDx4zwyMn/5Xx/XWXGLiNSVzPul33ETt37/eAzOv0zSzYIy4dQx8XOH30LQ7S+QYAoA74zifp0r3ahKdxzK7Q5Vym2CdUufb/rqUN7TSKyeadQuQ/iqVfEsvv1HIXzws2L0NeyW5KLImRTe1eO14AQgXF6owAu4o754dxWPalgg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EL2Slr0CGMmoitYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFRZ1hGNm93QXU0bzc1NGR4V1BhbGdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABkqGLoaoB6QEAAADglSXxP/EBAAAA4Ob48z/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HlEjBUGhDQAAAGCXg2BB+A2AgNDumQuwDvyC28MB4g4Mqo0Gx40G1Y4G8JAGyA8D4hncCkVtQXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTVM0d05UWXlNRE00T1RNNE1EZzBOeklzTFRFc0xURXNNUzR3TURBd01USXpMREV6Tnk0MU56TXhOemd3T0RZMk16VTJOaXd3TGpVNE1UVTFOVEk1TlRjek5UazJOeklzTFRFZDRpL2NTeUM2dVpBRUxacVptVDQxQUFDQVAwb09DTUNINGdRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJd0lmaUJCRUFBQUFBQUFBQUFGb0hDTUNINGdRUUFGb0hDS3J6bGdNUUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJd0lmaUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBSEVBQUFCQUZQSUpQM2tBQUFDZ2puWWdQNEVCQUFBQWdNRWRkRUdKQVFBQUFHQy9WVnRCa1FFQUFBQllNZk42UVprQkFBQUFvQ3NvZTBHaEFRQUFBTUI2YzJKQnFRRUFBQUNBOURDQ1FlZ0JBWUFDbEFPS0FqNHdMakF3TlRZd055d3hMakF3TURBd01Dd3hMakEwTnpFMk55d3hMakl6TXpNMk9Dd3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSURaQWdBL3A0M21RMVpCNFFLZ1o4dzFURXBFUWVrQ0JKZFNjQllZcFVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QXl1UnQrT21IdDgvd1FOSyt1SE92MmZpUDhrRDZxeEJNUzVGNWovUkEyL05Jc0JWdGV3LytnTU5DZ2xQY21SbGNsUnBaWElRQS9vREVRb05TWFJsYlZCeWFXTmxWR2xsY2hBRCtnTUpDZ1ZKYzA1UVFoQUIrZ01MQ2dkU2IybFVhV1Z5RUFPQkJBQUFBT0F6NEFNL2lRUUFBQUFncjlYOFBwQUVtd09ZQk1hYWtlVlVvQVR3dTVuc0JLZ0VnUEtMcUFtNEJKQzI4cnNFd0FTQThvdW9DY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEZ2N2ZDJQNkVGQUFBQUFBQUE4RCtwQlFBQUFPQXh3ZkEvc1FVQUFBQkE0THZ6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQIKFvoZkwYKEgoMdm91Y2hlcl9sZW5zEgIQAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF81MjA1MzA3MjE5MQoNCgdpc192c2t1EgIoAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB+AgICAoICBLsgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 52053072191,
"shopid": 592127666,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mi8iruolce8395\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,298463379,1718093079,1049127,1049112,822059908662278,834403089593352,825465608497696,822120592853526,298488495,2023641,298468389,1718088045],\"merge_rank\":0,\"model_id\":335296117529,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mi8iruolce8395\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,298463379,1718093079,1049127,1049112,822059908662278,834403089593352,825465608497696,822120592853526,298488495,2023641,298468389,1718088045],\"merge_rank\":0,\"model_id\":335296117529,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EL2Slr0CGMmoitYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFRZ1hGNm93QXU0bzc1NGR4V1BhbGdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABkqGLoaoB6QEAAADglSXxP/EBAAAA4Ob48z/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HlEjBUGhDQAAAGCXg2BB+A2AgNDumQuwDvyC28MB4g4Mqo0Gx40G1Y4G8JAGyA8D4hncCkVtQXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTVM0d05UWXlNRE00T1RNNE1EZzBOeklzTFRFc0xURXNNUzR3TURBd01USXpMREV6Tnk0MU56TXhOemd3T0RZMk16VTJOaXd3TGpVNE1UVTFOVEk1TlRjek5UazJOeklzTFRFZDRpL2NTeUM2dVpBRUxacVptVDQxQUFDQVAwb09DTUNINGdRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJd0lmaUJCRUFBQUFBQUFBQUFGb0hDTUNINGdRUUFGb0hDS3J6bGdNUUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJd0lmaUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBSEVBQUFCQUZQSUpQM2tBQUFDZ2puWWdQNEVCQUFBQWdNRWRkRUdKQVFBQUFHQy9WVnRCa1FFQUFBQllNZk42UVprQkFBQUFvQ3NvZTBHaEFRQUFBTUI2YzJKQnFRRUFBQUNBOURDQ1FlZ0JBWUFDbEFPS0FqNHdMakF3TlRZd055d3hMakF3TURBd01Dd3hMakEwTnpFMk55d3hMakl6TXpNMk9Dd3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSURaQWdBL3A0M21RMVpCNFFLZ1o4dzFURXBFUWVrQ0JKZFNjQllZcFVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QXl1UnQrT21IdDgvd1FOSyt1SE92MmZpUDhrRDZxeEJNUzVGNWovUkEyL05Jc0JWdGV3LytnTU5DZ2xQY21SbGNsUnBaWElRQS9vREVRb05TWFJsYlZCeWFXTmxWR2xsY2hBRCtnTUpDZ1ZKYzA1UVFoQUIrZ01MQ2dkU2IybFVhV1Z5RUFPQkJBQUFBT0F6NEFNL2lRUUFBQUFncjlYOFBwQUVtd09ZQk1hYWtlVlVvQVR3dTVuc0JLZ0VnUEtMcUFtNEJKQzI4cnNFd0FTQThvdW9DY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEZ2N2ZDJQNkVGQUFBQUFBQUE4RCtwQlFBQUFPQXh3ZkEvc1FVQUFBQkE0THZ6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQIKFvoZkwYKEgoMdm91Y2hlcl9sZW5zEgIQAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF81MjA1MzA3MjE5MQoNCgdpc192c2t1EgIoAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB+AgICAoICBLsgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52053072191",
"debug_info": null
},
{
"item_basic": {
"itemid": 26970879014,
"shopid": 85961994,
"name": "Midea AC Inverter 1 PK MSIAF-09CRDN2X / 1PK MSIAF-09CRDN2",
"label_ids": [
844931064601283,
13,
38,
39,
47,
1000501,
1000509,
1400095067,
1400285005,
1400066568,
1718093079,
2018618,
2018619,
1012729,
2153644,
1718087960,
1428713,
2213652,
298463379,
825465608497696,
822059908662278,
834403089593352,
822120592853526,
700005490,
1049120,
1049122,
1059152,
700005495,
298468389,
1718088045
],
"image": "id-11134207-7rash-m4qyzy3xyepq11",
"images": [
"id-11134207-7rash-m4qyzy3xyepq11",
"id-11134207-7rase-m3vmh23n1skuf8",
"id-11134207-7rash-m4qyzy3xzta6d3",
"sg-11134201-7rfi0-m3vm8ls8c9eede",
"sg-11134201-7rfif-m3vm8lyc3bbv6e",
"sg-11134201-7rfid-m3vm8m3lvnh9b4",
"sg-11134201-7rfgn-m3vm8m9znnyzbc",
"sg-11134201-7rfig-m3vm8mhhbcx3ab",
"sg-11134201-7rfi9-m3vm8mn1384n99"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1734409964,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 379900000000,
"price_min": 379900000000,
"price_max": 379900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmit-m4qz0yt84l6ibe.16000081736308041.mp4",
"thumb_url": "id-11110105-6kmit-m4qz0yt84l6ibe_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6kmit-m4qz0yt84l6ibe",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmit-m4qz0yt84l6ibe.16000081736308041.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmit-m4qz0yt84l6ibe.16000081736308041.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmit-m4qz0yt84l6ibe.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Pemasangan",
"options": [
"Tanpa Pasang",
"Plus Pasang"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 379900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 247270633032,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 379900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": " Sajun Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 677385979,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWia1P0U88bf08Dk1KPyfv0nMQk1698VRLn1vV4De1QEe6Li0gR32VjLPAnFY2if+uBSvSx7jS0MVA+cHkPvp4eWFfXWUobR5PhpK5BFGdk7PT5Vd/H4W9VOfhvuLHlQNGus4f2VqtDNx22rH0wS1w7a9AURPdXcNYUb3oJrxEREn2sweisEmUl89dg6BmBKHfWskeRo558bPxki/EF2WqNkb7i7itLKmlscnd/E3U12iq4nsZGK5f/XbyclxKhdgUDJevk6XMqKUP2k+g4e/Qh2fId1DirvpcwkFg3A10iy5D2bGbP47aXz+l1FZVaSHJdnTJZ8uA8yVzCDWVDeqs6zxwUt3m0Wc0QkxmcIcuxofI49DlwzKVeF4OavQ4Bb/tMMSGXC2gIbL401DfF3Mvu8moTxrqhrasEFCCcSC3pG7uPU4+N6kEziTzWBlkGK32fw3rJHlibz7dETu891T8tH8GWIYK+SwZW6xmMeOBPVcyw==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPutgMMCGLag1tcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTFQMFU4OGJmMDhEazFLUHlmdjBuTVFrMTY5OFZSTG4xdlY0RGUxUUVlNkxpMGdSMzJWakxQQW5GWTJpZit1QlN2U3g3alMwTVZBK2NIa1B2cDRlV0ZmWFdVb2JSNVBocEs1QkZHZGs3UFQ1VmQvSDRXOVZPZmh2dUxIbFFOR3VzNGYyVnF0RE54MjJySDB3UzF3N2E5QVVSUGRYY05ZVWIzb0pyeEVSRW4yc3dlaXNFbVVsODlkZzZCbUJLSGZXc2tlUm81NThiUHhraS9FRjJXcU5rYjdpN2l0TEttbHNjbmQvRTNVMTJpcTRuc1pHSzVmL1hieWNseEtoZGdVREpldms2WE1xS1VQMmsrZzRlL1FoMmZJZDFEaXJ2cGN3a0ZnM0ExMGl5NUQyYkdiUDQ3YVh6K2wxRlpWYVNISmRuVEpaOHVBOHlWekNEV1ZEZXFzNnp4d1V0M20wV2MwUWt4bWNJY3V4b2ZJNDlEbHd6S1ZlRjRPYXZRNEJiL3RNTVNHWEMyZ0liTDQwMURmRjNNdnU4bW9UeHJxaHJhc0VGQ0NjU0MzcEc3dVBVNCtONmtFemlUeldCbGtHSzMyZnczckpIbGliejdkRVR1ODkxVDh0SDhHV0lZSytTd1pXNnhtTWVPQlBWY3l3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB4qDlod4B6QEAAADglSXxP/EBAAAAQKKL8j/IDA/gDAHpDAAAAEDQ3Ko/iQ17FK5H4XqUP5ENSOF6FJZKBkGhDQAAAEBFamFB+A2AgK6v5AuwDq7TjtkB4g4Mqo0Gx40G1Y4G8JAGyA8E4hnYCkVtc3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0ME1EWTROemt3TnpZMk5EazNNVGt6TkN3dE1Td3RNU3d3TGpVMU56WXhPRFkzTmpBeE1qazNNamNzTVRJdU1qUXdNalUxTURZME5EVTBPRFkyTERBdU5qRXpNamczT0Rnek56QTJPVFkzTkN3dE1SMmFNK2hMSUtta3JRUXRtcG1aUGpVQUFJQS9TZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0Rnanc5K0VFRVFBQUFBQUFBQUFBU2c0SWlJbmlCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEluUHJoQkJFQUFBQUFBQUFBQUZJT0NQRDM0UVFSQUFBQUFBQUFBQUJTRGdpSWllSUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2djSWlJbmlCQkFBV2djSXF2T1dBeEFBV2djSXJQT1dBeEFBV2djSXEvT1dBeEFBV2drSWdJQ0FnSUFFRUFCYUJ3aWMrdUVFRUFCYUJ3anc5K0VFRUFCaURnanc5K0VFRVFBQUFBQUFBQUFBWWc0SWlJbmlCQkVBQUFBQUFBQUFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NKejY0UVFSQUFBQUFBQUFBQUJwU0hrV01RZXdBc0Z4QUFBQUlMdWxEajk1QUFBQWdFL0hGeitCQVFBQUFBQU8vM2hCaVFFQUFBQmc3ZTFYUVpFQkFBQUFXSW42ZmtHWkFRQUFBS0JjMzRCQm9RRUFBQUJBQUNkZ1Fha0JBQUFBc0J6cGhFR0tBajR3TGpBd05UZzVOeXd4TGpBd01EQXdNQ3d4TGpBd09UY3hNaXd4TGpJek1qZzJPU3d4TGpNd01EQXdNQ3d4TGpRd01EQXdNQ3d4TGpVd01EQXdNSmtDTXpNek16TXoweitoQXEzdk5IakNTY0ZCd1FKSWVSWXhCN0FDd2NvQ0N3Z0JFVWg1RmpFSHNBTEJ5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnQ2F1Q01ML0dCQjRRSUFkRUVLakh4RVFla0NJbjhoNW9KVHFVRzVBMlFOU0kzZ0JlQS93UU8xdmMzdmlFM2lQOGtEdmZvMEc1Qjc1VC9SQTlZRDZsV285ZXMvZ1FRQUFBQWdVZzBHUDRrRUFBQUE0S0xrQUQrUUJKc0RtQVQrM3FlQ2dsT2dCSmJNNXZJSXFBU0E4b3VvQ2JnRTZxV2xOY0FFZ1BLTHFBbkpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBQUk0bmVEK2hCUUFBQUFBQUFQQS9xUVVBQUFBQXlDZndQN0VGQUFBQTROUzU4eis1QlFBQUFNRE16UFEvd1FVQUFBQmdabWIyUDhrRkFBQUFBQUFBK0Q4PeoZAgoZ+hmTBgoUCg51c2VyX2JsYWNrbGlzdBICKAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yNjk3MDg3OTAxNAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChQKDnNob3BfYmxhY2tsaXN0EgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAGwH4CAgIDogIGYgAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 26970879014,
"shopid": 85961994,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1476094,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m4qyzy3xyepq11\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,13,38,39,47,1000501,1000509,1400095067,1400285005,1400066568,1718093079,2018618,2018619,1012729,2153644,1718087960,1428713,2213652,298463379,825465608497696,822059908662278,834403089593352,822120592853526,700005490,1049120,1049122,1059152,700005495,298468389,1718088045],\"merge_rank\":0,\"model_id\":247270633032,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":1476094,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m4qyzy3xyepq11\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,13,38,39,47,1000501,1000509,1400095067,1400285005,1400066568,1718093079,2018618,2018619,1012729,2153644,1718087960,1428713,2213652,298463379,825465608497696,822059908662278,834403089593352,822120592853526,700005490,1049120,1049122,1059152,700005495,298468389,1718088045],\"merge_rank\":0,\"model_id\":247270633032,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPutgMMCGLag1tcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTFQMFU4OGJmMDhEazFLUHlmdjBuTVFrMTY5OFZSTG4xdlY0RGUxUUVlNkxpMGdSMzJWakxQQW5GWTJpZit1QlN2U3g3alMwTVZBK2NIa1B2cDRlV0ZmWFdVb2JSNVBocEs1QkZHZGs3UFQ1VmQvSDRXOVZPZmh2dUxIbFFOR3VzNGYyVnF0RE54MjJySDB3UzF3N2E5QVVSUGRYY05ZVWIzb0pyeEVSRW4yc3dlaXNFbVVsODlkZzZCbUJLSGZXc2tlUm81NThiUHhraS9FRjJXcU5rYjdpN2l0TEttbHNjbmQvRTNVMTJpcTRuc1pHSzVmL1hieWNseEtoZGdVREpldms2WE1xS1VQMmsrZzRlL1FoMmZJZDFEaXJ2cGN3a0ZnM0ExMGl5NUQyYkdiUDQ3YVh6K2wxRlpWYVNISmRuVEpaOHVBOHlWekNEV1ZEZXFzNnp4d1V0M20wV2MwUWt4bWNJY3V4b2ZJNDlEbHd6S1ZlRjRPYXZRNEJiL3RNTVNHWEMyZ0liTDQwMURmRjNNdnU4bW9UeHJxaHJhc0VGQ0NjU0MzcEc3dVBVNCtONmtFemlUeldCbGtHSzMyZnczckpIbGliejdkRVR1ODkxVDh0SDhHV0lZSytTd1pXNnhtTWVPQlBWY3l3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB4qDlod4B6QEAAADglSXxP/EBAAAAQKKL8j/IDA/gDAHpDAAAAEDQ3Ko/iQ17FK5H4XqUP5ENSOF6FJZKBkGhDQAAAEBFamFB+A2AgK6v5AuwDq7TjtkB4g4Mqo0Gx40G1Y4G8JAGyA8E4hnYCkVtc3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0ME1EWTROemt3TnpZMk5EazNNVGt6TkN3dE1Td3RNU3d3TGpVMU56WXhPRFkzTmpBeE1qazNNamNzTVRJdU1qUXdNalUxTURZME5EVTBPRFkyTERBdU5qRXpNamczT0Rnek56QTJPVFkzTkN3dE1SMmFNK2hMSUtta3JRUXRtcG1aUGpVQUFJQS9TZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0Rnanc5K0VFRVFBQUFBQUFBQUFBU2c0SWlJbmlCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEluUHJoQkJFQUFBQUFBQUFBQUZJT0NQRDM0UVFSQUFBQUFBQUFBQUJTRGdpSWllSUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2djSWlJbmlCQkFBV2djSXF2T1dBeEFBV2djSXJQT1dBeEFBV2djSXEvT1dBeEFBV2drSWdJQ0FnSUFFRUFCYUJ3aWMrdUVFRUFCYUJ3anc5K0VFRUFCaURnanc5K0VFRVFBQUFBQUFBQUFBWWc0SWlJbmlCQkVBQUFBQUFBQUFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NKejY0UVFSQUFBQUFBQUFBQUJwU0hrV01RZXdBc0Z4QUFBQUlMdWxEajk1QUFBQWdFL0hGeitCQVFBQUFBQU8vM2hCaVFFQUFBQmc3ZTFYUVpFQkFBQUFXSW42ZmtHWkFRQUFBS0JjMzRCQm9RRUFBQUJBQUNkZ1Fha0JBQUFBc0J6cGhFR0tBajR3TGpBd05UZzVOeXd4TGpBd01EQXdNQ3d4TGpBd09UY3hNaXd4TGpJek1qZzJPU3d4TGpNd01EQXdNQ3d4TGpRd01EQXdNQ3d4TGpVd01EQXdNSmtDTXpNek16TXoweitoQXEzdk5IakNTY0ZCd1FKSWVSWXhCN0FDd2NvQ0N3Z0JFVWg1RmpFSHNBTEJ5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnQ2F1Q01ML0dCQjRRSUFkRUVLakh4RVFla0NJbjhoNW9KVHFVRzVBMlFOU0kzZ0JlQS93UU8xdmMzdmlFM2lQOGtEdmZvMEc1Qjc1VC9SQTlZRDZsV285ZXMvZ1FRQUFBQWdVZzBHUDRrRUFBQUE0S0xrQUQrUUJKc0RtQVQrM3FlQ2dsT2dCSmJNNXZJSXFBU0E4b3VvQ2JnRTZxV2xOY0FFZ1BLTHFBbkpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBQUk0bmVEK2hCUUFBQUFBQUFQQS9xUVVBQUFBQXlDZndQN0VGQUFBQTROUzU4eis1QlFBQUFNRE16UFEvd1FVQUFBQmdabWIyUDhrRkFBQUFBQUFBK0Q4PeoZAgoZ+hmTBgoUCg51c2VyX2JsYWNrbGlzdBICKAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yNjk3MDg3OTAxNAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChQKDnNob3BfYmxhY2tsaXN0EgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAGwH4CAgIDogIGYgAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26970879014",
"debug_info": null
},
{
"item_basic": {
"itemid": 28704559702,
"shopid": 85961994,
"name": "[FREE PACKING KAYU KARGO] Sharp AC Split 1PK AH-A9ZEY / AC Sharp Standard 1 PK AHA9ZEY",
"label_ids": [
13,
38,
39,
47,
1000501,
1000509,
1400095067,
1400285005,
844931064601283,
1400066568,
1718093079,
1918643,
1428713,
1718087960,
2018618,
2018619,
1012729,
1015914,
700190087,
2153644,
700830032,
1400285055,
2213652,
298463379,
1059152,
1049122,
822059908662278,
834403089593352,
825465608497696,
822120592853526,
298468389,
1718088045
],
"image": "id-11134207-81ztj-mfhqixml30264b",
"images": [
"id-11134207-81ztj-mfhqixml30264b",
"sg-11134201-7rdye-lxc1a0fa29nq7a",
"sg-11134201-7rdwy-lxc1a0y5anns55",
"sg-11134201-7rd6l-lwgppgttutmyc5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1720149121,
"sold": 26,
"historical_sold": 79,
"liked": false,
"liked_count": 75,
"view_count": null,
"catid": 100010,
"brand": "Sharp",
"cmt_count": 17,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 303900000000,
"price_min": 303900000000,
"price_max": 303900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Pemasangan",
"options": [
"Tanpa Pasang",
"Plus Pasang"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.647058823529412,
"rating_count": [
17,
0,
0,
3,
0,
14
],
"rcount_with_context": 3,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 303900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 260684884016,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 303900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 79,
"rounded_local_monthly_sold_count": 26,
"local_monthly_sold_count_text": "26",
"rounded_display_sold_count": 79,
"display_sold_count_text": "79"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": " Sajun Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 640532205,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiZzA3StcncznUIqz2AqLjVS2Q7rEtU6Qbtts5g5uaFBe1PEAbx6dXVv3ZRYaP5IMl6b1tmIe5h0AdtLWkXhiAdcfOa/3Pq0tI2c7ntB+3txMrBdHQmjwJ75f9oNBsuJ2Luk80/G18KpldcwIO1zn0e6TNj5YcvH1nNDe0kFpuhcmbyqmsg+gRkQf3r/Ng+Un4pRH5n53J0ykxkuWfJ5O+r4M9Uy5axEIHu7zdh7IryuqcLzY4oKeEebyLFBQk5fqA7gg3gn7Gjw+pnzpDT3LnLOxWP9+2foRSZKtxe4ct4JtpzwZTlr7185hGEpuFCB31Du+9JLQejtq9Z1vL3Ls+Kqkj4TmJ7AnKifaNRmiyCgwA8J8EwYj6IuFuiR04ugm87YnelwrHZxC/CIcMGWCIdc2dMCWPLy6UTjYusceaad7Jo0SqSyu3aGBIoJtOUmIyBKqi2UFAMEm+HOpwt5e6LKr1shNifOcxL7FAYpZh/yFg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EO39trECGNqYy9ABMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWnpBM1N0Y25jem5VSXF6MkFxTGpWUzJRN3JFdFU2UWJ0dHM1ZzV1YUZCZTFQRUFieDZkWFZ2M1pSWWFQNUlNbDZiMXRtSWU1aDBBZHRMV2tYaGlBZGNmT2EvM1BxMHRJMmM3bnRCKzN0eE1yQmRIUW1qd0o3NWY5b05Cc3VKMkx1azgwL0cxOEtwbGRjd0lPMXpuMGU2VE5qNVljdkgxbk5EZTBrRnB1aGNtYnlxbXNnK2dSa1FmM3IvTmcrVW40cFJINW41M0oweWt4a3VXZko1TytyNE05VXk1YXhFSUh1N3pkaDdJcnl1cWNMelk0b0tlRWVieUxGQlFrNWZxQTdnZzNnbjdHancrcG56cERUM0xuTE94V1A5KzJmb1JTWkt0eGU0Y3Q0SnRwendaVGxyNzE4NWhHRXB1RkNCMzFEdSs5SkxRZWp0cTlaMXZMM0xzK0txa2o0VG1KN0FuS2lmYU5SbWl5Q2d3QThKOEV3WWo2SXVGdWlSMDR1Z204N1luZWx3ckhaeEMvQ0ljTUdXQ0lkYzJkTUNXUEx5NlVUall1c2NlYWFkN0pvMFNxU3l1M2FHQklvSnRPVW1JeUJLcWkyVUZBTUVtK0hPcHd0NWU2TEtyMXNoTmlmT2N4TDdGQVlwWmgveUZnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB5YDN3dgB6QEAAADglSXxP/EBAAAAwGui8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENPgrX42CeQ0GhDQAAAGR3p55B+A2AgNTB5giwDsml4ZkB4g4Mqo0Gx40G1Y4G8JAGyA8F4hncCkVtdzBMamsxTEMweExDMHhMQzB4TEMweExEVXNNU3d3TGpjeE1URTJNRFk1TVRBMk9EUTRPVFFzTUM0NUxDMHhMREF1TXpnMk1qWXpPVEF4T0RZeU9EVXpPRFlzTUM0d01UUXlOVEUwTVRBek5qRTVPRFV3TWl3d0xqVTRNVFUxTlRJNU5UY3pOVGsyTnpJc0xURWQ0aS9jU3lEWXU2YzlMV1ptbmtBMUFBQ0FQemtBWUVwNFdwSVdRa0ZNQlJaQWU0dHRRa29RQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NLdnpsZ01SQUFBQUFBQUFBQUJTRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGSU9DS3Z6bGdNUkFBQUFBQUFBQUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCYUNRaUFnSUNBZ0FRUUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBR2tQck1nb1c1bER3WEVBQUFEZ2NORU9QM2tBQUFBQWlYQUVQNEVCQUFBQTRMUEZja0dKQVFBQUFPQkxKMFJCa1FFQUFBQmNuVXAxUVprQkFBQUE0TEpYZVVHaEFRQUFBT0FNTlV0QnFRRUFBQUI4Vkw1OFFlZ0JBWUFDbEFPS0FqNHdMakF3TlRnMU1pd3hMakF3TURBd01Dd3hMakF4TXpJd01Dd3hMakkwTXpVNE15d3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NBQUFBQUFBQUZFQ2hBcTN2TkhqQ1NjRkJ3UUlQck1nb1c1bER3Y29DQ3dnQkVRK3N5Q2hibVVQQnlnSUxDQUlSckxyUklCNWxROEhaQWdBYnZLay9ZbFpCNFFMQWtUcWhiRFVzUWVrQytzNWorSFN3cFVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQXdCZ1NuaGFraFpDb1FOTUJSWkFlNHR0UXJrREl1L1NKczBJNGovQkF6YnlYK25QLytNL3lRT2RpeXZLK3FQbVA5RUR2VEF5Uk1ocDdELzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFMNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBSUVYUkJqK0pCQUFBQUNETGVBSS9rQVNiQTVnRS90Nm5nb0pUb0FUbjBOR1ZDNmdFZ0x6QmxndTRCSm5yYjhBRWdMekJsZ3ZKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQVFJZjRkeitoQlFBQUFBQUFBUEEvcVFVQUFBQmdFVGJ3UDdFRkFBQUE0TGJsOHorNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQS2TcRN8hkDmr48+hmTBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yODcwNDU1OTcwMgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH4CAgICggIAoyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 28704559702,
"shopid": 85961994,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":128574,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mfhqixml30264b\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,1918643,1428713,1718087960,2018618,2018619,1012729,1015914,700190087,2153644,700830032,1400285055,2213652,298463379,1059152,1049122,822059908662278,834403089593352,825465608497696,822120592853526,298468389,1718088045],\"merge_rank\":0,\"model_id\":260684884016,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":128574,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mfhqixml30264b\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,1918643,1428713,1718087960,2018618,2018619,1012729,1015914,700190087,2153644,700830032,1400285055,2213652,298463379,1059152,1049122,822059908662278,834403089593352,825465608497696,822120592853526,298468389,1718088045],\"merge_rank\":0,\"model_id\":260684884016,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EO39trECGNqYy9ABMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWnpBM1N0Y25jem5VSXF6MkFxTGpWUzJRN3JFdFU2UWJ0dHM1ZzV1YUZCZTFQRUFieDZkWFZ2M1pSWWFQNUlNbDZiMXRtSWU1aDBBZHRMV2tYaGlBZGNmT2EvM1BxMHRJMmM3bnRCKzN0eE1yQmRIUW1qd0o3NWY5b05Cc3VKMkx1azgwL0cxOEtwbGRjd0lPMXpuMGU2VE5qNVljdkgxbk5EZTBrRnB1aGNtYnlxbXNnK2dSa1FmM3IvTmcrVW40cFJINW41M0oweWt4a3VXZko1TytyNE05VXk1YXhFSUh1N3pkaDdJcnl1cWNMelk0b0tlRWVieUxGQlFrNWZxQTdnZzNnbjdHancrcG56cERUM0xuTE94V1A5KzJmb1JTWkt0eGU0Y3Q0SnRwendaVGxyNzE4NWhHRXB1RkNCMzFEdSs5SkxRZWp0cTlaMXZMM0xzK0txa2o0VG1KN0FuS2lmYU5SbWl5Q2d3QThKOEV3WWo2SXVGdWlSMDR1Z204N1luZWx3ckhaeEMvQ0ljTUdXQ0lkYzJkTUNXUEx5NlVUall1c2NlYWFkN0pvMFNxU3l1M2FHQklvSnRPVW1JeUJLcWkyVUZBTUVtK0hPcHd0NWU2TEtyMXNoTmlmT2N4TDdGQVlwWmgveUZnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB5YDN3dgB6QEAAADglSXxP/EBAAAAwGui8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENPgrX42CeQ0GhDQAAAGR3p55B+A2AgNTB5giwDsml4ZkB4g4Mqo0Gx40G1Y4G8JAGyA8F4hncCkVtdzBMamsxTEMweExDMHhMQzB4TEMweExEVXNNU3d3TGpjeE1URTJNRFk1TVRBMk9EUTRPVFFzTUM0NUxDMHhMREF1TXpnMk1qWXpPVEF4T0RZeU9EVXpPRFlzTUM0d01UUXlOVEUwTVRBek5qRTVPRFV3TWl3d0xqVTRNVFUxTlRJNU5UY3pOVGsyTnpJc0xURWQ0aS9jU3lEWXU2YzlMV1ptbmtBMUFBQ0FQemtBWUVwNFdwSVdRa0ZNQlJaQWU0dHRRa29RQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NLdnpsZ01SQUFBQUFBQUFBQUJTRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGSU9DS3Z6bGdNUkFBQUFBQUFBQUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCYUNRaUFnSUNBZ0FRUUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBR2tQck1nb1c1bER3WEVBQUFEZ2NORU9QM2tBQUFBQWlYQUVQNEVCQUFBQTRMUEZja0dKQVFBQUFPQkxKMFJCa1FFQUFBQmNuVXAxUVprQkFBQUE0TEpYZVVHaEFRQUFBT0FNTlV0QnFRRUFBQUI4Vkw1OFFlZ0JBWUFDbEFPS0FqNHdMakF3TlRnMU1pd3hMakF3TURBd01Dd3hMakF4TXpJd01Dd3hMakkwTXpVNE15d3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NBQUFBQUFBQUZFQ2hBcTN2TkhqQ1NjRkJ3UUlQck1nb1c1bER3Y29DQ3dnQkVRK3N5Q2hibVVQQnlnSUxDQUlSckxyUklCNWxROEhaQWdBYnZLay9ZbFpCNFFMQWtUcWhiRFVzUWVrQytzNWorSFN3cFVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQXdCZ1NuaGFraFpDb1FOTUJSWkFlNHR0UXJrREl1L1NKczBJNGovQkF6YnlYK25QLytNL3lRT2RpeXZLK3FQbVA5RUR2VEF5Uk1ocDdELzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFMNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBSUVYUkJqK0pCQUFBQUNETGVBSS9rQVNiQTVnRS90Nm5nb0pUb0FUbjBOR1ZDNmdFZ0x6QmxndTRCSm5yYjhBRWdMekJsZ3ZKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQVFJZjRkeitoQlFBQUFBQUFBUEEvcVFVQUFBQmdFVGJ3UDdFRkFBQUE0TGJsOHorNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQS2TcRN8hkDmr48+hmTBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yODcwNDU1OTcwMgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH4CAgICggIAoyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28704559702",
"debug_info": null
},
{
"item_basic": {
"itemid": 25225901596,
"shopid": 1084191383,
"name": "AC Midea 1/2 PK 05CRN STANDARD FREE PASANG + AKSESORIS Raja AC Bekasi",
"label_ids": [
298458395,
1015914,
700190087,
1718087960,
1428713,
1049112,
822059908662278,
822120592853526,
298463379,
1400285055,
1718093079,
837860934119952,
1918643,
2018619,
2023641,
298893311,
825465608497696,
1059151,
700830032,
298933384,
1718088045,
298468389
],
"image": "id-11134207-7rasc-m0oiln79cvvg07",
"images": [
"id-11134207-7rasc-m0oiln79cvvg07",
"id-11134207-7rase-m0oiln79eafw77",
"id-11134207-7ra0i-md5l15xliensb0",
"id-11134207-7r992-lw5miv392snee8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1713777082,
"sold": 9,
"historical_sold": 90,
"liked": false,
"liked_count": 131,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 56,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 248400000000,
"price_min": 248400000000,
"price_max": 248400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Pembelian",
"options": [
"UNIT ONLY",
"Unit Only + Material",
"+ PASANG",
"+ Pasang Tradein"
],
"images": [
"id-11134207-7r98z-lw5miv39477u88",
"id-11134207-7ra0u-mc66ettl19y911",
"id-11134207-7ra0s-md5l15xljt8815",
"id-11134207-7ra0k-mc66ettkzvdt13"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.894736842105263,
"rating_count": [
57,
0,
0,
2,
2,
53
],
"rcount_with_context": 20,
"rcount_with_image": 20
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 247400000000,
"strikethrough_price": 248400000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1303365536858112,
"discount_text": null,
"model_id": 59415414470,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1303365536858112,
"voucher_code": "RAJAVPB2",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1764833040,
"end_time": 1772902740,
"valid_duration": null
},
"groups": [],
"min_spend": 200000000000
},
"recommended_platform_voucher_info": null,
"original_price": 248400000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 90,
"rounded_local_monthly_sold_count": 9,
"local_monthly_sold_count_text": "9",
"rounded_display_sold_count": 90,
"display_sold_count_text": "90"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Raja AC Bekasi",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 671496965,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiZEGDSXdClF5GoO63eIOnmEyf3U50h5pLDshxFoO4I/6h3pHE9yPrM2YMhTcyDbdTSPcw6GJneE4bR+RsIDFJzf/Dn3dwYpqrqo6Dyo+66kcxEzl7MAv/+CTlZZlbsVyzSZtUPcB9oYQPfHlM5IXOxc7UEOAscBdvMdxQVA/ToUw+TBTa2vWYctCseLvRo40RDCaldy0VD7PvosMyAc4tOYakaOyjZuARhps/2JfG7nAGTvB2xL/vZDPmG/7D7DfIRYYFeMJ1fjvQMnr27iXozoj/e8xoSDs+A+L/SzJUQPRfRwEgAKzKU5vJSyznfGz/+V2m8/DIdxVGuxFdL8OwWTPnM2X4m4BlJ5ujSJJE4tLgQKkaOCWgA7KzRrGJ01nlHBlGaYVOIPzALsFeZ5/nga53f4ETvjco9jNiSFeiTSazoTo/bESYxRd5TNcBpzx9ex9kUvpbKxDlxJUzD90XUtjYxwZ47SoqX4m0YLQ4mz1A==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EIX2mMACGM/JjtcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWkVHRFNYZENsRjVHb082M2VJT25tRXlmM1U1MGg1cExEc2h4Rm9PNEkvNmgzcEhFOXlQck0yWU1oVGN5RGJkVFNQY3c2R0puZUU0YlIrUnNJREZKemYvRG4zZHdZcHFycW82RHlvKzY2a2N4RXpsN01Bdi8rQ1RsWlpsYnNWeXpTWnRVUGNCOW9ZUVBmSGxNNUlYT3hjN1VFT0FzY0Jkdk1keFFWQS9Ub1V3K1RCVGEydldZY3RDc2VMdlJvNDBSRENhbGR5MFZEN1B2b3NNeUFjNHRPWWFrYU95alp1QVJocHMvMkpmRzduQUdUdkIyeEwvdlpEUG1HLzdEN0RmSVJZWUZlTUoxZmp2UU1ucjI3aVhvem9qL2U4eG9TRHMrQStML1N6SlVRUFJmUndFZ0FLektVNXZKU3l6bmZHei8rVjJtOC9ESWR4Vkd1eEZkTDhPd1dUUG5NMlg0bTRCbEo1dWpTSkpFNHRMZ1FLa2FPQ1dnQTdLelJyR0owMW5sSEJsR2FZVk9JUHpBTHNGZVo1L25nYTUzZjRFVHZqY285ak5pU0ZlaVRTYXpvVG8vYkVTWXhSZDVUTmNCcHp4OWV4OWtVdnBiS3hEbHhKVXpEOTBYVXRqWXh3WjQ3U29xWDRtMFlMUTRtejFBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAButGHqKQI6QEAAACgxB3xP/EBAAAAgACu8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN4XoUrvLHKUGhDQAAAJg1JIRB+A2AgKLjzAiwDq+x/ZUB4g4Mqo0Gx40G1Y4G8JAGyA8G4hnsCkVuOHhMall5TmpJd09EY3dNemsxTURrM01qY3NMVEVzTFRFc0xURXNMVEVzTVM0Mk5ESTJNelV3TlRRME9UVTVNeklzTVN3d0xqSTROVGczT0RRMk56YzJORGc1TlRZM0xEQXVPU3d0TVN3eExqQXdNREF4TWpNc016UXVPVGM1T1RZNE5ETTBPVEk0Tnprc01DNDFPREUxTlRVeU9UVTNNelU1TmpjeUxDMHhIZUl2M0VzZ3NvMlNGQzJiSjlBL05RQUFnRDg1cS9pU1BWYnZFMEpCQ1JxZ1JMMjNWMEpLRGdpczg1WURFUUFBQUFBQUFBQUFTZzRJblByaEJCRUFBQUFBQUFBQUFFb09DS3Z6bGdNUkFBQUFBQUFBQUFCS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQW9BQ0FCejk1QUFBQTRNU2FBeitCQVFBQUFFQUo4V3RCaVFFQUFBREFabXRuUVpFQkFBQUFBRGl1ZVVHWkFRQUFBS0JNM0hKQm9RRUFBQURBeXAxdlFha0JBQUFBQUpsVmdVSG9BUUdBQXBRRGlnSStNQzR3TURVeU1ETXNNUzR3TURBd01EQXNNUzR3TVRjNU5UUXNNUzR5TXpreE5UVXNNUzR6TURBd01EQXNNUzR6T0RVME1USXNNUzQxTURBd01EQ1pBdG9yNWJFN1NQby9vUUt0N3pSNHdrbkJRY0VDQUFBQUFBQUFBSURLQWdzSUFSRUFBQUFBQUFBQUFNb0NDd2dDRVFBQUFBQUFBQUNBMlFKQWR4UDgxT1ZMUWVFQ0FHOUt6WUI0VEVIcEFwYnVoejlHWTZKQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFPV0ZpeElkM01VUXFFRGxvUmxKWTllV1VLNUF5UVR0bitZMStFL3dRTmdJZmE0WXZ6alA4a0R2cDcwRms0ZDV6L1JBN2ZITkVkbkNPMC8rZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBUDZBdzBLQ1U5eVpHVnlWR2xsY2hBRCtnTVJDZzFKZEdWdFVISnBZMlZVYVdWeUVBT0JCQUFBQUFBS1J3SS9pUVFBQUFCZ1JQbjlQcEFFbXdPWUJNci82Nk9tSHFBRTZZS1M0eHVvQktEVnRhQWx1QVMzMHFPOUNjQUVvTlcxb0NYSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFnTlZQZFQraEJRQUFBQUFBQVBBL3FRVUFBQURnaVVud1A3RUZBQUFBQUpUVDh6KzVCUUFBQU1ETXpQUS93UVVBQUFEZ3BTcjJQOGtGQUFBQUFBQUErRDg96hkEtk3CTfIZA5q+PPoZkwYKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoSCgx2b3VjaGVyX2xlbnMSAhAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI1MjI1OTAxNTk2CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgICAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 25225901596,
"shopid": 1084191383,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":42239667,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasc-m0oiln79cvvg07\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[298458395,1015914,700190087,1718087960,1428713,1049112,822059908662278,822120592853526,298463379,1400285055,1718093079,837860934119952,1918643,2018619,2023641,298893311,825465608497696,1059151,700830032,298933384,1718088045,298468389],\"merge_rank\":0,\"model_id\":59415414470,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":42239667,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasc-m0oiln79cvvg07\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[298458395,1015914,700190087,1718087960,1428713,1049112,822059908662278,822120592853526,298463379,1400285055,1718093079,837860934119952,1918643,2018619,2023641,298893311,825465608497696,1059151,700830032,298933384,1718088045,298468389],\"merge_rank\":0,\"model_id\":59415414470,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EIX2mMACGM/JjtcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWkVHRFNYZENsRjVHb082M2VJT25tRXlmM1U1MGg1cExEc2h4Rm9PNEkvNmgzcEhFOXlQck0yWU1oVGN5RGJkVFNQY3c2R0puZUU0YlIrUnNJREZKemYvRG4zZHdZcHFycW82RHlvKzY2a2N4RXpsN01Bdi8rQ1RsWlpsYnNWeXpTWnRVUGNCOW9ZUVBmSGxNNUlYT3hjN1VFT0FzY0Jkdk1keFFWQS9Ub1V3K1RCVGEydldZY3RDc2VMdlJvNDBSRENhbGR5MFZEN1B2b3NNeUFjNHRPWWFrYU95alp1QVJocHMvMkpmRzduQUdUdkIyeEwvdlpEUG1HLzdEN0RmSVJZWUZlTUoxZmp2UU1ucjI3aVhvem9qL2U4eG9TRHMrQStML1N6SlVRUFJmUndFZ0FLektVNXZKU3l6bmZHei8rVjJtOC9ESWR4Vkd1eEZkTDhPd1dUUG5NMlg0bTRCbEo1dWpTSkpFNHRMZ1FLa2FPQ1dnQTdLelJyR0owMW5sSEJsR2FZVk9JUHpBTHNGZVo1L25nYTUzZjRFVHZqY285ak5pU0ZlaVRTYXpvVG8vYkVTWXhSZDVUTmNCcHp4OWV4OWtVdnBiS3hEbHhKVXpEOTBYVXRqWXh3WjQ3U29xWDRtMFlMUTRtejFBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAButGHqKQI6QEAAACgxB3xP/EBAAAAgACu8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN4XoUrvLHKUGhDQAAAJg1JIRB+A2AgKLjzAiwDq+x/ZUB4g4Mqo0Gx40G1Y4G8JAGyA8G4hnsCkVuOHhMall5TmpJd09EY3dNemsxTURrM01qY3NMVEVzTFRFc0xURXNMVEVzTVM0Mk5ESTJNelV3TlRRME9UVTVNeklzTVN3d0xqSTROVGczT0RRMk56YzJORGc1TlRZM0xEQXVPU3d0TVN3eExqQXdNREF4TWpNc016UXVPVGM1T1RZNE5ETTBPVEk0Tnprc01DNDFPREUxTlRVeU9UVTNNelU1TmpjeUxDMHhIZUl2M0VzZ3NvMlNGQzJiSjlBL05RQUFnRDg1cS9pU1BWYnZFMEpCQ1JxZ1JMMjNWMEpLRGdpczg1WURFUUFBQUFBQUFBQUFTZzRJblByaEJCRUFBQUFBQUFBQUFFb09DS3Z6bGdNUkFBQUFBQUFBQUFCS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQW9BQ0FCejk1QUFBQTRNU2FBeitCQVFBQUFFQUo4V3RCaVFFQUFBREFabXRuUVpFQkFBQUFBRGl1ZVVHWkFRQUFBS0JNM0hKQm9RRUFBQURBeXAxdlFha0JBQUFBQUpsVmdVSG9BUUdBQXBRRGlnSStNQzR3TURVeU1ETXNNUzR3TURBd01EQXNNUzR3TVRjNU5UUXNNUzR5TXpreE5UVXNNUzR6TURBd01EQXNNUzR6T0RVME1USXNNUzQxTURBd01EQ1pBdG9yNWJFN1NQby9vUUt0N3pSNHdrbkJRY0VDQUFBQUFBQUFBSURLQWdzSUFSRUFBQUFBQUFBQUFNb0NDd2dDRVFBQUFBQUFBQUNBMlFKQWR4UDgxT1ZMUWVFQ0FHOUt6WUI0VEVIcEFwYnVoejlHWTZKQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFPV0ZpeElkM01VUXFFRGxvUmxKWTllV1VLNUF5UVR0bitZMStFL3dRTmdJZmE0WXZ6alA4a0R2cDcwRms0ZDV6L1JBN2ZITkVkbkNPMC8rZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBUDZBdzBLQ1U5eVpHVnlWR2xsY2hBRCtnTVJDZzFKZEdWdFVISnBZMlZVYVdWeUVBT0JCQUFBQUFBS1J3SS9pUVFBQUFCZ1JQbjlQcEFFbXdPWUJNci82Nk9tSHFBRTZZS1M0eHVvQktEVnRhQWx1QVMzMHFPOUNjQUVvTlcxb0NYSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFnTlZQZFQraEJRQUFBQUFBQVBBL3FRVUFBQURnaVVud1A3RUZBQUFBQUpUVDh6KzVCUUFBQU1ETXpQUS93UVVBQUFEZ3BTcjJQOGtGQUFBQUFBQUErRDg96hkEtk3CTfIZA5q+PPoZkwYKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoSCgx2b3VjaGVyX2xlbnMSAhAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI1MjI1OTAxNTk2CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgICAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25225901596",
"debug_info": null
},
{
"item_basic": {
"itemid": 18781397042,
"shopid": 85961994,
"name": "Midea AC Portable 1 PK MPF2-09CRN1 Self-Diagnosis and Auto Protection (Free Packing Kayu)",
"label_ids": [
13,
38,
39,
47,
1000501,
1000509,
1400095067,
1400285005,
844931064601283,
1400066568,
1134053,
1015914,
700190087,
1718093079,
1918643,
1718087960,
1428713,
822059908662278,
822120592853526,
834403089593352,
2018618,
2018619,
1012729,
825465608497696,
2153644,
2213652,
298463379,
700005490,
700005495,
1049120,
1059152,
1049122,
2008656,
298468389,
1718088045
],
"image": "id-11134201-7qul6-ljo03lyxoghr60",
"images": [
"id-11134201-7qul6-ljo03lyxoghr60",
"id-11134207-7qukz-ljurk36cyb8nb9",
"id-11134201-7qukz-ljo03m33xtjj1c",
"id-11134201-7qukz-ljo03m3nhjxm31",
"id-11134201-7qukx-ljo03mmspjbv15",
"id-11134201-7qul4-ljo03m33z83z5e",
"id-11134201-7qula-ljo03mh90gtm39",
"id-11134201-7qul4-ljo03m4hgc5b3a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1688178657,
"sold": 0,
"historical_sold": 5,
"liked": false,
"liked_count": 29,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 3,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 389900000000,
"price_min": 389900000000,
"price_max": 389900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1n-m27z5r28122o25.16000081730799632.mp4",
"thumb_url": "id-11110105-7rasa-m27z5zchwxhdbe",
"duration": 40,
"version": 2,
"vid": "id-11110105-6ke1n-m27z5r28122o25",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1n-m27z5r28122o25.16000081730799632.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m27z5r28122o25.16000081730799632.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m27z5r28122o25.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 389900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 235363166233,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 389900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 5,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 5,
"display_sold_count_text": "5"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": " Sajun Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 653344564,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiY/9Il/XoZbI+53wSL5rVV8klUnvegRtpyQRK8lj26Kvf0ZsJdwESCQAx2FoEvj0zLKIbKg3pNiqLe0ivEazpvW/DdKf+ktnP8sLCjkqNJE67xYmGLAyqbybFSm82wzi8UrHF10wI80OiveaFMDBNSLJdunoSDfJtyDCEptimaHRtfCPqVNWUSWfSH20majBAwWx/J+7u837BiBQ8mfloBEUrcNmTHMVJabc9IMn1Pz1r2pGkIkrCmLIYHdysybPPVyaJ8sQasdgjvDV25HiPf4C6MwiW2d3ikYbtrGOwyNEKLMl/wpRzQnfpQzRsdTU2vyDx4zwyMn/5Xx/XWXGLiNSVzPul33ETt37/eAzOv0zSzYIy4dQx8XOH30LQ7S+QYAoA74zifp0r3ahKdxzK7Q5Vym2CdUufb/rqUN7TSKyeadQuQ/iqVfEsvv1HIXzws2L0NeyW5KLImRTe1eO14AnK1mITMzWjropXupglILTw==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELT+xLcCGJSnwdIBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFuSzFtSVRNeldqcm9wWHVwZ2xJTFR3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABqbaywN4B6QEAAADglSXxP/EBAAAAAMOK8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HlEjBUGhDQAAAGCXg2BB+A2AgIqnnQuwDpKSl8QB4g4Mqo0Gx40G1Y4G8ZAGyA8H4hmMCkVtRXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0eU16Y3pOVGczTXpBMU9UVXdORFEwT0N3dE1Td3RNU3d4TGpBd01EQXhNak1zTVRJM0xqRXhOVEk0T1RnM09UUTROalVzTUM0MU9ERTFOVFV5T1RVM016VTVOamN5TEMweEhlSXYzRXNndXJtUUJDMmFtWmsrTlFBQWdEOUtFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2p3OStFRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DUEQzNFFRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJ4QUFBQW9DY1FFVDk1QUFBQUFCY2FJRCtCQVFBQUFFQzNoWHBCaVFFQUFBQmc4RGRnUVpFQkFBQUF1TmRRZ1VHWkFRQUFBT0FPNTRGQm9RRUFBQUFnSHVWbFFha0JBQUFBYUZaZ2gwSG9BUUdBQXBRRGlnSStNQzR3TURRM05Ea3NNUzR3TURBd01EQXNNUzR3TURBd01EQXNNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBak16TXpNek05TS9vUUt0N3pSNHdrbkJRY0VDQUFBQUFBQUFBSURLQWdzSUFoRUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBMlFLQWV6Z1IvSnhqUWVFQ1FIaHBqOThQVUVIcEFud0QzNFRQSzZ4QmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvdVFPSmJiYzU0VjdoUDhFRHg5dGFmVDZONHovSkE1ay9MT25UZCtZLzBRUHhDT2pyVHA3clA0RUVBQUFBNFByQUNUK0pCQUFBQUNBc2tnUS9rQVNiQTVnRS90Nm5nb0pUb0FTQjZyaURBcWdFZ1BLTHFBbTRCUCtIMDZRSHdBU0E4b3VvQ2NrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBRGd3bk56UDZFRkFBQUFBQUFBOEQrcEJRQUFBQUFBQVBBL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkCDBT6GZMGChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMTg3ODEzOTcwNDIKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChQKDnNob3BfYmxhY2tsaXN0EgIoALAfgICAgKiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 18781397042,
"shopid": 85961994,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul6-ljo03lyxoghr60\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1134053,1015914,700190087,1718093079,1918643,1718087960,1428713,822059908662278,822120592853526,834403089593352,2018618,2018619,1012729,825465608497696,2153644,2213652,298463379,700005490,700005495,1049120,1059152,1049122,2008656,298468389,1718088045],\"merge_rank\":0,\"model_id\":235363166233,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul6-ljo03lyxoghr60\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1134053,1015914,700190087,1718093079,1918643,1718087960,1428713,822059908662278,822120592853526,834403089593352,2018618,2018619,1012729,825465608497696,2153644,2213652,298463379,700005490,700005495,1049120,1059152,1049122,2008656,298468389,1718088045],\"merge_rank\":0,\"model_id\":235363166233,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELT+xLcCGJSnwdIBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFuSzFtSVRNeldqcm9wWHVwZ2xJTFR3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABqbaywN4B6QEAAADglSXxP/EBAAAAAMOK8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HlEjBUGhDQAAAGCXg2BB+A2AgIqnnQuwDpKSl8QB4g4Mqo0Gx40G1Y4G8ZAGyA8H4hmMCkVtRXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0eU16Y3pOVGczTXpBMU9UVXdORFEwT0N3dE1Td3RNU3d4TGpBd01EQXhNak1zTVRJM0xqRXhOVEk0T1RnM09UUTROalVzTUM0MU9ERTFOVFV5T1RVM016VTVOamN5TEMweEhlSXYzRXNndXJtUUJDMmFtWmsrTlFBQWdEOUtFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2p3OStFRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DUEQzNFFRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJ4QUFBQW9DY1FFVDk1QUFBQUFCY2FJRCtCQVFBQUFFQzNoWHBCaVFFQUFBQmc4RGRnUVpFQkFBQUF1TmRRZ1VHWkFRQUFBT0FPNTRGQm9RRUFBQUFnSHVWbFFha0JBQUFBYUZaZ2gwSG9BUUdBQXBRRGlnSStNQzR3TURRM05Ea3NNUzR3TURBd01EQXNNUzR3TURBd01EQXNNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBak16TXpNek05TS9vUUt0N3pSNHdrbkJRY0VDQUFBQUFBQUFBSURLQWdzSUFoRUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBMlFLQWV6Z1IvSnhqUWVFQ1FIaHBqOThQVUVIcEFud0QzNFRQSzZ4QmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvdVFPSmJiYzU0VjdoUDhFRHg5dGFmVDZONHovSkE1ay9MT25UZCtZLzBRUHhDT2pyVHA3clA0RUVBQUFBNFByQUNUK0pCQUFBQUNBc2tnUS9rQVNiQTVnRS90Nm5nb0pUb0FTQjZyaURBcWdFZ1BLTHFBbTRCUCtIMDZRSHdBU0E4b3VvQ2NrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBRGd3bk56UDZFRkFBQUFBQUFBOEQrcEJRQUFBQUFBQVBBL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkCDBT6GZMGChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMTg3ODEzOTcwNDIKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChQKDnNob3BfYmxhY2tsaXN0EgIoALAfgICAgKiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_18781397042",
"debug_info": null
},
{
"item_basic": {
"itemid": 6082397995,
"shopid": 85961994,
"name": "Changhong AC Split 1/2 PK CSC-05NVC4 Air Conditioner 0.5 PK Gold Fin R32 CSC05NVC4",
"label_ids": [
13,
38,
39,
47,
1000501,
1000509,
1400095067,
1400285005,
1002164,
844931046478970,
844931026694327,
844931064601283,
1918643,
1718087960,
1428713,
2018618,
2018619,
1718093079,
1015914,
700190087,
1400285055,
1012729,
298893311,
298933384,
1400066568,
2153644,
2213652,
298463379,
2008656,
1059152,
1049122,
822059908662278,
825465608497696,
822120592853526,
834403089593352,
700005490,
1049120,
298468389,
1718088045
],
"image": "id-11134207-7r98o-ls9lhjmbx37had",
"images": [
"id-11134207-7r98o-ls9lhjmbx37had",
"id-11134207-7r98q-lr9pb0aikeppc0",
"id-11134207-7r98r-lr9pb0airfjx75",
"id-11134201-7qul5-ljo0l9b5xpuj32",
"id-11134201-7qukw-ljo0kwk8lap33e",
"id-11134207-7r98p-lr9pb0aiq0zheb",
"id-11134201-7qukw-ljo0l90md5j775",
"id-11134201-7qukx-ljo0l9b5xpuy2a",
"id-11134201-7qul3-ljo0l8w6jn6j6c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1616057616,
"sold": 9,
"historical_sold": 33,
"liked": false,
"liked_count": 53,
"view_count": null,
"catid": 100010,
"brand": "Changhong",
"cmt_count": 13,
"flag": 917506,
"cb_option": 0,
"item_status": "normal",
"price": 234900000000,
"price_min": 234900000000,
"price_max": 234900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PEMASANGAN",
"options": [
"TANPA PASANG",
"PLUS PASANG"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.230769230769231,
"rating_count": [
13,
2,
0,
1,
0,
10
],
"rcount_with_context": 3,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": true,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 234900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 85138005786,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 234900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 33,
"rounded_local_monthly_sold_count": 9,
"local_monthly_sold_count_text": "9",
"rounded_display_sold_count": 33,
"display_sold_count_text": "33"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": " Sajun Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 658572416,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT1Bt/eTt45r8FwNprdKbuY7rTi4NRTJfdgA2tQ1HuadkRTvo9I7OYle0cuSWkC3S3Gj/IwnwjsD3UzOURQCICo+1eDssmvzKh/yUjd9Ho/ZFgRSpCHX8wzXCsJYVtv1o/NXxHSeg3IEC04wR3UE9owxh4MH9E7lSF79IiIweK23vEZnQfRMI8yZi5KkaruMtsonHNo+hL7ixtqYN0kxfhM8/6o0QUN++0mA62CEu314mcbRj3uG6kPwXki+4mBh0lWDOgIwuM9dSmX+AGKux7frpG/UK0iRzK0Jg1i/KSSju40cHqnWN5kVEKZc8y1oDL0us6xyG5hQxC815Qcql0MfVo+XpgqyiZqvjxS+BF8xh/et2Vwy11qW8r0xtlTVm8mjzF/hxHwqa1/BsnUjJI9zg4Lpdi3sd5o1JHpYUJs+RQYlbx4GpGZHHRi5PzXDExdTxbfFp7FZEuyvqcOW/t2dgfk9s3Ga2FfsCk+t7bz6lbxtFtwQl1kAVMoqAHwNxww==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EICJhLoCGIaFyNQBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMUJ0L2VUdDQ1cjhGd05wcmRLYnVZN3JUaTROUlRKZmRnQTJ0UTFIdWFka1JUdm85STdPWWxlMGN1U1drQzNTM0dqL0l3bndqc0QzVXpPVVJRQ0lDbysxZURzc212ektoL3lVamQ5SG8vWkZnUlNwQ0hYOHd6WENzSllWdHYxby9OWHhIU2VnM0lFQzA0d1IzVUU5b3d4aDRNSDlFN2xTRjc5SWlJd2VLMjN2RVpuUWZSTUk4eVppNUtrYXJ1TXRzb25ITm8raEw3aXh0cVlOMGt4ZmhNOC82bzBRVU4rKzBtQTYyQ0V1MzE0bWNiUmozdUc2a1B3WGtpKzRtQmgwbFdET2dJd3VNOWRTbVgrQUdLdXg3ZnJwRy9VSzBpUnpLMEpnMWkvS1NTanU0MGNIcW5XTjVrVkVLWmM4eTFvREwwdXM2eHlHNWhReEM4MTVRY3FsME1mVm8rWHBncXlpWnF2anhTK0JGOHhoL2V0MlZ3eTExcVc4cjB4dGxUVm04bWp6Ri9oeEh3cWExL0JzblVqSkk5emc0THBkaTNzZDVvMUpIcFlVSnMrUlFZbGJ4NEdwR1pISFJpNVB6WERFeGRUeGJmRnA3RlpFdXl2cWNPVy90MmRnZms5czNHYTJGZnNDayt0N2J6NmxieHRGdHdRbDFrQVZNb3FBSHdOeHd3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABt5jNntsB6QEAAADglSXxP/EBAAAAYOCX8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENw/UoXAP5WkGhDQAAAKCKErVB+A2AgP316gawDrDftXfiDgyqjQbHjQbVjgbwkAbIDwjiGfgKRW9BQk1pNHlNREUzTml3dE1Td3RNU3d0TVN3dE1Td3lMakl5TkRBd01EQXdNREF3TURBd01EWXNNU3d6TGpjd09EUXhOVFF5TkRVek5ERTRPVFlzTUM0NUxDMHhMREF1TXpnNE5EUTFOams1TmpBMk16VTBNU3d3TGpBd016a3lNakUzT0RZNE9ERTVNakE0T0N3ekxqVTVOVEV3TWpjeE9Ua3lNVFF3TWpNc0xURWRhU1VxVFNDZmxjcW9BUzJqNlF4QU5RQUFnRDg1SEdpL3pDcUc2a0ZCT2RNQWFhY0hVRUpLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlwR3k3UDBsampXc0Z4QUFBQUFQNHpFRDk1QUFBQW9IMGlERCtCQVFBQUFNQ3RxVzVCaVFFQUFBREErZjlMUVpFQkFBQUFHTmJVY2tHWkFRQUFBSUNJc25SQm9RRUFBQUJBWXVaU1Fha0JBQUFBRUNGc2VVSG9BUUdBQXBRRGlnSStNQzR3TURVNU5UUXNNUzR3TURBd01EQXNNUzR3TVRFd01qTXNNUzR5TXpBME9UTXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBcGx1RW9QQXlnRkFvUUx0TjhUVDM3ZnFRY0VDR3k3UDBsampXc0hLQWdzSUFSRk0wQzZieHJWVHdjb0NDd2dDRVJzdXo5Slk0MXJCMlFLQTFPdDZWclJTUWVFQ1FMZVdWclNzTkVIcEFtTktySERIVTlGQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFNY2FML01Lb2JxUWFFRE9kTUFhYWNIVUVLNUF6ZDg2L3JBbk44L3dRTjNJVGIrbXV2aFA4a0RXZEIrV0RUNzVEL1JBODNhNUZmRmJPcy8rZ01MQ2dkU2IybFVhV1Z5RUFQNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFQNkF3a0tCVWx6VGxCQ0VBQ0JCQUFBQUtDdjlBWS9pUVFBQUFCQU84Z0JQNUFFbXdPWUJQN2VwNEtDVTZBRTl1cnNsUXVvQklDOHdaWUx1QVNLMFZUQUJJQzh3WllMeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFFQS9ZM2cvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQ1l0OEQreEJRQUFBS0Fac1BNL3VRVUFBQURBek16MFA4RUZBQUFBWUdabTlqL0pCUUFBQUFBQUFQZy/qGQS8TcBN+hmcBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82MDgyMzk3OTk1CikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAxMDEwNAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAACwH4CAgICAgIAoyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMkl7TfE09+36kHyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 6082397995,
"shopid": 85961994,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1109308,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98o-ls9lhjmbx37had\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,1002164,844931046478970,844931026694327,844931064601283,1918643,1718087960,1428713,2018618,2018619,1718093079,1015914,700190087,1400285055,1012729,298893311,298933384,1400066568,2153644,2213652,298463379,2008656,1059152,1049122,822059908662278,825465608497696,822120592853526,834403089593352,700005490,1049120,298468389,1718088045],\"merge_rank\":0,\"model_id\":85138005786,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":1109308,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98o-ls9lhjmbx37had\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,1002164,844931046478970,844931026694327,844931064601283,1918643,1718087960,1428713,2018618,2018619,1718093079,1015914,700190087,1400285055,1012729,298893311,298933384,1400066568,2153644,2213652,298463379,2008656,1059152,1049122,822059908662278,825465608497696,822120592853526,834403089593352,700005490,1049120,298468389,1718088045],\"merge_rank\":0,\"model_id\":85138005786,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EICJhLoCGIaFyNQBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMUJ0L2VUdDQ1cjhGd05wcmRLYnVZN3JUaTROUlRKZmRnQTJ0UTFIdWFka1JUdm85STdPWWxlMGN1U1drQzNTM0dqL0l3bndqc0QzVXpPVVJRQ0lDbysxZURzc212ektoL3lVamQ5SG8vWkZnUlNwQ0hYOHd6WENzSllWdHYxby9OWHhIU2VnM0lFQzA0d1IzVUU5b3d4aDRNSDlFN2xTRjc5SWlJd2VLMjN2RVpuUWZSTUk4eVppNUtrYXJ1TXRzb25ITm8raEw3aXh0cVlOMGt4ZmhNOC82bzBRVU4rKzBtQTYyQ0V1MzE0bWNiUmozdUc2a1B3WGtpKzRtQmgwbFdET2dJd3VNOWRTbVgrQUdLdXg3ZnJwRy9VSzBpUnpLMEpnMWkvS1NTanU0MGNIcW5XTjVrVkVLWmM4eTFvREwwdXM2eHlHNWhReEM4MTVRY3FsME1mVm8rWHBncXlpWnF2anhTK0JGOHhoL2V0MlZ3eTExcVc4cjB4dGxUVm04bWp6Ri9oeEh3cWExL0JzblVqSkk5emc0THBkaTNzZDVvMUpIcFlVSnMrUlFZbGJ4NEdwR1pISFJpNVB6WERFeGRUeGJmRnA3RlpFdXl2cWNPVy90MmRnZms5czNHYTJGZnNDayt0N2J6NmxieHRGdHdRbDFrQVZNb3FBSHdOeHd3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABt5jNntsB6QEAAADglSXxP/EBAAAAYOCX8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENw/UoXAP5WkGhDQAAAKCKErVB+A2AgP316gawDrDftXfiDgyqjQbHjQbVjgbwkAbIDwjiGfgKRW9BQk1pNHlNREUzTml3dE1Td3RNU3d0TVN3dE1Td3lMakl5TkRBd01EQXdNREF3TURBd01EWXNNU3d6TGpjd09EUXhOVFF5TkRVek5ERTRPVFlzTUM0NUxDMHhMREF1TXpnNE5EUTFOams1TmpBMk16VTBNU3d3TGpBd016a3lNakUzT0RZNE9ERTVNakE0T0N3ekxqVTVOVEV3TWpjeE9Ua3lNVFF3TWpNc0xURWRhU1VxVFNDZmxjcW9BUzJqNlF4QU5RQUFnRDg1SEdpL3pDcUc2a0ZCT2RNQWFhY0hVRUpLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlwR3k3UDBsampXc0Z4QUFBQUFQNHpFRDk1QUFBQW9IMGlERCtCQVFBQUFNQ3RxVzVCaVFFQUFBREErZjlMUVpFQkFBQUFHTmJVY2tHWkFRQUFBSUNJc25SQm9RRUFBQUJBWXVaU1Fha0JBQUFBRUNGc2VVSG9BUUdBQXBRRGlnSStNQzR3TURVNU5UUXNNUzR3TURBd01EQXNNUzR3TVRFd01qTXNNUzR5TXpBME9UTXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBcGx1RW9QQXlnRkFvUUx0TjhUVDM3ZnFRY0VDR3k3UDBsampXc0hLQWdzSUFSRk0wQzZieHJWVHdjb0NDd2dDRVJzdXo5Slk0MXJCMlFLQTFPdDZWclJTUWVFQ1FMZVdWclNzTkVIcEFtTktySERIVTlGQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFNY2FML01Lb2JxUWFFRE9kTUFhYWNIVUVLNUF6ZDg2L3JBbk44L3dRTjNJVGIrbXV2aFA4a0RXZEIrV0RUNzVEL1JBODNhNUZmRmJPcy8rZ01MQ2dkU2IybFVhV1Z5RUFQNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFQNkF3a0tCVWx6VGxCQ0VBQ0JCQUFBQUtDdjlBWS9pUVFBQUFCQU84Z0JQNUFFbXdPWUJQN2VwNEtDVTZBRTl1cnNsUXVvQklDOHdaWUx1QVNLMFZUQUJJQzh3WllMeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFFQS9ZM2cvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQ1l0OEQreEJRQUFBS0Fac1BNL3VRVUFBQURBek16MFA4RUZBQUFBWUdabTlqL0pCUUFBQUFBQUFQZy/qGQS8TcBN+hmcBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82MDgyMzk3OTk1CikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAxMDEwNAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAACwH4CAgICAgIAoyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMkl7TfE09+36kHyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_6082397995",
"debug_info": null
},
{
"item_basic": {
"itemid": 26324327187,
"shopid": 85961994,
"name": "GREE AC Deluxe Standard N1A Series - 1 PK - GWC-09N1A GWC-09N1 Black Diamond Fin",
"label_ids": [
13,
38,
39,
47,
1000501,
1000509,
1400095067,
1400285005,
844931064601283,
1400066568,
1718093079,
2018618,
2018619,
1012729,
822059908662278,
822120592853526,
834403089593352,
825465608497696,
700005490,
2153644,
1718087960,
1428713,
1015914,
700190087,
2213652,
298463379,
1049120,
2008656,
700005495,
298468389,
1718088045
],
"image": "id-11134207-7ra0t-mdgxxrj7u7d7bf",
"images": [
"id-11134207-7ra0t-mdgxxrj7u7d7bf",
"id-11134207-7rash-m5ccv3pw1cn452",
"sg-11134201-7ra1w-m5cfatucfclca6",
"sg-11134201-7ra11-m5cfau2y2rmz3e",
"sg-11134201-7ra1b-m5cfau91v8mj94",
"sg-11134201-7ra1o-m5cfaue1mklced",
"sg-11134201-7ra1f-m5cfauihg2l3f6",
"sg-11134201-7ra3y-m5cfaup56a970f",
"sg-11134201-7ra1u-m5cfauv8yr8r80"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1737606624,
"sold": 1,
"historical_sold": 7,
"liked": false,
"liked_count": 10,
"view_count": null,
"catid": 100010,
"brand": "Gree",
"cmt_count": 2,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 413900000000,
"price_min": 413900000000,
"price_max": 413900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Type",
"options": [
"GWC-09N1A",
"GWC-09N1"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "Instalasi",
"options": [
"Tanpa Pasang",
"Plus Pasang"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 413900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 296425339147,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 413900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 7,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 7,
"display_sold_count_text": "7"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": " Sajun Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 655834328,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYBttyccoal1VpJwLV8a2W0VhdQW8uF8xozP4UKUSgHvXVhWa0/TLP55euUB211VYynLnDNHVsoUmN1D7uSwkXw1HIn1B8P7yJcUFUTAxtr1rEhpDfijC7hfwoQllSGzTGa3TeWUgYSYiwMX8u+OSm1PvdegTZRzv1xTNZt0PL+W9kEX+u0RItvnpahwAVqhX4810DYw5vy0jHF6KFLupdYx+4hXdjZWwKFEDuZIOkJEwCov/mq4pdKqfS5EtailMCJJfnYUzbi7SyEKkx9WpYYztQLvdIivSf+844c/3uxZ3vQMzBXUjsULtkeUWF/pvWI2X2oeYt4tHMUBIinMBTg/B4sRuwezuTKxogjRVhHYKnfyIZTHD7JEFsbQ/Em6q4salj+i44ngiuau9GStXAhl6zoEVe1ycGHpXFC60N4XCOFzoYuFOj5XnzjkLAgxfz9ejebq7fqdodDeZG99wKplCFjGSSADJlQzVb6+IUhiQ==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENj53LgCGMTihdMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWUJ0dHljY29hbDFWcEp3TFY4YTJXMFZoZFFXOHVGOHhvelA0VUtVU2dIdlhWaFdhMC9UTFA1NWV1VUIyMTFWWXluTG5ETkhWc29VbU4xRDd1U3drWHcxSEluMUI4UDd5SmNVRlVUQXh0cjFyRWhwRGZpakM3aGZ3b1FsbFNHelRHYTNUZVdVZ1lTWWl3TVg4dStPU20xUHZkZWdUWlJ6djF4VE5adDBQTCtXOWtFWCt1MFJJdHZucGFod0FWcWhYNDgxMERZdzV2eTBqSEY2S0ZMdXBkWXgrNGhYZGpaV3dLRkVEdVpJT2tKRXdDb3YvbXE0cGRLcWZTNUV0YWlsTUNKSmZuWVV6Ymk3U3lFS2t4OVdwWVl6dFFMdmRJaXZTZis4NDRjLzN1eFozdlFNekJYVWpzVUx0a2VVV0YvcHZXSTJYMm9lWXQ0dEhNVUJJaW5NQlRnL0I0c1J1d2V6dVRLeG9nalJWaEhZS25meUlaVEhEN0pFRnNiUS9FbTZxNHNhbGoraTQ0bmdpdWF1OUdTdFhBaGw2em9FVmUxeWNHSHBYRkM2ME40WENPRnpvWXVGT2o1WG56amtMQWd4Zno5ZWplYnE3ZnFkb2REZVpHOTl3S3BsQ0ZqR1NTQURKbFF6VmI2K0lVaGlRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABrtnMn94B6QEAAADglSXxP/EBAAAAQKKL8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENUrgehZtKB0GhDQAAAIBJMmJB+A2AgNKz0AywDviU0NwB4g4Mqo0Gx40G1Y4G8JAGyA8J4hnkCUVuMHdMak16TURVMk16RTNORFEwTXpFek1pd3RNU3d0TVN3dE1Td3RNU3d3TGpNek1EVTJNekUzTkRRME16RXpNaXd4TERFdU1EWXlPVEV4TlRjd05ETXpPVE0yTlN3dE1Td3RNU3d4TGpBd01EQXhNak1zTVRZMUxqTTRPVFF3T1RJeE56YzRNell5TERBdU5UZ3hOVFUxTWprMU56TTFPVFkzTWl3dE1SM2lMOXhMSU11a3hnUXRsRCtwUGpVQUFJQS9TaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFjUUFBQUFCT0ZBMC9lUUFBQUNCdUxDby9nUUVBQUFBQWhHcDVRWWtCQUFBQWdEMVFha0dSQVFBQUFHQlJTWU5CbVFFQUFBRGc1U2VCUWFFQkFBQUFZUGJDY1VHcEFRQUFBQkJoQ1lwQjZBRUJnQUtVQTRvQ1BqQXVNREExTVRrMkxERXVNREF3TURBd0xERXVNREUzTlRrMUxERXVNakkwT1RReUxERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RSkdzZDl4OGlmVlA2RUNyZTgwZU1KSndVSEJBZ0FBQUFBQUFBQ0F5Z0lMQ0FFUkFBQUFBQUFBQUFES0Fnc0lBaEVBQUFBQUFBQUFnTmtDQU9nL1VyT2VYVUhoQW9BWHJsc2xjRlJCNlFMZUJmUVkvQ2ltUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQN2tEcWJpQXdPYjUzai9CQTlqKzBmT00rdUUveVFNQjJwVjBUWHJsUDlFRExOc2Z6OGlvNnorQkJBQUFBR0RobkFVL2lRUUFBQUFnUUVzQVA1QUVtd09ZQlA3ZXA0S0NVNkFFL3J2SXBnT29CSUR5aTZnSnVBU0N0c09CQnNBRWdQS0xxQW5KQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlFSklkVCtoQlFBQUFBQUFBUEEvcVFVQUFBQ2dFVWp3UDdFRkFBQUFRRjJaOHorNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQIMFPoZkwYKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAyMDMwNAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9Cg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yNjMyNDMyNzE4NwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB+AgICAoICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 26324327187,
"shopid": 85961994,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":9540172,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0t-mdgxxrj7u7d7bf\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,2018618,2018619,1012729,822059908662278,822120592853526,834403089593352,825465608497696,700005490,2153644,1718087960,1428713,1015914,700190087,2213652,298463379,1049120,2008656,700005495,298468389,1718088045],\"merge_rank\":0,\"model_id\":296425339147,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":9540172,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0t-mdgxxrj7u7d7bf\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,2018618,2018619,1012729,822059908662278,822120592853526,834403089593352,825465608497696,700005490,2153644,1718087960,1428713,1015914,700190087,2213652,298463379,1049120,2008656,700005495,298468389,1718088045],\"merge_rank\":0,\"model_id\":296425339147,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENj53LgCGMTihdMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWUJ0dHljY29hbDFWcEp3TFY4YTJXMFZoZFFXOHVGOHhvelA0VUtVU2dIdlhWaFdhMC9UTFA1NWV1VUIyMTFWWXluTG5ETkhWc29VbU4xRDd1U3drWHcxSEluMUI4UDd5SmNVRlVUQXh0cjFyRWhwRGZpakM3aGZ3b1FsbFNHelRHYTNUZVdVZ1lTWWl3TVg4dStPU20xUHZkZWdUWlJ6djF4VE5adDBQTCtXOWtFWCt1MFJJdHZucGFod0FWcWhYNDgxMERZdzV2eTBqSEY2S0ZMdXBkWXgrNGhYZGpaV3dLRkVEdVpJT2tKRXdDb3YvbXE0cGRLcWZTNUV0YWlsTUNKSmZuWVV6Ymk3U3lFS2t4OVdwWVl6dFFMdmRJaXZTZis4NDRjLzN1eFozdlFNekJYVWpzVUx0a2VVV0YvcHZXSTJYMm9lWXQ0dEhNVUJJaW5NQlRnL0I0c1J1d2V6dVRLeG9nalJWaEhZS25meUlaVEhEN0pFRnNiUS9FbTZxNHNhbGoraTQ0bmdpdWF1OUdTdFhBaGw2em9FVmUxeWNHSHBYRkM2ME40WENPRnpvWXVGT2o1WG56amtMQWd4Zno5ZWplYnE3ZnFkb2REZVpHOTl3S3BsQ0ZqR1NTQURKbFF6VmI2K0lVaGlRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABrtnMn94B6QEAAADglSXxP/EBAAAAQKKL8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENUrgehZtKB0GhDQAAAIBJMmJB+A2AgNKz0AywDviU0NwB4g4Mqo0Gx40G1Y4G8JAGyA8J4hnkCUVuMHdMak16TURVMk16RTNORFEwTXpFek1pd3RNU3d0TVN3dE1Td3RNU3d3TGpNek1EVTJNekUzTkRRME16RXpNaXd4TERFdU1EWXlPVEV4TlRjd05ETXpPVE0yTlN3dE1Td3RNU3d4TGpBd01EQXhNak1zTVRZMUxqTTRPVFF3T1RJeE56YzRNell5TERBdU5UZ3hOVFUxTWprMU56TTFPVFkzTWl3dE1SM2lMOXhMSU11a3hnUXRsRCtwUGpVQUFJQS9TaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFjUUFBQUFCT0ZBMC9lUUFBQUNCdUxDby9nUUVBQUFBQWhHcDVRWWtCQUFBQWdEMVFha0dSQVFBQUFHQlJTWU5CbVFFQUFBRGc1U2VCUWFFQkFBQUFZUGJDY1VHcEFRQUFBQkJoQ1lwQjZBRUJnQUtVQTRvQ1BqQXVNREExTVRrMkxERXVNREF3TURBd0xERXVNREUzTlRrMUxERXVNakkwT1RReUxERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RSkdzZDl4OGlmVlA2RUNyZTgwZU1KSndVSEJBZ0FBQUFBQUFBQ0F5Z0lMQ0FFUkFBQUFBQUFBQUFES0Fnc0lBaEVBQUFBQUFBQUFnTmtDQU9nL1VyT2VYVUhoQW9BWHJsc2xjRlJCNlFMZUJmUVkvQ2ltUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQN2tEcWJpQXdPYjUzai9CQTlqKzBmT00rdUUveVFNQjJwVjBUWHJsUDlFRExOc2Z6OGlvNnorQkJBQUFBR0RobkFVL2lRUUFBQUFnUUVzQVA1QUVtd09ZQlA3ZXA0S0NVNkFFL3J2SXBnT29CSUR5aTZnSnVBU0N0c09CQnNBRWdQS0xxQW5KQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlFSklkVCtoQlFBQUFBQUFBUEEvcVFVQUFBQ2dFVWp3UDdFRkFBQUFRRjJaOHorNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQIMFPoZkwYKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAyMDMwNAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9Cg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yNjMyNDMyNzE4NwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB+AgICAoICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26324327187",
"debug_info": null
},
{
"item_basic": {
"itemid": 40258917131,
"shopid": 117080411,
"name": "AC DAIKIN BETA INVERTER 1/2 PK 1/2PK FTKE15 Nusantara Prestige",
"label_ids": [
2018618,
1012729,
2018619,
844931064601283,
298463379,
1059152,
1059154,
822059908662278,
822120592853526,
1015914,
700190087,
2153644,
1718093065,
2213652,
298468389
],
"image": "id-11134207-81ztl-meo0qvz6n18j34",
"images": [
"id-11134207-81ztl-meo0qvz6n18j34",
"id-11134207-7ra0q-mcaf3n7zd3r6a9",
"id-11134207-81ztj-meo0qvz6lmo3d6",
"id-11134207-81ztl-meo0qvz6k83n9f",
"id-11134207-81ztq-meo0qvz6bsozdd",
"id-11134207-81ztp-meo0qvz6g0eb27",
"id-11134207-81ztd-meo0qvz6itj7a3",
"id-11134207-7ra0r-mcaf3n7zeibmc7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1752806222,
"sold": 3,
"historical_sold": 7,
"liked": false,
"liked_count": 93,
"view_count": null,
"catid": 100010,
"brand": "Daikin",
"cmt_count": 3,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 492900000000,
"price_min": 492900000000,
"price_max": 492900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 492900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 285748299788,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 492900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 7,
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_display_sold_count": 7,
"display_sold_count_text": "7"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "INDO COOL Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 519812211,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibLQ55Pxvt5m3XJZngce+6w+fi9yb4y/r18HfgL/BVG5rfJgpocNkxHUj1i/10bBMPmC48M5b+kmxDMg5AMhaM+WGqGPaLjPo7ECSQWMn/nZLuGoZXLDljK3BazjuPySv9cT9WCeyHCjF+dFON8aWeayiD6dCUWmpl8DovTK4u+s1Y7tH5NujMfQJSZOhQf5mTPwFeuxqNnhkAJmoc4KDemWyz6l44XDCYE1RM8CNP31XuwKVw1lTpHSi4BpShlNRcn2My+P6xDJvN/w4zRqc45RJSqBJwNBx3hZvn5e3UY4gSQljtlWlNv7ug5rZD7J9ygA+8COlES4pMOBNC7xm28ez/5QJzDC59R6Chk+Dwjs6Ygm7C7daJ+sRqog4PodemMlNHZ3We0PiSgS7K4nWZ/icV/9DhOoF7wCxvefBMtYhelBOhE6EIMb4tADr27AAqGrKs+c0htEBJeoRxxq0bOel5acU6FEeRh9xFG3gCvEg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPPo7vcBGOjyw8MBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkxRNTVQeHZ0NW0zWEpabmdjZSs2dytmaTl5YjR5L3IxOEhmZ0wvQlZHNXJmSmdwb2NOa3hIVWoxaS8xMGJCTVBtQzQ4TTViK2tteERNZzVBTWhhTStXR3FHUGFMalBvN0VDU1FXTW4vblpMdUdvWlhMRGxqSzNCYXpqdVB5U3Y5Y1Q5V0NleUhDakYrZEZPTjhhV2VheWlENmRDVVdtcGw4RG92VEs0dStzMVk3dEg1TnVqTWZRSlNaT2hRZjVtVFB3RmV1eHFObmhrQUptb2M0S0RlbVd5ejZsNDRYRENZRTFSTThDTlAzMVh1d0tWdzFsVHBIU2k0QnBTaGxOUmNuMk15K1A2eERKdk4vdzR6UnFjNDVSSlNxQkp3TkJ4M2hadm41ZTNVWTRnU1FsanRsV2xOdjd1ZzVyWkQ3Sjl5Z0ErOENPbEVTNHBNT0JOQzd4bTI4ZXovNVFKekRDNTlSNkNoaytEd2pzNllnbTdDN2RhSitzUnFvZzRQb2RlbU1sTkhaM1dlMFBpU2dTN0s0bldaL2ljVi85RGhPb0Y3d0N4dmVmQk10WWhlbEJPaEU2RUlNYjR0QURyMjdBQXFHcktzK2MwaHRFQkplb1J4eHEwYk9lbDVhY1U2RkVlUmg5eEZHM2dDdkVnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABmvf8sckK6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HqUcCUGhDQAAAABhnmNB+A2AgISZrA6wDqGCl/oB4g4Mqo0Gx40G1Y4G8JAGyA8K4hngCkVtNHdMak01Tml3dE1Td3RNU3d0TVN3dE1Td3dMalFzTVN3d0xqZ3pOemc0TmpjMU16QTFNalUyTkRFc01DNDVMQzB4TERBdU16ZzRORFExTmprNU5qQTJNelUwTVN3d0xqTXlOREE0T0Rjek5UZ3pNak01TmpVMkxEQXVOVGd4TlRVMU1qazFOek0xT1RZM01pd3RNUjNpTDl4TElJZm04d1F0ZzhES1BqVUFBSUEvT1FCZ0g2UHV3Sk5CUVRvRjVHbnJtaFZDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBYVJTQWNUNDNGZ25CY1FBQUFHQjRHZ1EvZVFBQUFNQTFIQVUvZ1FFQUFBRGd5ZlZ6UVlrQkFBQUFvRzcrYmtHUkFRQUFBSmlBdW9GQm1RRUFBQUFBTi9KNlFhRUJBQUFBd1A2bWRFR3BBUUFBQU9DYXpJZEI2QUVCZ0FLVUE0b0NQakF1TURBME5USXlMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TVRrM05qVTFMREV1TVRrM05qVTFMREV1TVRrM05qVTFMREV1TXpBMU5UZ3htUUthbVptWm1ablpQNkVDcmU4MGVNSkp3VUhCQWhTQWNUNDNGZ25CeWdJTENBRVJGSUJ4UGpjV0NjSEtBZ3NJQWhHSmZ6QXA0cGtDd2RrQ0lMbGdOTzRuVWtIaEFnREVjWjRRcTFKQjZRSTJ6VXVOY1VHaFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrREFHQWZvKzdBazBHaEF6b0Y1R25ybWhWQ3VRUHJyeGdoWEtIalA4RUQ3SWlxdi9MYTVUL0pBK0dvZGZQM3orZy8wUVBXZ2FDdVZESHRQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFDZzJhQUFQNGtFQUFBQW9EYlQrejZRQkpzRG1BU04vUGZPOFFPZ0JPN1luOXNEcUFTQWxPdmNBN2dFa3J2TEFjQUVnSlRyM0FQSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFBSk9GY2oraEJRQUFBQUFBQVBBL3FRVUFBQUFBQUFEd1A3RUZBQUFBNEpjcDh6KzVCUUFBQU9DWEtmTS93UVVBQUFEZ2x5bnpQOGtGQUFBQUFLbmo5RDg96hkEuU3DTfoZkwYKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQwMjU4OTE3MTMxCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigAsB/AgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 40258917131,
"shopid": 117080411,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":10287,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-meo0qvz6n18j34\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018618,1012729,2018619,844931064601283,298463379,1059152,1059154,822059908662278,822120592853526,1015914,700190087,2153644,1718093065,2213652,298468389],\"merge_rank\":0,\"model_id\":285748299788,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":10287,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-meo0qvz6n18j34\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018618,1012729,2018619,844931064601283,298463379,1059152,1059154,822059908662278,822120592853526,1015914,700190087,2153644,1718093065,2213652,298468389],\"merge_rank\":0,\"model_id\":285748299788,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPPo7vcBGOjyw8MBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkxRNTVQeHZ0NW0zWEpabmdjZSs2dytmaTl5YjR5L3IxOEhmZ0wvQlZHNXJmSmdwb2NOa3hIVWoxaS8xMGJCTVBtQzQ4TTViK2tteERNZzVBTWhhTStXR3FHUGFMalBvN0VDU1FXTW4vblpMdUdvWlhMRGxqSzNCYXpqdVB5U3Y5Y1Q5V0NleUhDakYrZEZPTjhhV2VheWlENmRDVVdtcGw4RG92VEs0dStzMVk3dEg1TnVqTWZRSlNaT2hRZjVtVFB3RmV1eHFObmhrQUptb2M0S0RlbVd5ejZsNDRYRENZRTFSTThDTlAzMVh1d0tWdzFsVHBIU2k0QnBTaGxOUmNuMk15K1A2eERKdk4vdzR6UnFjNDVSSlNxQkp3TkJ4M2hadm41ZTNVWTRnU1FsanRsV2xOdjd1ZzVyWkQ3Sjl5Z0ErOENPbEVTNHBNT0JOQzd4bTI4ZXovNVFKekRDNTlSNkNoaytEd2pzNllnbTdDN2RhSitzUnFvZzRQb2RlbU1sTkhaM1dlMFBpU2dTN0s0bldaL2ljVi85RGhPb0Y3d0N4dmVmQk10WWhlbEJPaEU2RUlNYjR0QURyMjdBQXFHcktzK2MwaHRFQkplb1J4eHEwYk9lbDVhY1U2RkVlUmg5eEZHM2dDdkVnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABmvf8sckK6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5EN7FG4HqUcCUGhDQAAAABhnmNB+A2AgISZrA6wDqGCl/oB4g4Mqo0Gx40G1Y4G8JAGyA8K4hngCkVtNHdMak01Tml3dE1Td3RNU3d0TVN3dE1Td3dMalFzTVN3d0xqZ3pOemc0TmpjMU16QTFNalUyTkRFc01DNDVMQzB4TERBdU16ZzRORFExTmprNU5qQTJNelUwTVN3d0xqTXlOREE0T0Rjek5UZ3pNak01TmpVMkxEQXVOVGd4TlRVMU1qazFOek0xT1RZM01pd3RNUjNpTDl4TElJZm04d1F0ZzhES1BqVUFBSUEvT1FCZ0g2UHV3Sk5CUVRvRjVHbnJtaFZDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBYVJTQWNUNDNGZ25CY1FBQUFHQjRHZ1EvZVFBQUFNQTFIQVUvZ1FFQUFBRGd5ZlZ6UVlrQkFBQUFvRzcrYmtHUkFRQUFBSmlBdW9GQm1RRUFBQUFBTi9KNlFhRUJBQUFBd1A2bWRFR3BBUUFBQU9DYXpJZEI2QUVCZ0FLVUE0b0NQakF1TURBME5USXlMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TVRrM05qVTFMREV1TVRrM05qVTFMREV1TVRrM05qVTFMREV1TXpBMU5UZ3htUUthbVptWm1ablpQNkVDcmU4MGVNSkp3VUhCQWhTQWNUNDNGZ25CeWdJTENBRVJGSUJ4UGpjV0NjSEtBZ3NJQWhHSmZ6QXA0cGtDd2RrQ0lMbGdOTzRuVWtIaEFnREVjWjRRcTFKQjZRSTJ6VXVOY1VHaFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrREFHQWZvKzdBazBHaEF6b0Y1R25ybWhWQ3VRUHJyeGdoWEtIalA4RUQ3SWlxdi9MYTVUL0pBK0dvZGZQM3orZy8wUVBXZ2FDdVZESHRQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFDZzJhQUFQNGtFQUFBQW9EYlQrejZRQkpzRG1BU04vUGZPOFFPZ0JPN1luOXNEcUFTQWxPdmNBN2dFa3J2TEFjQUVnSlRyM0FQSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFBSk9GY2oraEJRQUFBQUFBQVBBL3FRVUFBQUFBQUFEd1A3RUZBQUFBNEpjcDh6KzVCUUFBQU9DWEtmTS93UVVBQUFEZ2x5bnpQOGtGQUFBQUFLbmo5RDg96hkEuU3DTfoZkwYKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQwMjU4OTE3MTMxCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigAsB/AgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40258917131",
"debug_info": null
},
{
"item_basic": {
"itemid": 43014882109,
"shopid": 1294678510,
"name": "AC Gree GWC-05N1A - 1/2 PK | 0.5 PK - N1A Series - Non Inverter - R32",
"label_ids": [
2018619,
844931064601283,
844931086908638,
298463379,
1718093079,
1049120,
700005490,
822059908662278,
825465608497696,
825465608494624,
825465608499232,
822120592853526,
1718093065,
1015914,
700190087,
1400285055,
834403089593352,
2068629,
298938357,
2023641,
1718088045,
298468389,
2098629,
298938368,
2098628
],
"image": "id-11134207-7ra0n-mdskthst6cnj5f",
"images": [
"id-11134207-7ra0n-mdskthst6cnj5f",
"id-11134207-7ra0k-mdskthst95sf29",
"id-11134207-7ra0g-mdskthst24y7bb",
"id-11134207-7ra0p-mdskthst3jin82",
"id-11134207-7ra0o-mdskthst4y333f",
"id-11134207-7ra0i-mdskthst7r7z78"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756019383,
"sold": 2,
"historical_sold": 10,
"liked": false,
"liked_count": 13,
"view_count": null,
"catid": 100010,
"brand": "Gree",
"cmt_count": 2,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 347900000000,
"price_min": 347900000000,
"price_max": 347900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Package",
"options": [
"Unit Only",
"+Packing Kayu",
"+Paket 3M",
"+Paket 5M",
"+Paket 3M (Tebal)",
"+Paket 5M (Tebal)"
],
"images": [
"id-11134207-8224w-miwqt74xthqb9c",
"id-11134207-8224w-miwqt74xuwar15",
"id-11134207-8224w-miwqt74xwav768",
"id-11134207-82252-miwqt74xxpfn2b",
"id-11134207-8224t-miwqt74xz403cc",
"id-11134207-8224u-miwqt74xs35vaa"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp1,1JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 347900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 248791371833,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 347900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 10,
"display_sold_count_text": "10"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp1,2JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Wulitonย Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 606284621,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiY/9Il/XoZbI+53wSL5rVV8klUnvegRtpyQRK8lj26Kvf0ZsJdwESCQAx2FoEvj0zLKIbKg3pNiqLe0ivEazpvW/DdKf+ktnP8sLCjkqNJE67xYmGLAyqbybFSm82wzi8UrHF10wI80OiveaFMDBNSLJdunoSDfJtyDCEptimaHRtfCPqVNWUSWfSH20majBAwWx/J+7u837BiBQ8mfloBEUrcNmTHMVJabc9IMn1Pz1r2pGkIkrCmLIYHdysybPPVyaJ8sQasdgjvDV25HiPf4C6MwiW2d3ikYbtrGOwyNEKLMl/wpRzQnfpQzRsdTU2vyDx4zwyMn/5Xx/XWXGLiNSVzPul33ETt37/eAzOv0zSzYIy4dQx8XOH30LQ7S+QYAoA74zifp0r3ahKdxzK7Q5Vym2CdUufb/rqUN7TSKyeadQuQ/iqVfEsvv1HIXzws2L0NeyW5KLImRTe1eO14AB7IJr+UBvSVSuyE0StWe1Q==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EM3WjKECGL+T/M0BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFCN0lKcitVQnZTVlN1eUUwU3RXZTFRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB6ZCWxUbpAQAAAOCVJfE/8QEAAACArMAIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgeUSMFQaENAAAAYJeDYEH4DYCA6pL+CbAO8L66rgHiDgyqjQbHjQbVjgbwkAbIDwviGZQKRW1Bd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNaTQ1T1RVNU9UVTJNekExT1RJNE1USXNMVEVzTFRFc01TNHdNREF3TVRJekxERXVNakF4TVRnek5UZzFOVGN3TlRjME1Td3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5QzZ1WkFFTFpxWm1UNDFBQUNBUDBvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJOFBmaEJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVlnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdqdzkrRUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AybWFQV1FaaG1xNndIRUFBQUNBYWJRRFAza0FBQUFBRVdZUlA0RUJBQUFBZ0o0OGEwR0pBUUFBQUFEelJFcEJrUUVBQUFDZzdlWndRWmtCQUFBQW9JUmlja0doQVFBQUFFQlh1MUZCcVFFQUFBQndXdEYyUWVnQkFZQUNsQU9LQWo0d0xqQXdNemt3Tml3eExqQXdNREF3TUN3eExqQXdNVGMwTVN3eExqSXpOVEUxTml3eExqTXdNREF3TUN3eExqTXpNelE1TVN3eExqVXdNREF3TUprQ016TXpNek16MHoraEFxM3ZOSGpDU2NGQndRS2FQV1FaaG1xNndNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJtajFrR1lacXVzRFpBb0N3L1Z6M25sSkI0UUlBQ09NNDU1RTJRZWtDZm5ORDVZNTFxVUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBKys3TU5DNk1lRS93UU1vNEFHSCs2RGpQOGtER3MyOEdLZ3M1ei9SQThRa2Z5WXVPdTAvZ1FRQUFBRGd6ejM5UG9rRUFBQUFvT2dkOWo2UUJKc0RtQVM0dVorcjN3R2dCTStuOWVVQnFBU0F5clh1QWJnRXNhTEFDTUFFZ01xMTdnSEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBQUJBQWNEK2hCUUFBQUFBQUFQQS9xUVVBQUFEQUlRZndQN0VGQUFBQUlEUEQ4eis1QlFBQUFNRE16UFEvd1FVQUFBQWcrMVgxUDhrRkFBQUFBQUFBK0Q4PeoZAgsU8hkCzQj6GZMGCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0CiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF80MzAxNDg4MjEwOQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA2Fkc7AfgICAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 43014882109,
"shopid": 1294678510,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":8319981,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0n-mdskthst6cnj5f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1718093079,1049120,700005490,822059908662278,825465608497696,825465608494624,825465608499232,822120592853526,1718093065,1015914,700190087,1400285055,834403089593352,2068629,298938357,2023641,1718088045,298468389,2098629,298938368,2098628],\"merge_rank\":0,\"model_id\":248791371833,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":8319981,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0n-mdskthst6cnj5f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1718093079,1049120,700005490,822059908662278,825465608497696,825465608494624,825465608499232,822120592853526,1718093065,1015914,700190087,1400285055,834403089593352,2068629,298938357,2023641,1718088045,298468389,2098629,298938368,2098628],\"merge_rank\":0,\"model_id\":248791371833,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EM3WjKECGL+T/M0BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFCN0lKcitVQnZTVlN1eUUwU3RXZTFRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB6ZCWxUbpAQAAAOCVJfE/8QEAAACArMAIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgeUSMFQaENAAAAYJeDYEH4DYCA6pL+CbAO8L66rgHiDgyqjQbHjQbVjgbwkAbIDwviGZQKRW1Bd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNaTQ1T1RVNU9UVTJNekExT1RJNE1USXNMVEVzTFRFc01TNHdNREF3TVRJekxERXVNakF4TVRnek5UZzFOVGN3TlRjME1Td3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5QzZ1WkFFTFpxWm1UNDFBQUNBUDBvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJOFBmaEJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVlnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdqdzkrRUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AybWFQV1FaaG1xNndIRUFBQUNBYWJRRFAza0FBQUFBRVdZUlA0RUJBQUFBZ0o0OGEwR0pBUUFBQUFEelJFcEJrUUVBQUFDZzdlWndRWmtCQUFBQW9JUmlja0doQVFBQUFFQlh1MUZCcVFFQUFBQndXdEYyUWVnQkFZQUNsQU9LQWo0d0xqQXdNemt3Tml3eExqQXdNREF3TUN3eExqQXdNVGMwTVN3eExqSXpOVEUxTml3eExqTXdNREF3TUN3eExqTXpNelE1TVN3eExqVXdNREF3TUprQ016TXpNek16MHoraEFxM3ZOSGpDU2NGQndRS2FQV1FaaG1xNndNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJtajFrR1lacXVzRFpBb0N3L1Z6M25sSkI0UUlBQ09NNDU1RTJRZWtDZm5ORDVZNTFxVUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBKys3TU5DNk1lRS93UU1vNEFHSCs2RGpQOGtER3MyOEdLZ3M1ei9SQThRa2Z5WXVPdTAvZ1FRQUFBRGd6ejM5UG9rRUFBQUFvT2dkOWo2UUJKc0RtQVM0dVorcjN3R2dCTStuOWVVQnFBU0F5clh1QWJnRXNhTEFDTUFFZ01xMTdnSEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBQUJBQWNEK2hCUUFBQUFBQUFQQS9xUVVBQUFEQUlRZndQN0VGQUFBQUlEUEQ4eis1QlFBQUFNRE16UFEvd1FVQUFBQWcrMVgxUDhrRkFBQUFBQUFBK0Q4PeoZAgsU8hkCzQj6GZMGCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0CiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF80MzAxNDg4MjEwOQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA2Fkc7AfgICAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43014882109",
"debug_info": null
},
{
"item_basic": {
"itemid": 29735457407,
"shopid": 191316346,
"name": "AC MITSUBISHI YYP Series 1PK 1.5PK 2PK EON Inverter Low Watt 1 1.5 2 PK Air Conditioner",
"label_ids": [
1400066568,
1002164,
2018618,
1400095067,
1400285005,
844931064601283,
298933384,
2153644,
1718093079,
1059152,
1059154,
822059908662278,
825465608497696,
822120592853526,
2068629,
298938357,
2213652,
298463379,
700700063,
298938368,
298468389,
2098628,
2098629,
1718088045
],
"image": "id-11134207-7rbka-m974nj7pupld7c",
"images": [
"id-11134207-7rbka-m974nj7pupld7c",
"id-11134207-7rbk1-m974nj7pw45t05",
"id-11134207-7rbke-m95ocjouucf287",
"id-11134207-7rbk3-m95ocjourja682",
"id-11134207-7rbk7-m95ocjouq4pq5c",
"id-11134207-7rbk0-m95ocjouj3vi52",
"id-11134207-7rbk4-m95ocjousxum90",
"id-11134207-7rbk2-m95ocjoukify58",
"id-11134207-7rbkb-m95ocjoulx0e63"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1745942814,
"sold": 0,
"historical_sold": 2,
"liked": false,
"liked_count": 12,
"view_count": null,
"catid": 100010,
"brand": "MITSUBISHI",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 751900000000,
"price_min": 751900000000,
"price_max": 751900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmiu-m964nqkq7psu2f.16000031745942487.mp4",
"thumb_url": "id-11110105-6kmiu-m964nqkq7psu2f_cover",
"duration": 23,
"version": 2,
"vid": "id-11110105-6kmiu-m964nqkq7psu2f",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmiu-m964nqkq7psu2f.16000031745942487.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiu-m964nqkq7psu2f.16000031745942487.mp4",
"width": 1052,
"height": 480
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiu-m964nqkq7psu2f.default.mp4",
"width": 1052,
"height": 480
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "UKURAN",
"options": [
"1PK - SR 10 YYP",
"1.5PK - SR 13 YYP",
"2PK - SR 18 YYP"
],
"images": [
"id-11134207-7rbk0-m974nj7pxiq9c1",
"id-11134207-7rbk6-m974nj7pyxap40",
"id-11134207-7rbk7-m975df6zqo9q94"
],
"properties": [],
"type": 0
},
{
"name": "PAKET",
"options": [
"AC",
"AC+PASANG+STANDARD3M",
"AC+PASANG+STANDARD5M",
"AC+PASANG+SAEKI3M",
"AC+PASANG+SAEKI5M"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp2,5JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 751900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 253336726222,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 751900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp2,5JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Setia Mandiri Elektronik Official Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 666276180,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWia+1qidcl2ia8uyp1rSgnKVGf3eaRyIo09zakalmuNlaPY1u0kNs3XkC7sdXFRFhsLpUsIMOyLTFRqMJp8XOM39jr8ZI7E8QQElk/dhYz945LKoj3g3GnLAKvwu4MvKQZbFz0ycd7ydI6CEniL3v33llMZFnKkqYLjy1tHEYRZCRRYjFnP6urVB57ihGwaJWP4/qYlVXGh70rO/DIPq7Q632yMR3wB3Do6FRrjQZNNMSGQoH/faMRWs6K3MKQ8qIQ74dCxj/UOn2lpPivsl3XXFHQ0CtcOL4L7h2qRXniwye8EQ14Vzija93WQdO7aMKW8bsEMQ/I5P6S/CIvlBl3ucLzuWR8DbGSOyDi34BX2fehktaI76I6a/dQ7sfjas5wOXmdtklYCmtHIjFvcUCOUJUPsPsHor9NSOcFOLouFjjnzIPPUmQ1Xjml0QWG3IxZNAfSnC+s23dO9v4UfESG9AzcXoSt3oUpPX517xXtpX6g==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENSi2r0CGI6vmNYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYSsxcWlkY2wyaWE4dXlwMXJTZ25LVkdmM2VhUnlJbzA5emFrYWxtdU5sYVBZMXUwa05zM1hrQzdzZFhGUkZoc0xwVXNJTU95TFRGUnFNSnA4WE9NMzlqcjhaSTdFOFFRRWxrL2RoWXo5NDVMS29qM2czR25MQUt2d3U0TXZLUVpiRnoweWNkN3lkSTZDRW5pTDN2MzNsbE1aRm5La3FZTGp5MXRIRVlSWkNSUllqRm5QNnVyVkI1N2loR3dhSldQNC9xWWxWWEdoNzByTy9ESVBxN1E2MzJ5TVIzd0IzRG82RlJyalFaTk5NU0dRb0gvZmFNUldzNkszTUtROHFJUTc0ZEN4ai9VT24ybHBQaXZzbDNYWEZIUTBDdGNPTDRMN2gycVJYbml3eWU4RVExNFZ6aWphOTNXUWRPN2FNS1c4YnNFTVEvSTVQNlMvQ0l2bEJsM3VjTHp1V1I4RGJHU095RGkzNEJYMmZlaGt0YUk3Nkk2YS9kUTdzZmphczV3T1htZHRrbFlDbXRISWpGdmNVQ09VSlVQc1BzSG9yOU5TT2NGT0xvdUZqam56SVBQVW1RMVhqbWwwUVdHM0l4Wk5BZlNuQytzMjNkTzl2NFVmRVNHOUF6Y1hvU3Qzb1VwUFg1MTd4WHRwWDZnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABuIab6+kD6QEAAADglSXxP/EBAAAAwEbE8D/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENFa5H4fxQJUGhDQAAAJBFp4BB+A2AgLz83RawDt2LmI0D4g4Mqo0Gx40G1Y4G8JAGyA8M4hm0CkVuNHhMakl4TURFeU56ZzNNVEk1TmpVNU56VXNMVEVzTFRFc0xURXNMVEVzTVM0eU1UQXhNamM0TnpFeU9UWTFPVGMxTERFc01pNHdPRE01T1RjME5UVTVNRFV5TmpVMkxDMHhMQzB4TERFdU1EQXdNREV5TXl3ME9EQXVNakF6TnpZd01EQTJNVFUzT1N3d0xqVTRNVFUxTlRJNU5UY3pOVGsyTnpJc0xURWQ0aS9jU3lDeDBkTVFMWGpsbWo4MUFBQ0FQMG9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUVvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NQRDM0UVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBRm9KQ0lDQWdJQ0FCQkFBWWc0SXF2T1dBeEVBQUFBQUFBRHdQMklPQ0t6emxnTVJBQUFBQUFBQUFBQmlEZ2lyODVZREVRQUFBQUFBQUFBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUhFQUFBQ2drV1VXUDNrQUFBQ2d1dFVFUDRFQkFBQUFvTm1la1VHSkFRQUFBS0RkMkZSQmtRRUFBQUI2Wit5U1Faa0JBQUFBNEtYSmwwR2hBUUFBQU9ERUpGeEJxUUVBQUFBdThvdVpRZWdCQVlBQ2xBT0tBajR3TGpBd01UY3dPQ3d4TGpBd01EQXdNQ3d4TGpBd01EQXdNQ3d4TGpJMU1EQXdNQ3d4TGpNd01EQXdNQ3d4TGpNM01USTROQ3d4TGpVd01EQXdNSmtDMkNiekNxOWM4eitoQXEzdk5IakNTY0ZCd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFvQUF1ZFhKYjJkQjRRTEFBcFlOdWtFMVFla0MxQzdiWUVLc21rR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrNUE1MDBPR2ZMQStVL3dRTTB2NFdodlJ2blA4a0RUdFpPUGVRZjZqL1JBeUZtN3c2TmxPNC9nUVFBQUFEQXJIc1NQNGtFQUFBQVlBZnNEVCtRQkpzRG1BU2lpYzZ5cnFRSm9BVDJ5TnVEREtnRWdKRGZ3RXE0QklySGc3MCt3QVNBa04vQVNza0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNBcy94YlA2RUZBQUFBQUFBQThEK3BCUUFBQUFBQUFQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFDREg4UFUveVFVQUFBQUFBQUQ0UHc9PeoZAgwW+hmdBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAxMDEwNAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9Cg0KB2lzX3Zza3USAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5NzM1NDU3NDA3ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgICAqICBoCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 29735457407,
"shopid": 191316346,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":34924722,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbka-m974nj7pupld7c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1400066568,1002164,2018618,1400095067,1400285005,844931064601283,298933384,2153644,1718093079,1059152,1059154,822059908662278,825465608497696,822120592853526,2068629,298938357,2213652,298463379,700700063,298938368,298468389,2098628,2098629,1718088045],\"merge_rank\":0,\"model_id\":253336726222,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":34924722,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbka-m974nj7pupld7c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1400066568,1002164,2018618,1400095067,1400285005,844931064601283,298933384,2153644,1718093079,1059152,1059154,822059908662278,825465608497696,822120592853526,2068629,298938357,2213652,298463379,700700063,298938368,298468389,2098628,2098629,1718088045],\"merge_rank\":0,\"model_id\":253336726222,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENSi2r0CGI6vmNYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYSsxcWlkY2wyaWE4dXlwMXJTZ25LVkdmM2VhUnlJbzA5emFrYWxtdU5sYVBZMXUwa05zM1hrQzdzZFhGUkZoc0xwVXNJTU95TFRGUnFNSnA4WE9NMzlqcjhaSTdFOFFRRWxrL2RoWXo5NDVMS29qM2czR25MQUt2d3U0TXZLUVpiRnoweWNkN3lkSTZDRW5pTDN2MzNsbE1aRm5La3FZTGp5MXRIRVlSWkNSUllqRm5QNnVyVkI1N2loR3dhSldQNC9xWWxWWEdoNzByTy9ESVBxN1E2MzJ5TVIzd0IzRG82RlJyalFaTk5NU0dRb0gvZmFNUldzNkszTUtROHFJUTc0ZEN4ai9VT24ybHBQaXZzbDNYWEZIUTBDdGNPTDRMN2gycVJYbml3eWU4RVExNFZ6aWphOTNXUWRPN2FNS1c4YnNFTVEvSTVQNlMvQ0l2bEJsM3VjTHp1V1I4RGJHU095RGkzNEJYMmZlaGt0YUk3Nkk2YS9kUTdzZmphczV3T1htZHRrbFlDbXRISWpGdmNVQ09VSlVQc1BzSG9yOU5TT2NGT0xvdUZqam56SVBQVW1RMVhqbWwwUVdHM0l4Wk5BZlNuQytzMjNkTzl2NFVmRVNHOUF6Y1hvU3Qzb1VwUFg1MTd4WHRwWDZnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABuIab6+kD6QEAAADglSXxP/EBAAAAwEbE8D/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENFa5H4fxQJUGhDQAAAJBFp4BB+A2AgLz83RawDt2LmI0D4g4Mqo0Gx40G1Y4G8JAGyA8M4hm0CkVuNHhMakl4TURFeU56ZzNNVEk1TmpVNU56VXNMVEVzTFRFc0xURXNMVEVzTVM0eU1UQXhNamM0TnpFeU9UWTFPVGMxTERFc01pNHdPRE01T1RjME5UVTVNRFV5TmpVMkxDMHhMQzB4TERFdU1EQXdNREV5TXl3ME9EQXVNakF6TnpZd01EQTJNVFUzT1N3d0xqVTRNVFUxTlRJNU5UY3pOVGsyTnpJc0xURWQ0aS9jU3lDeDBkTVFMWGpsbWo4MUFBQ0FQMG9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUVvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NQRDM0UVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBRm9KQ0lDQWdJQ0FCQkFBWWc0SXF2T1dBeEVBQUFBQUFBRHdQMklPQ0t6emxnTVJBQUFBQUFBQUFBQmlEZ2lyODVZREVRQUFBQUFBQUFBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUhFQUFBQ2drV1VXUDNrQUFBQ2d1dFVFUDRFQkFBQUFvTm1la1VHSkFRQUFBS0RkMkZSQmtRRUFBQUI2Wit5U1Faa0JBQUFBNEtYSmwwR2hBUUFBQU9ERUpGeEJxUUVBQUFBdThvdVpRZWdCQVlBQ2xBT0tBajR3TGpBd01UY3dPQ3d4TGpBd01EQXdNQ3d4TGpBd01EQXdNQ3d4TGpJMU1EQXdNQ3d4TGpNd01EQXdNQ3d4TGpNM01USTROQ3d4TGpVd01EQXdNSmtDMkNiekNxOWM4eitoQXEzdk5IakNTY0ZCd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFvQUF1ZFhKYjJkQjRRTEFBcFlOdWtFMVFla0MxQzdiWUVLc21rR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrNUE1MDBPR2ZMQStVL3dRTTB2NFdodlJ2blA4a0RUdFpPUGVRZjZqL1JBeUZtN3c2TmxPNC9nUVFBQUFEQXJIc1NQNGtFQUFBQVlBZnNEVCtRQkpzRG1BU2lpYzZ5cnFRSm9BVDJ5TnVEREtnRWdKRGZ3RXE0QklySGc3MCt3QVNBa04vQVNza0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNBcy94YlA2RUZBQUFBQUFBQThEK3BCUUFBQUFBQUFQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFDREg4UFUveVFVQUFBQUFBQUQ0UHc9PeoZAgwW+hmdBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAxMDEwNAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9Cg0KB2lzX3Zza3USAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5NzM1NDU3NDA3ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgICAqICBoCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29735457407",
"debug_info": null
},
{
"item_basic": {
"itemid": 6242949088,
"shopid": 211468201,
"name": "AC MIDEA MSAF-09CRN2X + PASANG AC SPLIT 1 PK STANDARD",
"label_ids": [
1002164,
1400095067,
1400285005,
1000961,
844931026694327,
844931046478970,
844931064601283,
1059152,
1059154,
822059908662278,
700585046,
822120592853526,
2018618,
1012763,
1015914,
700190087,
2153644,
2213652,
1400066568,
825465608497696,
298463379,
1718093079,
2008656,
1718088045,
298468389
],
"image": "id-11134207-82250-mhu7q4tyfuva5f",
"images": [
"id-11134207-82250-mhu7q4tyfuva5f",
"id-11134207-7r98r-ln8d7fe1kop8b6",
"id-11134207-7r98o-lxauz505qer28b",
"id-11134207-7r98s-lxauz505rtbice",
"id-11134207-7r991-lxauz505p06m89",
"id-11134207-7r98o-lxauz505nlm696"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1595232488,
"sold": 1,
"historical_sold": 11,
"liked": false,
"liked_count": 59,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 5,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 347400000000,
"price_min": 347400000000,
"price_max": 347400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Paket",
"options": [
"PASANG 0.5mm",
"PASANG 0.6mm",
"PASANG 0.76mm"
],
"images": [
"id-11134207-7r98y-ln8d8lck68d945",
"id-11134207-7r98z-ln8d8n39mguv6c",
"id-11134207-7r98u-ln8d8ov312t2e9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8,
"rating_count": [
5,
0,
0,
0,
1,
4
],
"rcount_with_context": 2,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 347400000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 98809464403,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 347400000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 11,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 11,
"display_sold_count_text": "11"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SELKA.id Official Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 409295052,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibibJYhHIfhoWiqd/DV0ZNLiSLt2d02htmBor186cqyaDpfUPlUZBBxNOfy6MVF6ydxmuMk7RcdcFYsYVdtIESPSIOy+87/r/XV6I49YkBPJtZ2D22qhiPBwG9BlKgCY2IS5wz73K5l2CE4m48u/B0gH/+KJyUH2CWJJnyex5pkXHdKfswJYHJlrYcRzFLf6D3rx3sKIytQW8BJVzd4ff7/NQ89ibVwWzJK7rR6jrN9PWeJEXr8RwgxBgNq01AU/3ZU6ncA7V9SEQnDsFc5dXE853ygKdCs13gvYvyTMsgf3hLX8KEK7hygblh/eRkBWA4KtZmrpMf+TzO0wf/WP9FIAf4f+zvBtbxu92Z5PdnlBw1zIxlVm7aQqIoP97wVBfcnUSQFiIbO6t651G2w79xUClHOQJC2iDqXbhc+yYXnUNtFAP5iz985HM+2WrobY9FxWp4MCGgu7sgqx4TTLD3RrVr+m+LMZ0dLxI+UO23IIA==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EMyxlcMBGK374JcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYmliSlloSElmaG9XaXFkL0RWMFpOTGlTTHQyZDAyaHRtQm9yMTg2Y3F5YURwZlVQbFVaQkJ4Tk9meTZNVkY2eWR4bXVNazdSY2RjRllzWVZkdElFU1BTSU95Kzg3L3IvWFY2STQ5WWtCUEp0WjJEMjJxaGlQQndHOUJsS2dDWTJJUzV3ejczSzVsMkNFNG00OHUvQjBnSC8rS0p5VUgyQ1dKSm55ZXg1cGtYSGRLZnN3SllISmxyWWNSekZMZjZEM3J4M3NLSXl0UVc4QkpWemQ0ZmY3L05RODlpYlZ3V3pKSzdyUjZqck45UFdlSkVYcjhSd2d4QmdOcTAxQVUvM1pVNm5jQTdWOVNFUW5Ec0ZjNWRYRTg1M3lnS2RDczEzZ3ZZdnlUTXNnZjNoTFg4S0VLN2h5Z2JsaC9lUmtCV0E0S3RabXJwTWYrVHpPMHdmL1dQOUZJQWY0Zit6dkJ0Ynh1OTJaNVBkbmxCdzF6SXhsVm03YVFxSW9QOTd3VkJmY25VU1FGaUliTzZ0NjUxRzJ3Nzl4VUNsSE9RSkMyaURxWGJoYyt5WVhuVU50RkFQNWl6OTg1SE0rMldyb2JZOUZ4V3A0TUNHZ3U3c2dxeDRUVExEM1JyVnIrbStMTVowZEx4SStVTzIzSUlBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB2tHao/cK6QEAAADglSXxP/EBAAAA4FAc8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENzczMzHzzBEGhDQAAAIA5XmBB+A2AgP6/gQqwDvyn1YUB4g4Mqo0Gx40G1Y4G8JAGyA8N4hnsCUVvSUJNQzR6TlRVME9EWTJNamN5TXpjeE16Z3lOU3d0TVN3dE1Td3RNU3d0TVN3d0xqTTFOVFE0TmpZeU56SXpOekV6T0RJMUxERXNNQzQxTURJeE5EQTBORGt5TURBME16QTBMQzB4TEMweExERXVNREF3TURFeU15d3lNeTR3T1RRMk1EWTJORGs0TlRNMk5UWXNNQzQwT0RZME5EUTBPVEk1TmpnMU5qZ3lNeXd0TVIwckxiaExJTXZqaXdRdFdBSzJQalVBQUlBL1NoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRm9KQ0lDQWdJQ0FCQkFBV2djSXF2T1dBeEFBV2djSXJQT1dBeEFBV2djSXEvT1dBeEFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SXF2T1dBeEVBQUFBQUFBRHdQMklPQ0t6emxnTVJBQUFBQUFBQUFBQmlEZ2lyODVZREVRQUFBQUFBQUFBQWNRQUFBT0JLcEFJL2VRQUFBS0NBWVJFL2dRRUFBQUJBeWRWcFFZa0JBQUFBNERabWVVR1JBUUFBQU1DTktJTkJtUUVBQUFCQVRuQnhRYUVCQUFBQXdLTitnRUdwQVFBQUFPREtOb2xCNkFFQmdBS1VBNG9DUGpBdU1EQXpOVFV6TERFdU1EQXdNREF3TERFdU1ESXlNalExTERFdU1qVXdNREF3TERFdU16QXdNREF3TERFdU5EQXdNREF3TERFdU5UQXdNREF3bVFMSmhvbjdTc0RXUDZFQ3JlODBlTUpKd1VIQkFnQUFBQUFBQUFDQXlnSUxDQUVSQUFBQUFBQUFBQURLQWdzSUFoRUFBQUFBQUFBQWdOa0NBRDhGdXBYcFRFSGhBdUJ3bzZtQTNXSkI2UUszblhpdVlqK2xRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A3a0RWTVFCRGlFbTRqL0JBNktkOE1xdHR1US95UU9pZmdZd2E2M29QOUVEV0YzL1lTdVc3VCtCQkFBQUFLREVLZjQraVFRQUFBQ0FHSkgzUHBBRW13T1lCUGludVA3a0JLQUUyNEw4QnFnRWdNcTE3Z0c0QktYSHVlY0J3QVNBeXJYdUFja0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQURBaEJ0dFA2RUZBQUFBQUFBQThEK3BCUUFBQUNBZFcvQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZAgsW8hkCzQj6GZwGCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiEKD3Zza3VfdW5pcXVlX2tleRIOIgwwXzYyNDI5NDkwODgKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDEwMTA0LDYxMTAyMDMwNAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYALAfz4KAgKCAgaggyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 6242949088,
"shopid": 211468201,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":8581580,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhu7q4tyfuva5f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,844931026694327,844931046478970,844931064601283,1059152,1059154,822059908662278,700585046,822120592853526,2018618,1012763,1015914,700190087,2153644,2213652,1400066568,825465608497696,298463379,1718093079,2008656,1718088045,298468389],\"merge_rank\":0,\"model_id\":98809464403,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":8581580,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhu7q4tyfuva5f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,844931026694327,844931046478970,844931064601283,1059152,1059154,822059908662278,700585046,822120592853526,2018618,1012763,1015914,700190087,2153644,2213652,1400066568,825465608497696,298463379,1718093079,2008656,1718088045,298468389],\"merge_rank\":0,\"model_id\":98809464403,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EMyxlcMBGK374JcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYmliSlloSElmaG9XaXFkL0RWMFpOTGlTTHQyZDAyaHRtQm9yMTg2Y3F5YURwZlVQbFVaQkJ4Tk9meTZNVkY2eWR4bXVNazdSY2RjRllzWVZkdElFU1BTSU95Kzg3L3IvWFY2STQ5WWtCUEp0WjJEMjJxaGlQQndHOUJsS2dDWTJJUzV3ejczSzVsMkNFNG00OHUvQjBnSC8rS0p5VUgyQ1dKSm55ZXg1cGtYSGRLZnN3SllISmxyWWNSekZMZjZEM3J4M3NLSXl0UVc4QkpWemQ0ZmY3L05RODlpYlZ3V3pKSzdyUjZqck45UFdlSkVYcjhSd2d4QmdOcTAxQVUvM1pVNm5jQTdWOVNFUW5Ec0ZjNWRYRTg1M3lnS2RDczEzZ3ZZdnlUTXNnZjNoTFg4S0VLN2h5Z2JsaC9lUmtCV0E0S3RabXJwTWYrVHpPMHdmL1dQOUZJQWY0Zit6dkJ0Ynh1OTJaNVBkbmxCdzF6SXhsVm03YVFxSW9QOTd3VkJmY25VU1FGaUliTzZ0NjUxRzJ3Nzl4VUNsSE9RSkMyaURxWGJoYyt5WVhuVU50RkFQNWl6OTg1SE0rMldyb2JZOUZ4V3A0TUNHZ3U3c2dxeDRUVExEM1JyVnIrbStMTVowZEx4SStVTzIzSUlBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB2tHao/cK6QEAAADglSXxP/EBAAAA4FAc8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENzczMzHzzBEGhDQAAAIA5XmBB+A2AgP6/gQqwDvyn1YUB4g4Mqo0Gx40G1Y4G8JAGyA8N4hnsCUVvSUJNQzR6TlRVME9EWTJNamN5TXpjeE16Z3lOU3d0TVN3dE1Td3RNU3d0TVN3d0xqTTFOVFE0TmpZeU56SXpOekV6T0RJMUxERXNNQzQxTURJeE5EQTBORGt5TURBME16QTBMQzB4TEMweExERXVNREF3TURFeU15d3lNeTR3T1RRMk1EWTJORGs0TlRNMk5UWXNNQzQwT0RZME5EUTBPVEk1TmpnMU5qZ3lNeXd0TVIwckxiaExJTXZqaXdRdFdBSzJQalVBQUlBL1NoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRm9KQ0lDQWdJQ0FCQkFBV2djSXF2T1dBeEFBV2djSXJQT1dBeEFBV2djSXEvT1dBeEFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SXF2T1dBeEVBQUFBQUFBRHdQMklPQ0t6emxnTVJBQUFBQUFBQUFBQmlEZ2lyODVZREVRQUFBQUFBQUFBQWNRQUFBT0JLcEFJL2VRQUFBS0NBWVJFL2dRRUFBQUJBeWRWcFFZa0JBQUFBNERabWVVR1JBUUFBQU1DTktJTkJtUUVBQUFCQVRuQnhRYUVCQUFBQXdLTitnRUdwQVFBQUFPREtOb2xCNkFFQmdBS1VBNG9DUGpBdU1EQXpOVFV6TERFdU1EQXdNREF3TERFdU1ESXlNalExTERFdU1qVXdNREF3TERFdU16QXdNREF3TERFdU5EQXdNREF3TERFdU5UQXdNREF3bVFMSmhvbjdTc0RXUDZFQ3JlODBlTUpKd1VIQkFnQUFBQUFBQUFDQXlnSUxDQUVSQUFBQUFBQUFBQURLQWdzSUFoRUFBQUFBQUFBQWdOa0NBRDhGdXBYcFRFSGhBdUJ3bzZtQTNXSkI2UUszblhpdVlqK2xRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A3a0RWTVFCRGlFbTRqL0JBNktkOE1xdHR1US95UU9pZmdZd2E2M29QOUVEV0YzL1lTdVc3VCtCQkFBQUFLREVLZjQraVFRQUFBQ0FHSkgzUHBBRW13T1lCUGludVA3a0JLQUUyNEw4QnFnRWdNcTE3Z0c0QktYSHVlY0J3QVNBeXJYdUFja0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQURBaEJ0dFA2RUZBQUFBQUFBQThEK3BCUUFBQUNBZFcvQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZAgsW8hkCzQj6GZwGCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiEKD3Zza3VfdW5pcXVlX2tleRIOIgwwXzYyNDI5NDkwODgKFAoOc2hvcF9ibGFja2xpc3QSAigACikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDEwMTA0LDYxMTAyMDMwNAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYALAfz4KAgKCAgaggyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_6242949088",
"debug_info": null
},
{
"item_basic": {
"itemid": 1793757129,
"shopid": 117080411,
"name": "AC DAIKIN STANDART 1/2 PK 1/2PK FTC15 FTC15Y Nusantara Prestige",
"label_ids": [
21,
71,
22,
1059152,
1059154,
822059908662278,
844931026694327,
844931046478970,
844931064601283,
1400285055,
822120592853526,
2018618,
2018619,
1012763,
1012729,
1015914,
700190087,
298463379,
2153644,
2213652,
2008656,
298468389
],
"image": "id-11134207-81ztf-meo0nelv4uthe0",
"images": [
"id-11134207-81ztf-meo0nelv4uthe0",
"id-11134207-7ra0g-mcbizi7642u863",
"id-11134207-81ztm-meo0nelv3g9146",
"id-11134207-81ztc-meo0nelv21old6",
"id-11134207-81ztc-meo0nelv0n45b9",
"id-11134207-7ra0o-mcbizi7619pc44"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1546083320,
"sold": 3,
"historical_sold": 43,
"liked": false,
"liked_count": 169,
"view_count": null,
"catid": 100010,
"brand": "Daikin",
"cmt_count": 26,
"flag": 917506,
"cb_option": 0,
"item_status": "normal",
"price": 406900000000,
"price_min": 406900000000,
"price_max": 406900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
26,
0,
0,
0,
0,
26
],
"rcount_with_context": 7,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": true,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 406900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 32651252674,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 406900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 43,
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_display_sold_count": 43,
"display_sold_count_text": "43"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "INDO COOL Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 518676940,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYb5DKO2TieDIe6SG2/vdwyCk3pmNeejga4zfF+/1KTgb+nvl4glioxtRrJS3Me81r7ll+CZYVPiQ7GOF3P+ZoHQ5lDCPBxCwLu9KvdFsq9mntOMuVItwIbFZpCOci1BzVzclVnP62nZUDJUui56zK4L87UPOlxc54RTF8pJyhlJPPUCQAIAE3Y6s1egpeWu6217waVGga+VSFWDg4I6wYV9+sI3staI4tKpnJurL0Ig6REvFGn//lURA9018ol8HPP6eLoRAzvPws0xTDEMCcBe9igp3P/nHnm+ctO1x+QjSpzZgsE/gt+WmzXSrzIFVDyJxl2F1v8LrjZp4sv9cP97qkN8pJPJ0Z+2ACO2YfPARTZk/9HX614aPT3r1DBMKOKWOFtMooohsNHFEuEOFcCd58xVkfgmopxQHr8a1AUmpG+li4Fd2KCa9GLAVW5x7BdbiU5JCYucHrwEeVpfVHvRC8uh7ytCXVuzwij9KO6dA==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EMzDqfcBGOCgocMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWI1REtPMlRpZURJZTZTRzIvdmR3eUNrM3BtTmVlamdhNHpmRisvMUtUZ2IrbnZsNGdsaW94dFJySlMzTWU4MXI3bGwrQ1pZVlBpUTdHT0YzUCtab0hRNWxEQ1BCeEN3THU5S3ZkRnNxOW1udE9NdVZJdHdJYkZacENPY2kxQnpWemNsVm5QNjJuWlVESlV1aTU2eks0TDg3VVBPbHhjNTRSVEY4cEp5aGxKUFBVQ1FBSUFFM1k2czFlZ3BlV3U2MjE3d2FWR2dhK1ZTRldEZzRJNndZVjkrc0kzc3RhSTR0S3BuSnVyTDBJZzZSRXZGR24vL2xVUkE5MDE4b2w4SFBQNmVMb1JBenZQd3MweFRERU1DY0JlOWlncDNQL25Ibm0rY3RPMXgrUWpTcHpaZ3NFL2d0K1dtelhTcnpJRlZEeUp4bDJGMXY4THJqWnA0c3Y5Y1A5N3FrTjhwSlBKMForMkFDTzJZZlBBUlRaay85SFg2MTRhUFQzcjFEQk1LT0tXT0Z0TW9vb2hzTkhGRXVFT0ZjQ2Q1OHhWa2ZnbW9weFFIcjhhMUFVbXBHK2xpNEZkMktDYTlHTEFWVzV4N0JkYmlVNUpDWXVjSHJ3RWVWcGZWSHZSQzh1aDd5dENYVnV6d2lqOUtPNmRBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB8Ki35eUK6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENCtejcPC+IEGhDQAAALBXKnpB+A2AgIbp6wuwDoTcw84B4g4Mqo0Gx40G1Y4G8JAGyA8O4hnMCkVva0JNQzQ1TlRBMk5qQTRNakUyTWprME9UQTBMQzB4TEMweExDMHhMQzB4TERBdU9UWXdNall6TkRVMk1Ua3hOREEwTkN3eExERXVPVEEwTkRFek9EWTBOall6TnpjMU5pd3RNU3d0TVN3d0xqTTRPRFEwTlRZNU9UWXdOak0xTkRFc01DNHlOakE0TnpVMU1qWTJNelk1TURRNU5Dd3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5RDZ5b29OTFlKZWN6ODFBQUNBUDBvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ1BEMzRRUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHa1RrUzMxcHJvZ3dYRUFBQURBN1BZRFAza0FBQUNBR0MvMVBvRUJBQUFBWUJ4ZGNFR0pBUUFBQUdCbkxtQkJrUUVBQUFBUVVIUjRRWmtCQUFBQXdFd1hka0doQVFBQUFNQSsyR1ZCcVFFQUFBQVF0b0dBUWVnQkFZQUNsQU9LQWo0d0xqQXdNelV3TlN3eExqQXdNREF3TUN3eExqQXhPVEF5Tnl3eExqSTFNREF3TUN3eExqSTRNamcwTnl3eExqTXhNamszTml3eExqVXdNREF3TUprQ00xcDhiWHE2N2oraEFxM3ZOSGpDU2NGQndRSVRrUzMxcHJvZ3djb0NDd2dCRVJPUkxmV211aURCeWdJTENBSVJTT1dsbUlHQUdzSFpBa0FqeE11S3VVcEI0UUxBc1hEQyt6ZENRZWtDMEJva2lHNXhuMEdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBL1p0TXRFQjQrRS93UU5aUWlDd016SGtQOGtEcnNNczBrdy81ei9SQTJxcUZyQ293T3cvZ1FRQUFBQUE1SFAvUG9rRUFBQUE0R2hiK1Q2UUJKc0RtQVNLL011cDh3T2dCSkNtdHRrRHFBU0FsT3ZjQTdnRThPMjBBOEFFZ0pUcjNBUEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBb0EyMmJEK2hCUUFBQUFBQUFQQS9xUVVBQUFEQTdrM3dQN0VGQUFBQUFBQUE5RCs1QlFBQUFFQ0todlEvd1FVQUFBQmc4d0gxUDhrRkFBQUFBQUFBK0Q4PeoZAgsW8hkCzQj6GZIGCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8xNzkzNzU3MTI5CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0sB/AgoCAiICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 1793757129,
"shopid": 117080411,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":27438,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztf-meo0nelv4uthe0\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[21,71,22,1059152,1059154,822059908662278,844931026694327,844931046478970,844931064601283,1400285055,822120592853526,2018618,2018619,1012763,1012729,1015914,700190087,298463379,2153644,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":32651252674,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":27438,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztf-meo0nelv4uthe0\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[21,71,22,1059152,1059154,822059908662278,844931026694327,844931046478970,844931064601283,1400285055,822120592853526,2018618,2018619,1012763,1012729,1015914,700190087,298463379,2153644,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":32651252674,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EMzDqfcBGOCgocMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWI1REtPMlRpZURJZTZTRzIvdmR3eUNrM3BtTmVlamdhNHpmRisvMUtUZ2IrbnZsNGdsaW94dFJySlMzTWU4MXI3bGwrQ1pZVlBpUTdHT0YzUCtab0hRNWxEQ1BCeEN3THU5S3ZkRnNxOW1udE9NdVZJdHdJYkZacENPY2kxQnpWemNsVm5QNjJuWlVESlV1aTU2eks0TDg3VVBPbHhjNTRSVEY4cEp5aGxKUFBVQ1FBSUFFM1k2czFlZ3BlV3U2MjE3d2FWR2dhK1ZTRldEZzRJNndZVjkrc0kzc3RhSTR0S3BuSnVyTDBJZzZSRXZGR24vL2xVUkE5MDE4b2w4SFBQNmVMb1JBenZQd3MweFRERU1DY0JlOWlncDNQL25Ibm0rY3RPMXgrUWpTcHpaZ3NFL2d0K1dtelhTcnpJRlZEeUp4bDJGMXY4THJqWnA0c3Y5Y1A5N3FrTjhwSlBKMForMkFDTzJZZlBBUlRaay85SFg2MTRhUFQzcjFEQk1LT0tXT0Z0TW9vb2hzTkhGRXVFT0ZjQ2Q1OHhWa2ZnbW9weFFIcjhhMUFVbXBHK2xpNEZkMktDYTlHTEFWVzV4N0JkYmlVNUpDWXVjSHJ3RWVWcGZWSHZSQzh1aDd5dENYVnV6d2lqOUtPNmRBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB8Ki35eUK6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENCtejcPC+IEGhDQAAALBXKnpB+A2AgIbp6wuwDoTcw84B4g4Mqo0Gx40G1Y4G8JAGyA8O4hnMCkVva0JNQzQ1TlRBMk5qQTRNakUyTWprME9UQTBMQzB4TEMweExDMHhMQzB4TERBdU9UWXdNall6TkRVMk1Ua3hOREEwTkN3eExERXVPVEEwTkRFek9EWTBOall6TnpjMU5pd3RNU3d0TVN3d0xqTTRPRFEwTlRZNU9UWXdOak0xTkRFc01DNHlOakE0TnpVMU1qWTJNelk1TURRNU5Dd3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5RDZ5b29OTFlKZWN6ODFBQUNBUDBvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ1BEMzRRUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHa1RrUzMxcHJvZ3dYRUFBQURBN1BZRFAza0FBQUNBR0MvMVBvRUJBQUFBWUJ4ZGNFR0pBUUFBQUdCbkxtQkJrUUVBQUFBUVVIUjRRWmtCQUFBQXdFd1hka0doQVFBQUFNQSsyR1ZCcVFFQUFBQVF0b0dBUWVnQkFZQUNsQU9LQWo0d0xqQXdNelV3TlN3eExqQXdNREF3TUN3eExqQXhPVEF5Tnl3eExqSTFNREF3TUN3eExqSTRNamcwTnl3eExqTXhNamszTml3eExqVXdNREF3TUprQ00xcDhiWHE2N2oraEFxM3ZOSGpDU2NGQndRSVRrUzMxcHJvZ3djb0NDd2dCRVJPUkxmV211aURCeWdJTENBSVJTT1dsbUlHQUdzSFpBa0FqeE11S3VVcEI0UUxBc1hEQyt6ZENRZWtDMEJva2lHNXhuMEdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBL1p0TXRFQjQrRS93UU5aUWlDd016SGtQOGtEcnNNczBrdy81ei9SQTJxcUZyQ293T3cvZ1FRQUFBQUE1SFAvUG9rRUFBQUE0R2hiK1Q2UUJKc0RtQVNLL011cDh3T2dCSkNtdHRrRHFBU0FsT3ZjQTdnRThPMjBBOEFFZ0pUcjNBUEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBb0EyMmJEK2hCUUFBQUFBQUFQQS9xUVVBQUFEQTdrM3dQN0VGQUFBQUFBQUE5RCs1QlFBQUFFQ0todlEvd1FVQUFBQmc4d0gxUDhrRkFBQUFBQUFBK0Q4PeoZAgsW8hkCzQj6GZIGCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8xNzkzNzU3MTI5CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0sB/AgoCAiICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_1793757129",
"debug_info": null
},
{
"item_basic": {
"itemid": 29220887058,
"shopid": 85961994,
"name": "Midea AC Inverter 1/2 PK MSIAF-05CRDN2X / 0.5 PK MSIAF-05CRDN2 R32",
"label_ids": [
13,
38,
39,
47,
1000501,
1000509,
1400095067,
1400285005,
844931064601283,
1400066568,
1718093079,
2018618,
2018619,
1012729,
2153644,
1428713,
1718087960,
2213652,
298463379,
700005490,
700005495,
1049120,
825465608497696,
822059908662278,
834403089593352,
822120592853526,
1059152,
1049122,
1718088045,
298468389
],
"image": "id-11134207-7rask-m4qyzy3y2mf265",
"images": [
"id-11134207-7rask-m4qyzy3y2mf265",
"id-11134207-7ras9-m3vmh23n0e0e44",
"id-11134207-7rasg-m4qyzy3y17um24",
"sg-11134201-7rfft-m3vlzn1omli8fc",
"sg-11134201-7rff1-m3vlzmrf1mcg2c",
"sg-11134201-7rfge-m3vlzmhfgaav40",
"sg-11134201-7rfgi-m3vlzndc6y6u59",
"sg-11134201-7rfg7-m3vlzm7puhlp32",
"sg-11134201-7rfgn-m3vlzlvicbc010"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1734409546,
"sold": 0,
"historical_sold": 4,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 350900000000,
"price_min": 350900000000,
"price_max": 350900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6knaj-m4qz1v8ir7fy87.16000081736308081.mp4",
"thumb_url": "id-11110105-6knaj-m4qz1v8ir7fy87_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6knaj-m4qz1v8ir7fy87",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knaj-m4qz1v8ir7fy87.16000081736308081.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knaj-m4qz1v8ir7fy87.16000081736308081.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knaj-m4qz1v8ir7fy87.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Pemasangan",
"options": [
"Tanpa Pasang",
"Plus Pasang"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 350900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 223596774530,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 350900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 4,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 4,
"display_sold_count_text": "4"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": " Sajun Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 677367188,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWia4P2zqizPk/RfEM/hxdG/Fw7T5I7rw9kIpQY97VVs2XvyBaxV6nJUYPRNNvgSyK4KWgTMY2w34cVRndATdUXPM4fBIPGLUkGNJ4gpJmK3DBba8PwqfniYeN/m6vnNM+yvU6vp5YtTUIP/DpZfi1JDIiuP/HLstMXV1+eaM+f8OkmOC+3kqyRkjY1/eDI7RxSizJj7nAoW0IKv3eq399IINIj+Rrvtnk8UtkrCdGBrSoU4s/JHf4gITadv3S1SzjEjLX9XN0oiQ8r/txrUjpshylzknxNGk1ufl9lhlKCR9wjaw3S6tHeMhWiwe4TD3ocqEVfdmW2CgrNMxdWXhAoKvrz4dNod9bqWbpP3Iy76r/7E3OVxAD4FuCbZNPiuk55Zl5+LaEVGopg3nKzEyylQ/e6pJBx3y7WPhRJmJsuUF7CTLB6p2lwuMfqhLw2FiPOXC2s9qdL0WK3Z9BsKWkKmYj9FGLTicCtmv0xVLW3Wyxg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EJSb/8ICGPuI1tcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTRQMnpxaXpQay9SZkVNL2h4ZEcvRnc3VDVJN3J3OWtJcFFZOTdWVnMyWHZ5QmF4VjZuSlVZUFJOTnZnU3lLNEtXZ1RNWTJ3MzRjVlJuZEFUZFVYUE00ZkJJUEdMVWtHTko0Z3BKbUszREJiYThQd3FmbmlZZU4vbTZ2bk5NK3l2VTZ2cDVZdFRVSVAvRHBaZmkxSkRJaXVQL0hMc3RNWFYxK2VhTStmOE9rbU9DKzNrcXlSa2pZMS9lREk3UnhTaXpKajduQW9XMElLdjNlcTM5OUlJTklqK1JydnRuazhVdGtyQ2RHQnJTb1U0cy9KSGY0Z0lUYWR2M1MxU3pqRWpMWDlYTjBvaVE4ci90eHJVanBzaHlsemtueE5HazF1Zmw5bGhsS0NSOXdqYXczUzZ0SGVNaFdpd2U0VEQzb2NxRVZmZG1XMkNnck5NeGRXWGhBb0t2cno0ZE5vZDlicVdicFAzSXk3NnIvN0UzT1Z4QUQ0RnVDYlpOUGl1azU1Wmw1K0xhRVZHb3BnM25LekV5eWxRL2U2cEpCeDN5N1dQaFJKbUpzdVVGN0NUTEI2cDJsd3VNZnFoTHcyRmlQT1hDMnM5cWRMMFdLM1o5QnNLV2tLbVlqOUZHTFRpY0N0bXYweFZMVzNXeXhnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABqbaywN4B6QEAAADglSXxP/EBAAAAAMOK8j/IDA/gDAHpDAAAAEDQ3Ko/iQ17FK5H4XqUP5ENMzMzM7dmC0GhDQAAACA/aGVB+A2AgJSamwqwDriolLwB4g4Mqo0Gx40G1Y4G8JAGyA8P4hm0CkVvWUJNQzR6TmpnM05qazBOekEzTkRNeE16Y3NMVEVzTFRFc0xURXNMVEVzTUM0ek5qZzNOamswTnpBM05ETXhNemNzTVN3eExqQXlNVE0xT0RnM05qVTNNamcwTnprc0xURXNMVEVzTUM0ek9EZzBORFUyT1RrMk1EWXpOVFF4TERJNUxqUTVNVGsxTnpZNU9USTROamd6TWl3d0xqWXhNekk0TnpnNE16Y3dOamsyTnpRc0xURWRtalBvU3lENGc2MEZMVnJQdkQ0MUFBQ0FQMG9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUVvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpSWllSUVFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJblByaEJCRUFBQUFBQUFBQUFGSU9DSWlKNGdRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmFDUWlBZ0lDQWdBUVFBRm9IQ0p6NjRRUVFBRm9IQ0lpSjRnUVFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NKejY0UVFSQUFBQUFBQUFBQUJpRGdpSWllSUVFUUFBQUFBQUFBQUFhZklUa0dTelh3dkJjUUFBQUFDYkx3OC9lUUFBQUVET3pTRS9nUUVBQUFCZ0Z3dDJRWWtCQUFBQVlNL3VZVUdSQVFBQUFCQi9BbjlCbVFFQUFBQmdMTUo5UWFFQkFBQUFBSmcxYUVHcEFRQUFBREI4N29SQmlnSStNQzR3TURVeU56VXNNUzR3TURBd01EQXNNUzR3TWpNMU5UUXNNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBbHU0SmtUcm1kYy9vUUt0N3pSNHdrbkJRY0VDOGhPUVpMTmZDOEhLQWdzSUFoRUFBQUFBQUFBQWdNb0NDd2dCRWZJVGtHU3pYd3ZCMlFLQWpLeE9aaE5lUWVFQ0FBZFhSUzR0VDBIcEFuZFBRaFExaDZsQnVRT1gxUzFGWTNYZlA4RUQrcnFDSkVjcDRqL0pBMWVPYzBqUGxlVS8wUU9LK3ExaU4vbnJQNEVFQUFBQXdDUHFCaitKQkFBQUFHQ1lYUUUva0FTYkE1Z0UvdDZuZ29KVG9BU1N4TkhOQjZnRWdQS0xxQW00Qk82dHV0b0J3QVNBOG91b0Nja0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNnTzV0MVA2RUZBQUFBQUFBQThEK3BCUUFBQUNCNllQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZAgoU+hmTBgoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABChIKDHZvdWNoZXJfbGVucxICEAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACg0KB2lzX3Zza3USAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5MjIwODg3MDU4ChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAyMDMwNApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWSwH4CAgIDggIGYgAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 29220887058,
"shopid": 85961994,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":11224,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4qyzy3y2mf265\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,2018618,2018619,1012729,2153644,1428713,1718087960,2213652,298463379,700005490,700005495,1049120,825465608497696,822059908662278,834403089593352,822120592853526,1059152,1049122,1718088045,298468389],\"merge_rank\":0,\"model_id\":223596774530,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":11224,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4qyzy3y2mf265\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,2018618,2018619,1012729,2153644,1428713,1718087960,2213652,298463379,700005490,700005495,1049120,825465608497696,822059908662278,834403089593352,822120592853526,1059152,1049122,1718088045,298468389],\"merge_rank\":0,\"model_id\":223596774530,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EJSb/8ICGPuI1tcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTRQMnpxaXpQay9SZkVNL2h4ZEcvRnc3VDVJN3J3OWtJcFFZOTdWVnMyWHZ5QmF4VjZuSlVZUFJOTnZnU3lLNEtXZ1RNWTJ3MzRjVlJuZEFUZFVYUE00ZkJJUEdMVWtHTko0Z3BKbUszREJiYThQd3FmbmlZZU4vbTZ2bk5NK3l2VTZ2cDVZdFRVSVAvRHBaZmkxSkRJaXVQL0hMc3RNWFYxK2VhTStmOE9rbU9DKzNrcXlSa2pZMS9lREk3UnhTaXpKajduQW9XMElLdjNlcTM5OUlJTklqK1JydnRuazhVdGtyQ2RHQnJTb1U0cy9KSGY0Z0lUYWR2M1MxU3pqRWpMWDlYTjBvaVE4ci90eHJVanBzaHlsemtueE5HazF1Zmw5bGhsS0NSOXdqYXczUzZ0SGVNaFdpd2U0VEQzb2NxRVZmZG1XMkNnck5NeGRXWGhBb0t2cno0ZE5vZDlicVdicFAzSXk3NnIvN0UzT1Z4QUQ0RnVDYlpOUGl1azU1Wmw1K0xhRVZHb3BnM25LekV5eWxRL2U2cEpCeDN5N1dQaFJKbUpzdVVGN0NUTEI2cDJsd3VNZnFoTHcyRmlQT1hDMnM5cWRMMFdLM1o5QnNLV2tLbVlqOUZHTFRpY0N0bXYweFZMVzNXeXhnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABqbaywN4B6QEAAADglSXxP/EBAAAAAMOK8j/IDA/gDAHpDAAAAEDQ3Ko/iQ17FK5H4XqUP5ENMzMzM7dmC0GhDQAAACA/aGVB+A2AgJSamwqwDriolLwB4g4Mqo0Gx40G1Y4G8JAGyA8P4hm0CkVvWUJNQzR6TmpnM05qazBOekEzTkRNeE16Y3NMVEVzTFRFc0xURXNMVEVzTUM0ek5qZzNOamswTnpBM05ETXhNemNzTVN3eExqQXlNVE0xT0RnM05qVTNNamcwTnprc0xURXNMVEVzTUM0ek9EZzBORFUyT1RrMk1EWXpOVFF4TERJNUxqUTVNVGsxTnpZNU9USTROamd6TWl3d0xqWXhNekk0TnpnNE16Y3dOamsyTnpRc0xURWRtalBvU3lENGc2MEZMVnJQdkQ0MUFBQ0FQMG9PQ0tyemxnTVJBQUFBQUFBQUFBQktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUVvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpSWllSUVFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJblByaEJCRUFBQUFBQUFBQUFGSU9DSWlKNGdRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmFDUWlBZ0lDQWdBUVFBRm9IQ0p6NjRRUVFBRm9IQ0lpSjRnUVFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NKejY0UVFSQUFBQUFBQUFBQUJpRGdpSWllSUVFUUFBQUFBQUFBQUFhZklUa0dTelh3dkJjUUFBQUFDYkx3OC9lUUFBQUVET3pTRS9nUUVBQUFCZ0Z3dDJRWWtCQUFBQVlNL3VZVUdSQVFBQUFCQi9BbjlCbVFFQUFBQmdMTUo5UWFFQkFBQUFBSmcxYUVHcEFRQUFBREI4N29SQmlnSStNQzR3TURVeU56VXNNUzR3TURBd01EQXNNUzR3TWpNMU5UUXNNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBbHU0SmtUcm1kYy9vUUt0N3pSNHdrbkJRY0VDOGhPUVpMTmZDOEhLQWdzSUFoRUFBQUFBQUFBQWdNb0NDd2dCRWZJVGtHU3pYd3ZCMlFLQWpLeE9aaE5lUWVFQ0FBZFhSUzR0VDBIcEFuZFBRaFExaDZsQnVRT1gxUzFGWTNYZlA4RUQrcnFDSkVjcDRqL0pBMWVPYzBqUGxlVS8wUU9LK3ExaU4vbnJQNEVFQUFBQXdDUHFCaitKQkFBQUFHQ1lYUUUva0FTYkE1Z0UvdDZuZ29KVG9BU1N4TkhOQjZnRWdQS0xxQW00Qk82dHV0b0J3QVNBOG91b0Nja0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNnTzV0MVA2RUZBQUFBQUFBQThEK3BCUUFBQUNCNllQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZAgoU+hmTBgoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABChIKDHZvdWNoZXJfbGVucxICEAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACg0KB2lzX3Zza3USAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5MjIwODg3MDU4ChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAyMDMwNApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWSwH4CAgIDggIGYgAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29220887058",
"debug_info": null
},
{
"item_basic": {
"itemid": 4840791945,
"shopid": 57328541,
"name": "GREE AC F1S SERIES - INVERTER 1 PK - GWC-09F1(S) - WHITE PEARL (Unit Indoor & Outdoor)",
"label_ids": [
27,
48,
1000109,
1002164,
1013565,
1400095067,
1400285005,
1000606,
22,
1001024,
700020158,
1015914,
700190087,
844931026694327,
844931046478970,
844931064601283,
825249635454464,
1400285055,
298458335,
298458334,
1668726,
700585046,
298458395,
1718087960,
1428713,
1718093079,
2018618,
1059152,
1049122,
822059908662278,
837860934119952,
825465608499232,
825465608497696,
298893311,
2068629,
298938357,
298933384,
298463379,
1400095022,
2153644,
700830032,
2213652,
2008656,
2098628,
298938368,
2098629,
298468389,
1718088045
],
"image": "id-11134207-7r98x-lr3udrcnp5z12c",
"images": [
"id-11134207-7r98x-lr3udrcnp5z12c",
"id-11134201-7r991-lllniw3n76mu12",
"id-11134201-7r992-lllnj7rg4v5826",
"id-11134201-7r992-lllnj71d70nb43"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1593844718,
"sold": 10,
"historical_sold": 228,
"liked": false,
"liked_count": 1269,
"view_count": null,
"catid": 100010,
"brand": "Gree",
"cmt_count": 106,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 576900000000,
"price_min": 576900000000,
"price_max": 576900000000,
"price_min_before_discount": 619900000000,
"price_max_before_discount": 619900000000,
"hidden_price_display": null,
"price_before_discount": 619900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-7%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.9363636363636365,
"rating_count": [
110,
0,
1,
0,
4,
105
],
"rcount_with_context": 47,
"rcount_with_image": 38
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "cb9237bcf00e64d59a2d31a847cbe02b",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp1,9JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 817277306470400,
"price": 576900000000,
"strikethrough_price": 619900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-7%",
"model_id": 50183188972,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 619900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 228,
"rounded_local_monthly_sold_count": 10,
"local_monthly_sold_count_text": "10",
"rounded_display_sold_count": 228,
"display_sold_count_text": "228"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp1,9JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Gree Official Store",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 344156939,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibx1Hs4ppcq5WxtjIKjH65RbheRLUId0WuDbntSa0DRdc7aas0rf41JZ3PM7fGc440q0pe4Re8MAUbPmuRPZhpuQNgTbWJpClA6oPoOMXJgB6aWWPhb1q8QLKg3/2eFe7pD2P+bDH9eD0hR3FPjAJnYsvqBXuGFvWdvw7hkLjXxYSAkU/OYtKIbW2yiK6hA+vG4OduF29VK3sstnfdWrIKGmKf8WvKqmYQl9vlP0+wwA8BSWZ9ldfne7i3+hk1zegtRgpJJQrc5n4hoOWUS8Rma25CfRsgix/gYZkZOGj3J9CacVCWymT61XdqKC+n+F8Zta2UdgIREfYbW3wpMHvj1+NYOAVpYP/JpRfBjcyraT4OKPc4MhjvkXpHVz2rm8FWVe614CyiEvU6V0b5J95uE8I8GY7YJ920b5DEE5/2LszEUaLzYQIZIU7p7IRoA9f8t18ZXlWV7P27iMPU2zOalyFmNGewY0o5uBk0mbZ826A==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EIvWjaQBGOX2u4gBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYngxSHM0cHBjcTVXeHRqSUtqSDY1UmJoZVJMVUlkMFd1RGJudFNhMERSZGM3YWFzMHJmNDFKWjNQTTdmR2M0NDBxMHBlNFJlOE1BVWJQbXVSUFpocHVRTmdUYldKcENsQTZvUG9PTVhKZ0I2YVdXUGhiMXE4UUxLZzMvMmVGZTdwRDJQK2JESDllRDBoUjNGUGpBSm5Zc3ZxQlh1R0Z2V2R2dzdoa0xqWHhZU0FrVS9PWXRLSWJXMnlpSzZoQSt2RzRPZHVGMjlWSzNzc3RuZmRXcklLR21LZjhXdktxbVlRbDl2bFAwK3d3QThCU1daOWxkZm5lN2kzK2hrMXplZ3RSZ3BKSlFyYzVuNGhvT1dVUzhSbWEyNUNmUnNnaXgvZ1laa1pPR2ozSjlDYWNWQ1d5bVQ2MVhkcUtDK24rRjhadGEyVWRnSVJFZlliVzN3cE1IdmoxK05ZT0FWcFlQL0pwUmZCamN5cmFUNE9LUGM0TWhqdmtYcEhWejJybThGV1ZlNjE0Q3lpRXZVNlYwYjVKOTV1RThJOEdZN1lKOTIwYjVERUU1LzJMc3pFVWFMellRSVpJVTdwN0lSb0E5Zjh0MThaWGxXVjdQMjdpTVBVMnpPYWx5Rm1OR2V3WTBvNXVCazBtYlo4MjZBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABrdu4wfkJ6QEAAADglSXxP/EBAAAAQLSn8D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENmpmZmfFpEUGhDQAAAICJNWtB+A2AgISBwxCwDqOEkKIC4g4Mqo0Gx40G1Y4G8JAGyA8Q4hnoCkVuSXdMalUwTmpRNExDMHhMQzB4TEMweExDMHhMREF1TlRVeUxERXNNQzQwTURrek1USXpNVE15TVRnME56VTJOeXd3TGprc0xURXNNQzR6T0RZM01ESTJOVGd4TkRZeU1USXpOU3d4TURndU9EVTJNRGswTmprMk1USTRNRGNzTUM0MU9EUTBOak13TnpJMk5UQXhNRFlzTFRFZHVVbmRTeURMMk9ZR0xSM21DejgxQUFDQVB6blRZRU5yY0Izd1FVSGZhSFJKTk9SRFFrb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQktFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHblVwNTVNZkdVUndYRUFBQUFBcG00S1Aza0FBQUNnTEhiK1BvRUJBQUFBUUN4QWZrR0pBUUFBQUFEd3hHTkJrUUVBQUFBZ1VoR0VRWmtCQUFBQUlGRnJoRUdoQVFBQUFBQkVzR3BCcVFFQUFBQWdZaGVMUWVnQkFZQUNsQU9LQWo0d0xqQXdORFUyTVN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqRTVOemcyTXl3eExqRTVOemcyTXl3eExqRTVOemcyTXl3eExqSTNOek00TVprQ1JJdHM1L3VwNFQraEFxM3ZOSGpDU2NGQndRTFVwNTVNZkdVUndjb0NDd2dCRWRTbm5reDhaUkhCeWdJTENBSVJBQUFBQUFBQUFJRFpBc0MwdDFZOUZGWkI0UUlBSUtEVHI1SkZRZWtDYTRYNkZBNzhuRUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBOU5nUTJ0d0hmQkJvUVBmYUhSSk5PUkRRcmtEV3VhNzRuSUY1RC9CQTlOMGZVT2krK1UveVFPbTR4SGRUSEhvUDlFRHk0Ym1LcSt1N1QvNkF3a0tCVWx6VGxCQ0VBRDZBd3NLQjFKdmFWUnBaWElRQS9vRERRb0pUM0prWlhKVWFXVnlFQUw2QXhFS0RVbDBaVzFRY21salpWUnBaWElRQTRFRUFBQUE0QndjQlQrSkJBQUFBSUNKN2dFL2tBU2JBNWdFdjhERzZKUzFBYUFFaGJienV4K29CSURJcjZBbHVBVDdrYnprQmNBRWdNaXZvQ1hKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQW9NYXVjaitoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUE0SEVxOHorNUJRQUFBT0J4S3ZNL3dRVUFBQURnY1NyelA4a0ZBQUFBSUNkdzlEOD3qGQS4TcNN+hmSBgoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKEgoMdm91Y2hlcl9sZW5zEgIQAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF80ODQwNzkxOTQ1Cg0KB2lzX3Zza3USAigACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 4840791945,
"shopid": 57328541,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":14267,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lr3udrcnp5z12c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1000606,22,1001024,700020158,1015914,700190087,844931026694327,844931046478970,844931064601283,825249635454464,1400285055,298458335,298458334,1668726,700585046,298458395,1718087960,1428713,1718093079,2018618,1059152,1049122,822059908662278,837860934119952,825465608499232,825465608497696,298893311,2068629,298938357,298933384,298463379,1400095022,2153644,700830032,2213652,2008656,2098628,298938368,2098629,298468389,1718088045],\"merge_rank\":0,\"model_id\":50183188972,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":14267,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lr3udrcnp5z12c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1000606,22,1001024,700020158,1015914,700190087,844931026694327,844931046478970,844931064601283,825249635454464,1400285055,298458335,298458334,1668726,700585046,298458395,1718087960,1428713,1718093079,2018618,1059152,1049122,822059908662278,837860934119952,825465608499232,825465608497696,298893311,2068629,298938357,298933384,298463379,1400095022,2153644,700830032,2213652,2008656,2098628,298938368,2098629,298468389,1718088045],\"merge_rank\":0,\"model_id\":50183188972,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EIvWjaQBGOX2u4gBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYngxSHM0cHBjcTVXeHRqSUtqSDY1UmJoZVJMVUlkMFd1RGJudFNhMERSZGM3YWFzMHJmNDFKWjNQTTdmR2M0NDBxMHBlNFJlOE1BVWJQbXVSUFpocHVRTmdUYldKcENsQTZvUG9PTVhKZ0I2YVdXUGhiMXE4UUxLZzMvMmVGZTdwRDJQK2JESDllRDBoUjNGUGpBSm5Zc3ZxQlh1R0Z2V2R2dzdoa0xqWHhZU0FrVS9PWXRLSWJXMnlpSzZoQSt2RzRPZHVGMjlWSzNzc3RuZmRXcklLR21LZjhXdktxbVlRbDl2bFAwK3d3QThCU1daOWxkZm5lN2kzK2hrMXplZ3RSZ3BKSlFyYzVuNGhvT1dVUzhSbWEyNUNmUnNnaXgvZ1laa1pPR2ozSjlDYWNWQ1d5bVQ2MVhkcUtDK24rRjhadGEyVWRnSVJFZlliVzN3cE1IdmoxK05ZT0FWcFlQL0pwUmZCamN5cmFUNE9LUGM0TWhqdmtYcEhWejJybThGV1ZlNjE0Q3lpRXZVNlYwYjVKOTV1RThJOEdZN1lKOTIwYjVERUU1LzJMc3pFVWFMellRSVpJVTdwN0lSb0E5Zjh0MThaWGxXVjdQMjdpTVBVMnpPYWx5Rm1OR2V3WTBvNXVCazBtYlo4MjZBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABrdu4wfkJ6QEAAADglSXxP/EBAAAAQLSn8D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENmpmZmfFpEUGhDQAAAICJNWtB+A2AgISBwxCwDqOEkKIC4g4Mqo0Gx40G1Y4G8JAGyA8Q4hnoCkVuSXdMalUwTmpRNExDMHhMQzB4TEMweExDMHhMREF1TlRVeUxERXNNQzQwTURrek1USXpNVE15TVRnME56VTJOeXd3TGprc0xURXNNQzR6T0RZM01ESTJOVGd4TkRZeU1USXpOU3d4TURndU9EVTJNRGswTmprMk1USTRNRGNzTUM0MU9EUTBOak13TnpJMk5UQXhNRFlzTFRFZHVVbmRTeURMMk9ZR0xSM21DejgxQUFDQVB6blRZRU5yY0Izd1FVSGZhSFJKTk9SRFFrb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQktFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHblVwNTVNZkdVUndYRUFBQUFBcG00S1Aza0FBQUNnTEhiK1BvRUJBQUFBUUN4QWZrR0pBUUFBQUFEd3hHTkJrUUVBQUFBZ1VoR0VRWmtCQUFBQUlGRnJoRUdoQVFBQUFBQkVzR3BCcVFFQUFBQWdZaGVMUWVnQkFZQUNsQU9LQWo0d0xqQXdORFUyTVN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqRTVOemcyTXl3eExqRTVOemcyTXl3eExqRTVOemcyTXl3eExqSTNOek00TVprQ1JJdHM1L3VwNFQraEFxM3ZOSGpDU2NGQndRTFVwNTVNZkdVUndjb0NDd2dCRWRTbm5reDhaUkhCeWdJTENBSVJBQUFBQUFBQUFJRFpBc0MwdDFZOUZGWkI0UUlBSUtEVHI1SkZRZWtDYTRYNkZBNzhuRUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBOU5nUTJ0d0hmQkJvUVBmYUhSSk5PUkRRcmtEV3VhNzRuSUY1RC9CQTlOMGZVT2krK1UveVFPbTR4SGRUSEhvUDlFRHk0Ym1LcSt1N1QvNkF3a0tCVWx6VGxCQ0VBRDZBd3NLQjFKdmFWUnBaWElRQS9vRERRb0pUM0prWlhKVWFXVnlFQUw2QXhFS0RVbDBaVzFRY21salpWUnBaWElRQTRFRUFBQUE0QndjQlQrSkJBQUFBSUNKN2dFL2tBU2JBNWdFdjhERzZKUzFBYUFFaGJienV4K29CSURJcjZBbHVBVDdrYnprQmNBRWdNaXZvQ1hKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQW9NYXVjaitoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUE0SEVxOHorNUJRQUFBT0J4S3ZNL3dRVUFBQURnY1NyelA4a0ZBQUFBSUNkdzlEOD3qGQS4TcNN+hmSBgoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKEgoMdm91Y2hlcl9sZW5zEgIQAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF80ODQwNzkxOTQ1Cg0KB2lzX3Zza3USAigACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_4840791945",
"debug_info": null
},
{
"item_basic": {
"itemid": 25262677217,
"shopid": 1180551736,
"name": "AC Sharp 1/2 PK A5ZCY LOW WATT FREE PASANG + AKSESORIS",
"label_ids": [
1400285055,
844931064601283,
1015914,
700190087,
1718087960,
1428713,
298458395,
298463379,
1918643,
1718093079,
2018619,
2023641,
298893311,
1059152,
700005489,
822059908662278,
822120592853526,
825465608497696,
837860934119952,
700830032,
1718088045,
298468389
],
"image": "id-11134207-7r98x-lrygc1vxfwxpec",
"images": [
"id-11134207-7r98x-lrygc1vxfwxpec",
"id-11134207-7rask-m54gb1w9e54yc9",
"id-11134201-7r98u-lrwt5f88arhlc6",
"id-11134201-7r98t-lrwt5f74cdyhc5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1707305334,
"sold": 19,
"historical_sold": 436,
"liked": false,
"liked_count": 795,
"view_count": null,
"catid": 100010,
"brand": "Sharp",
"cmt_count": 227,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 290700000000,
"price_min": 290700000000,
"price_max": 290700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Pembelian",
"options": [
"Unit Only",
"Unit Only + Material",
"+pasang",
"+pasang TradeIn"
],
"images": [
"id-11134201-7r98r-lrwt5fcy3vd279",
"id-11134201-7ra0h-mc61j0bf3y2h05",
"id-11134201-7r98r-lrwt5firvbry46",
"id-11134201-7ra0j-mc61m5ox73v5d1"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.873949579831932,
"rating_count": [
238,
3,
1,
4,
7,
223
],
"rcount_with_context": 77,
"rcount_with_image": 72
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 289700000000,
"strikethrough_price": 290700000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1303365091868672,
"discount_text": null,
"model_id": 250317891768,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1303365091868672,
"voucher_code": "RAJAVPB1",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1764832980,
"end_time": 1772902740,
"valid_duration": null
},
"groups": [],
"min_spend": 200000000000
},
"recommended_platform_voucher_info": null,
"original_price": 290700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 436,
"rounded_local_monthly_sold_count": 19,
"local_monthly_sold_count_text": "19",
"rounded_display_sold_count": 436,
"display_sold_count_text": "436"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Raja AC Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 351437037,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYbhCSWldJ77sUPYS3UqQI78xXDLm28g1S05ENmWM7v+cHHG/7Tbfx3FQLfIm0eMp4TsJlKHyDzlU3+LPU8xhBEhpbafywa8XGJ0Em4/Rqxn8U/4Ly6Rp3jJbqaaA2sIJrQ0B3qEialyTJ64n0AcCA/t4GZUYgH46FFd8X36jk9DLPJLBI5rue/HSp7PFZoWIcd8caNmdM0CIjlN/H2A4IcAuyP6p0Yt8C4ibIjWPlplOzvTAkrgCLi59pLGyryzU0gioR2MFEtUCWjCg/ZXu5Zx0clFvKOGU6DQdQlHnlVbw4K8Z7Q9pGtq3YV012bkRl0uwJQ8V6QglLCcGWZQmyEH+GIR6I74Qz06FvC4Wc21TyQXV/wr9MZ5CwxIKSp4bHISO1nINTFZjUcabVctuXiEc5N7YHJFxzNv3bJoN9ybvOU3RHItbUQOQDNVdwoT1DRqznWdsj6RllQGvdJdaiV66NLSyGfJy6WWH100RbL0g==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EO2ByqcBGPiK+okBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWJoQ1NXbGRKNzdzVVBZUzNVcVFJNzh4WERMbTI4ZzFTMDVFTm1XTTd2K2NISEcvN1RiZngzRlFMZkltMGVNcDRUc0psS0h5RHpsVTMrTFBVOHhoQkVocGJhZnl3YThYR0owRW00L1JxeG44VS80THk2UnAzakpicWFhQTJzSUpyUTBCM3FFaWFseVRKNjRuMEFjQ0EvdDRHWlVZZ0g0NkZGZDhYMzZqazlETFBKTEJJNXJ1ZS9IU3A3UEZab1dJY2Q4Y2FObWRNMENJamxOL0gyQTRJY0F1eVA2cDBZdDhDNGliSWpXUGxwbE96dlRBa3JnQ0xpNTlwTEd5cnl6VTBnaW9SMk1GRXRVQ1dqQ2cvWlh1NVp4MGNsRnZLT0dVNkRRZFFsSG5sVmJ3NEs4WjdROXBHdHEzWVYwMTJia1JsMHV3SlE4VjZRZ2xMQ2NHV1pRbXlFSCtHSVI2STc0UXowNkZ2QzRXYzIxVHlRWFYvd3I5TVo1Q3d4SUtTcDRiSElTTzFuSU5URlpqVWNhYlZjdHVYaUVjNU43WUhKRnh6TnYzYkpvTjl5YnZPVTNSSEl0YlVRT1FETlZkd29UMURScXpuV2RzajZSbGxRR3ZkSmRhaVY2Nk5MU3lHZkp5NldXSDEwMFJiTDBnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABtIST2OcH6QEAAADglSXxP/EBAAAAAOMZ9D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENcT0K18QJIUGhDQAAAJBDn3pB+A2AgNqIqQiwDu7pjJIB4g4Mqo0Gx40G1Y4G8JAGyA8R4hmEC0VvZ0JNUzR3Tmprek9EQTNNamsxTXpNeU5EYzRMQzB4TEMweExDMHhMQzB4TERFdU1EZ3dNVGd5TlRVMU1EZzBNRGc0Tnl3eExEQXVOREUwTURjeU5EVXdNRGM1TXpreU15d3dMamtzTFRFc01DNDROVE14TmpJek5qQTVOelU1TkRneExERXhOeTR4T1RJd01Ua3pPVGswT1RjME55d3dMalU0TkRRMk16QTNNalkxTURFd05pd3RNUjI1U2QxTElMam9wdzB0ZU9HSVB6VUFBSUEvT1FFOWtDRTEzd0ZDUWZ3YzdRUUZ6VTFDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBYWVNVVhKVUhBQVBCY1FBQUFDQUkvZ1kvZVFBQUFJQmdKL00rZ1FFQUFBQWdtM3RxUVlrQkFBQUFJUFY5VjBHUkFRQUFBTmhLSFhOQm1RRUFBQURnTytCeFFhRUJBQUFBd05lMlgwR3BBUUFBQU5EeHpYbEI2QUVCZ0FLVUE0b0NQakF1TURBME9UTTFMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUxzdTd5QWJVanhQNkVDcmU4MGVNSkp3VUhCQXVNVVhKVUhBQVBCeWdJTENBRVI0eFJjbFFjQUE4SEtBZ3NJQWhFQUFBQUFBQUFBZ05rQ3dHdW5IblhtUzBIaEFrQm1IRHVSL1QxQjZRSmhnbVliMmw2alFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrRDB0SlBRVnY0QWtLaEF5cGVFdEdBT2xCQ3VRUHpUTUpSN2lQaVA4RUQ4UjNsL2ZaUjVEL0pBMXlCSHNVSVIrYy8wUVBudjhkaTJ4bnRQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFEQVl2b0JQNGtFQUFBQXdFZHkvVDZRQkpzRG1BU2UwZWIzOWppZ0JMcXVoZjBXcUFTZzFiV2dKYmdFNXFhd293N0FCS0RWdGFBbHlRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBQ0N4Tm5RL29RVUFBQUFBQUFEd1A2a0ZBQUFBQUFBQThEK3hCUUFBQUFBQUFQUS91UVVBQUFEQXpNejBQOEVGQUFBQVlHWm05ai9KQlFBQUFBQUFBUGcv6hkEvk3ATfIZA7rEPPoZkwYKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjUyNjI2NzcyMTcKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoSCgx2b3VjaGVyX2xlbnMSAhAAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 25262677217,
"shopid": 1180551736,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":20132874,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lrygc1vxfwxpec\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1400285055,844931064601283,1015914,700190087,1718087960,1428713,298458395,298463379,1918643,1718093079,2018619,2023641,298893311,1059152,700005489,822059908662278,822120592853526,825465608497696,837860934119952,700830032,1718088045,298468389],\"merge_rank\":0,\"model_id\":250317891768,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":20132874,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lrygc1vxfwxpec\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1400285055,844931064601283,1015914,700190087,1718087960,1428713,298458395,298463379,1918643,1718093079,2018619,2023641,298893311,1059152,700005489,822059908662278,822120592853526,825465608497696,837860934119952,700830032,1718088045,298468389],\"merge_rank\":0,\"model_id\":250317891768,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EO2ByqcBGPiK+okBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWWJoQ1NXbGRKNzdzVVBZUzNVcVFJNzh4WERMbTI4ZzFTMDVFTm1XTTd2K2NISEcvN1RiZngzRlFMZkltMGVNcDRUc0psS0h5RHpsVTMrTFBVOHhoQkVocGJhZnl3YThYR0owRW00L1JxeG44VS80THk2UnAzakpicWFhQTJzSUpyUTBCM3FFaWFseVRKNjRuMEFjQ0EvdDRHWlVZZ0g0NkZGZDhYMzZqazlETFBKTEJJNXJ1ZS9IU3A3UEZab1dJY2Q4Y2FObWRNMENJamxOL0gyQTRJY0F1eVA2cDBZdDhDNGliSWpXUGxwbE96dlRBa3JnQ0xpNTlwTEd5cnl6VTBnaW9SMk1GRXRVQ1dqQ2cvWlh1NVp4MGNsRnZLT0dVNkRRZFFsSG5sVmJ3NEs4WjdROXBHdHEzWVYwMTJia1JsMHV3SlE4VjZRZ2xMQ2NHV1pRbXlFSCtHSVI2STc0UXowNkZ2QzRXYzIxVHlRWFYvd3I5TVo1Q3d4SUtTcDRiSElTTzFuSU5URlpqVWNhYlZjdHVYaUVjNU43WUhKRnh6TnYzYkpvTjl5YnZPVTNSSEl0YlVRT1FETlZkd29UMURScXpuV2RzajZSbGxRR3ZkSmRhaVY2Nk5MU3lHZkp5NldXSDEwMFJiTDBnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABtIST2OcH6QEAAADglSXxP/EBAAAAAOMZ9D/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENcT0K18QJIUGhDQAAAJBDn3pB+A2AgNqIqQiwDu7pjJIB4g4Mqo0Gx40G1Y4G8JAGyA8R4hmEC0VvZ0JNUzR3Tmprek9EQTNNamsxTXpNeU5EYzRMQzB4TEMweExDMHhMQzB4TERFdU1EZ3dNVGd5TlRVMU1EZzBNRGc0Tnl3eExEQXVOREUwTURjeU5EVXdNRGM1TXpreU15d3dMamtzTFRFc01DNDROVE14TmpJek5qQTVOelU1TkRneExERXhOeTR4T1RJd01Ua3pPVGswT1RjME55d3dMalU0TkRRMk16QTNNalkxTURFd05pd3RNUjI1U2QxTElMam9wdzB0ZU9HSVB6VUFBSUEvT1FFOWtDRTEzd0ZDUWZ3YzdRUUZ6VTFDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBYWVNVVhKVUhBQVBCY1FBQUFDQUkvZ1kvZVFBQUFJQmdKL00rZ1FFQUFBQWdtM3RxUVlrQkFBQUFJUFY5VjBHUkFRQUFBTmhLSFhOQm1RRUFBQURnTytCeFFhRUJBQUFBd05lMlgwR3BBUUFBQU5EeHpYbEI2QUVCZ0FLVUE0b0NQakF1TURBME9UTTFMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUxzdTd5QWJVanhQNkVDcmU4MGVNSkp3VUhCQXVNVVhKVUhBQVBCeWdJTENBRVI0eFJjbFFjQUE4SEtBZ3NJQWhFQUFBQUFBQUFBZ05rQ3dHdW5IblhtUzBIaEFrQm1IRHVSL1QxQjZRSmhnbVliMmw2alFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDVrRDB0SlBRVnY0QWtLaEF5cGVFdEdBT2xCQ3VRUHpUTUpSN2lQaVA4RUQ4UjNsL2ZaUjVEL0pBMXlCSHNVSVIrYy8wUVBudjhkaTJ4bnRQL29EQ1FvRlNYTk9VRUlRQVBvREN3b0hVbTlwVkdsbGNoQUQrZ01OQ2dsUGNtUmxjbFJwWlhJUUEvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQURnUVFBQUFEQVl2b0JQNGtFQUFBQXdFZHkvVDZRQkpzRG1BU2UwZWIzOWppZ0JMcXVoZjBXcUFTZzFiV2dKYmdFNXFhd293N0FCS0RWdGFBbHlRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBQ0N4Tm5RL29RVUFBQUFBQUFEd1A2a0ZBQUFBQUFBQThEK3hCUUFBQUFBQUFQUS91UVVBQUFEQXpNejBQOEVGQUFBQVlHWm05ai9KQlFBQUFBQUFBUGcv6hkEvk3ATfIZA7rEPPoZkwYKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjUyNjI2NzcyMTcKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoSCgx2b3VjaGVyX2xlbnMSAhAAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25262677217",
"debug_info": null
},
{
"item_basic": {
"itemid": 3440906108,
"shopid": 57328541,
"name": "GREE AC DELUXE LOW WATT - PUTIH 1PK - GWC-09C3E(S) (Unit Indoor & Outdoor)",
"label_ids": [
27,
48,
1000109,
1002164,
1013565,
1400095067,
1400285005,
1000579,
1000606,
1000679,
1001024,
22,
700020158,
1015914,
1400095065,
844931026694327,
844931046478970,
844931064601283,
825249635454464,
1400285055,
700190087,
298458334,
700300004,
1668726,
700585046,
298458395,
1718087960,
1428713,
1059152,
1049122,
822059908662278,
825465608497696,
837860934119952,
825465608499232,
1718093079,
1823711,
1988623,
1718162994,
2018618,
298893311,
2068629,
298938357,
298933384,
298463379,
2153644,
700830032,
2213652,
2008656,
298938368,
2098628,
1718088045,
2098629,
298468389
],
"image": "id-11134207-7r98r-lx205vqmipt663",
"images": [
"id-11134207-7r98r-lx205vqmipt663",
"id-11134201-7r98v-lllnj6ew3wpi89",
"id-11134201-7r98v-lllnj6k5w701cf",
"id-11134201-7r98u-lllnj6co75l3f3",
"id-11134207-7r98p-lxuz2m5e8m240e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1593851045,
"sold": 49,
"historical_sold": 971,
"liked": false,
"liked_count": 2865,
"view_count": null,
"catid": 100010,
"brand": "Gree",
"cmt_count": 385,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 466900000000,
"price_min": 466900000000,
"price_max": 466900000000,
"price_min_before_discount": 559900000000,
"price_max_before_discount": 559900000000,
"hidden_price_display": null,
"price_before_discount": 559900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-17%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.924242424242424,
"rating_count": [
396,
2,
0,
2,
18,
374
],
"rcount_with_context": 115,
"rcount_with_image": 98
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-7r98r-lx205vqmipt663",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": true,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp1,5JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227862468898817,
"price": 466900000000,
"strikethrough_price": 559900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-17%",
"model_id": 70184482482,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 559900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 971,
"rounded_local_monthly_sold_count": 49,
"local_monthly_sold_count_text": "49",
"rounded_display_sold_count": 971,
"display_sold_count_text": "971"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp1,6JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Gree Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 332689392,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWianhbk3bifBlwPNwlV4pHnZfVH+JLKXyAnCQtOX+Ox9GCmndG+2A2Vyu4a8+5w4owN3qYOD5gzB0xVTaj/ZlHvwevwXLBgIvNf2/puQWneSsFpeabWi2Gnr9jsfJCeLI44FE9Y8SJR6G5xoEpod91hcxwx1MvXNTYvEbVt04xper3Ltg9NDi9SjgQAXO0tc1Ix6euNK72wKwkR6YilLUHNfoO85BfRyP0XO6GJspzZQN4uZ9vcO066NM6c9DH7x7vbtY3NBHeyehTGS1K0zorrEN9kfVLssoD5wRacpgYtqoPDHnUs7mtkXIbc1OALB367LQo4OmwujHbd050Me6+wwHoE1/3vC4YASUM91gEn42S1XYmpQhnK2+lPBEavZn4M132aCJaWhWecWyMmRWrTqUsjsOdfvFm7tnHx3xHZPf9eiAIrN0yRe2w4UaG0nnD/wUzFa44nPLefG+nbiQVhCTezbdEu6tKjMBJYZevQQQA==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPDf0Z4BGNLirIYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYW5oYmszYmlmQmx3UE53bFY0cEhuWmZWSCtKTEtYeUFuQ1F0T1grT3g5R0NtbmRHKzJBMlZ5dTRhOCs1dzRvd04zcVlPRDVnekIweFZUYWovWmxIdndldndYTEJnSXZOZjIvcHVRV25lU3NGcGVhYldpMkducjlqc2ZKQ2VMSTQ0RkU5WThTSlI2RzV4b0Vwb2Q5MWhjeHd4MU12WE5UWXZFYlZ0MDR4cGVyM0x0ZzlORGk5U2pnUUFYTzB0YzFJeDZldU5LNzJ3S3drUjZZaWxMVUhOZm9PODVCZlJ5UDBYTzZHSnNwelpRTjR1Wjl2Y08wNjZOTTZjOURIN3g3dmJ0WTNOQkhleWVoVEdTMUswem9yckVOOWtmVkxzc29ENXdSYWNwZ1l0cW9QREhuVXM3bXRrWEliYzFPQUxCMzY3TFFvNE9td3VqSGJkMDUwTWU2K3d3SG9FMS8zdkM0WUFTVU05MWdFbjQyUzFYWW1wUWhuSzIrbFBCRWF2Wm40TTEzMmFDSmFXaFdlY1d5TW1SV3JUcVVzanNPZGZ2Rm03dG5IeDN4SFpQZjllaUFJck4weVJlMnc0VWFHMG5uRC93VXpGYTQ0blBMZWZHK25iaVFWaENUZXpiZEV1NnRLak1CSllaZXZRUVFBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABsv/XgsAJ6QEAAADglSXxP/EBAAAAgJ5F8T/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENw/UoXNFmHUGhDQAAAJBT+HZB+A2AgLCoqg2wDuKIiOoB4g4Mqo0Gx40G1Y4G8JAGyA8S4hncCkVuTXdMamt5TWpZNExDMHhMQzB4TEMweExDMHhMREF1T1RNeE9UazVPVGs1T1RrNU9UazVPQ3d4TERBdU1qZzJNemcwTWpFek16a3pORFUwTlN3d0xqa3NMVEVzTVM0d01EQXdNVEl6TERJM09DNDBNVFExTXpnMk56WTBOemM0TERBdU5UZzBORFl6TURjeU5qVXdNVEEyTEMweEhibEozVXNndUlxK0N5M0NOR3cvTlFBQWdEODU0NlVqMHN3UkNrSkJsQzhlT1ZIc1ZrSktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NLdnpsZ01SQUFBQUFBQUFBQUJLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBSU12d0J6OTVBQUFBUU5SMDlqNkJBUUFBQUtEZkhIWkJpUUVBQUFEQWtNbGNRWkVCQUFBQTBFTlBmVUdaQVFBQUFPQXQybjFCb1FFQUFBRGdkRzVqUWFrQkFBQUFLTFRJZzBIb0FRR0FBcFFEaWdJK01DNHdNRFE0TkRVc01TNHdNREF3TURBc01TNHdNREF3TURBc01TNHhOamt3TXpBc01TNHhOamt3TXpBc01TNHhOamt3TXpBc01TNHhPVFE1T0RPWkFtdm4rNm54MHUwL29RS3Q3elI0d2tuQlFjRUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUxBOVZZd0FHMVNRZUVDd0FmUmhqdnBRRUhwQXVibVhSaHJMYUJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUVBqcFNQU3pCRUtRcUVEbEM4ZU9WSHNWa0s1QTVwc2ZsbjM5K0kvd1FQYXN5OEN2UWpsUDhrRDltR1lYTmpLNXovUkF5TzZqbjA4YSswLytnTU5DZ2xQY21SbGNsUnBaWElRQS9vREVRb05TWFJsYlZCeWFXTmxWR2xsY2hBRCtnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFPQkJBQUFBSUMwWFFJL2lRUUFBQUFnNHp2K1BwQUVtd09ZQk5la3J0dVF0UUdnQko3VTBjczJxQVNBNEl1MFdiZ0U0b3U2NkNMQUJJRGdpN1JaeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFLQXAySE0vb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBQ0JadFBJL3VRVUFBQUFnV2JUeVA4RUZBQUFBSUZtMDhqL0pCUUFBQU1DbUh2TS/qGQS6TcBN+hmcBgoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAzMDExMAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8zNDQwOTA2MTA4ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH8+CgKCAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 3440906108,
"shopid": 57328541,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":24085817,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lx205vqmipt663\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1000579,1000606,1000679,1001024,22,700020158,1015914,1400095065,844931026694327,844931046478970,844931064601283,825249635454464,1400285055,700190087,298458334,700300004,1668726,700585046,298458395,1718087960,1428713,1059152,1049122,822059908662278,825465608497696,837860934119952,825465608499232,1718093079,1823711,1988623,1718162994,2018618,298893311,2068629,298938357,298933384,298463379,2153644,700830032,2213652,2008656,298938368,2098628,1718088045,2098629,298468389],\"merge_rank\":0,\"model_id\":70184482482,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":24085817,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lx205vqmipt663\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1000579,1000606,1000679,1001024,22,700020158,1015914,1400095065,844931026694327,844931046478970,844931064601283,825249635454464,1400285055,700190087,298458334,700300004,1668726,700585046,298458395,1718087960,1428713,1059152,1049122,822059908662278,825465608497696,837860934119952,825465608499232,1718093079,1823711,1988623,1718162994,2018618,298893311,2068629,298938357,298933384,298463379,2153644,700830032,2213652,2008656,298938368,2098628,1718088045,2098629,298468389],\"merge_rank\":0,\"model_id\":70184482482,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EPDf0Z4BGNLirIYBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYW5oYmszYmlmQmx3UE53bFY0cEhuWmZWSCtKTEtYeUFuQ1F0T1grT3g5R0NtbmRHKzJBMlZ5dTRhOCs1dzRvd04zcVlPRDVnekIweFZUYWovWmxIdndldndYTEJnSXZOZjIvcHVRV25lU3NGcGVhYldpMkducjlqc2ZKQ2VMSTQ0RkU5WThTSlI2RzV4b0Vwb2Q5MWhjeHd4MU12WE5UWXZFYlZ0MDR4cGVyM0x0ZzlORGk5U2pnUUFYTzB0YzFJeDZldU5LNzJ3S3drUjZZaWxMVUhOZm9PODVCZlJ5UDBYTzZHSnNwelpRTjR1Wjl2Y08wNjZOTTZjOURIN3g3dmJ0WTNOQkhleWVoVEdTMUswem9yckVOOWtmVkxzc29ENXdSYWNwZ1l0cW9QREhuVXM3bXRrWEliYzFPQUxCMzY3TFFvNE9td3VqSGJkMDUwTWU2K3d3SG9FMS8zdkM0WUFTVU05MWdFbjQyUzFYWW1wUWhuSzIrbFBCRWF2Wm40TTEzMmFDSmFXaFdlY1d5TW1SV3JUcVVzanNPZGZ2Rm03dG5IeDN4SFpQZjllaUFJck4weVJlMnc0VWFHMG5uRC93VXpGYTQ0blBMZWZHK25iaVFWaENUZXpiZEV1NnRLak1CSllaZXZRUVFBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABsv/XgsAJ6QEAAADglSXxP/EBAAAAgJ5F8T/IDA/gDAHpDAAAAKCZmak/iQ17FK5H4XqUP5ENw/UoXNFmHUGhDQAAAJBT+HZB+A2AgLCoqg2wDuKIiOoB4g4Mqo0Gx40G1Y4G8JAGyA8S4hncCkVuTXdMamt5TWpZNExDMHhMQzB4TEMweExDMHhMREF1T1RNeE9UazVPVGs1T1RrNU9UazVPQ3d4TERBdU1qZzJNemcwTWpFek16a3pORFUwTlN3d0xqa3NMVEVzTVM0d01EQXdNVEl6TERJM09DNDBNVFExTXpnMk56WTBOemM0TERBdU5UZzBORFl6TURjeU5qVXdNVEEyTEMweEhibEozVXNndUlxK0N5M0NOR3cvTlFBQWdEODU0NlVqMHN3UkNrSkJsQzhlT1ZIc1ZrSktEZ2lzODVZREVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NLdnpsZ01SQUFBQUFBQUFBQUJLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBSU12d0J6OTVBQUFBUU5SMDlqNkJBUUFBQUtEZkhIWkJpUUVBQUFEQWtNbGNRWkVCQUFBQTBFTlBmVUdaQVFBQUFPQXQybjFCb1FFQUFBRGdkRzVqUWFrQkFBQUFLTFRJZzBIb0FRR0FBcFFEaWdJK01DNHdNRFE0TkRVc01TNHdNREF3TURBc01TNHdNREF3TURBc01TNHhOamt3TXpBc01TNHhOamt3TXpBc01TNHhOamt3TXpBc01TNHhPVFE1T0RPWkFtdm4rNm54MHUwL29RS3Q3elI0d2tuQlFjRUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUxBOVZZd0FHMVNRZUVDd0FmUmhqdnBRRUhwQXVibVhSaHJMYUJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUVBqcFNQU3pCRUtRcUVEbEM4ZU9WSHNWa0s1QTVwc2ZsbjM5K0kvd1FQYXN5OEN2UWpsUDhrRDltR1lYTmpLNXovUkF5TzZqbjA4YSswLytnTU5DZ2xQY21SbGNsUnBaWElRQS9vREVRb05TWFJsYlZCeWFXTmxWR2xsY2hBRCtnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFPQkJBQUFBSUMwWFFJL2lRUUFBQUFnNHp2K1BwQUVtd09ZQk5la3J0dVF0UUdnQko3VTBjczJxQVNBNEl1MFdiZ0U0b3U2NkNMQUJJRGdpN1JaeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFLQXAySE0vb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBQ0JadFBJL3VRVUFBQUFnV2JUeVA4RUZBQUFBSUZtMDhqL0pCUUFBQU1DbUh2TS/qGQS6TcBN+hmcBgoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCikKEHJlY2FsbF9xdWV1ZV9pZHMSFSITNjExMDIwMzA0LDYxMTAzMDExMAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8zNDQwOTA2MTA4ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH8+CgKCAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_3440906108",
"debug_info": null
},
{
"item_basic": {
"itemid": 6942976519,
"shopid": 57328541,
"name": "GREE AC Freair Wall Mounted 1PK with Air Purifier - GWC-09Freair",
"label_ids": [
27,
48,
1000109,
1002164,
1013565,
1400095067,
1400285005,
1001024,
844931064601283,
844931026694327,
844931046478970,
825249635454464,
1400285055,
1015914,
700190087,
1668726,
298458395,
1718087960,
1428713,
1049122,
1059152,
822059908662278,
837860934119952,
825465608499232,
1718093079,
2018618,
298893311,
2068629,
298938357,
825465608497696,
298933384,
298463379,
2153644,
700830032,
2213652,
2098628,
2098629,
1718088045,
298938368,
298468389
],
"image": "id-11134207-7r98x-lr4bf4kgctq5d0",
"images": [
"id-11134207-7r98x-lr4bf4kgctq5d0",
"id-11134201-7r991-lllniw3n76mu12",
"id-11134201-7r98u-lllnj7bmtegh08",
"id-11134201-7r98t-lllnj6zf9v1226"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1595245613,
"sold": 0,
"historical_sold": 5,
"liked": false,
"liked_count": 219,
"view_count": null,
"catid": 100010,
"brand": "Gree",
"cmt_count": 3,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 1117900000000,
"price_min": 1117900000000,
"price_max": 1117900000000,
"price_min_before_discount": 1299900000000,
"price_max_before_discount": 1299900000000,
"hidden_price_display": null,
"price_before_discount": 1299900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-14%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 3.6666666666666665,
"rating_count": [
3,
1,
0,
0,
0,
2
],
"rcount_with_context": 2,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp3,7JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 817277306470400,
"price": 1117900000000,
"strikethrough_price": 1299900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-14%",
"model_id": 70349531058,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1299900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 5,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 5,
"display_sold_count_text": "5"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp3,7JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Gree Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 413008698,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYF4B9C43WLJSpWLs0Vvrbdn9bJwnQbbUXFAoT8I+G2O8/U/zcQAQhom6DPcsvoIzq3gfUCwjBzMbf/iQqfMETzR16urZlBGBdx7zpUmsAGTkse++ZVOK7jHIfXkQe/9kdB5oOztnpT22SIjNZW6ck/OIeckEbvcF263+gMRWPstjW6nHRyatZp5YPd8sMCqLPSpBJyG88HqambC2d8Sme5zIXxRjFxq4DFY7Bq8860Da9LSYAz1MwBzIedt8ByDEkMcKMII4nDGvPvMh35vJdvgK8f0qn/CKSzYWrDuE3KLF8rBpacSDI9VG7CBGXqGJqsV8ZFd9p/iOEZZyh9edYIHt15qkwGDSo7I1TEEU7VL4XzohpAeU60j4B7/k/qt0Z9gayFzqYgW/Gjcv+bzXQFLxO7tUcAq9HwjK1+GjYUGZk1pXClZ3C04+YmYk4OO9bP3ud/6UHZwC4YhPCHspgxUfiVclWi6Dk8rVdmWbJzQg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELqG+MQBGK7DgH8ymARkV3RrVkdGUlFVRkJRVUp6V2pKR1Q5RE4rajBSVlUzY2ZseFIxZGxNV2lZRjRCOUM0M1dMSlNwV0xzMFZ2cmJkbjliSnduUWJiVVhGQW9UOEkrRzJPOC9VL3pjUUFRaG9tNkRQY3N2b0l6cTNnZlVDd2pCek1iZi9pUXFmTUVUelIxNnVyWmxCR0JkeDd6cFVtc0FHVGtzZSsrWlZPSzdqSElmWGtRZS85a2RCNW9PenRucFQyMlNJak5aVzZjay9PSWVja0VidmNGMjYzK2dNUldQc3RqVzZuSFJ5YXRacDVZUGQ4c01DcUxQU3BCSnlHODhIcWFtYkMyZDhTbWU1eklYeFJqRnhxNERGWTdCcTg4NjBEYTlMU1lBejFNd0J6SWVkdDhCeURFa01jS01JSTRuREd2UHZNaDM1dkpkdmdLOGYwcW4vQ0tTellXckR1RTNLTEY4ckJwYWNTREk5Vkc3Q0JHWHFHSnFzVjhaRmQ5cC9pT0VaWnloOWVkWUlIdDE1cWt3R0RTbzdJMVRFRVU3Vkw0WHpvaHBBZVU2MGo0Qjcvay9xdDBaOWdheUZ6cVlnVy9HamN2K2J6WFFGTHhPN3RVY0FxOUh3aksxK0dqWVVHWmsxcFhDbFozQzA0K1ltWWs0T085YlAzdWQvNlVIWndDNFloUENIc3BneFVmaVZjbFdpNkRrOHJWZG1XYkp6UWc9PUgyUqQBYmZmLXNlYXJjaF9pZF9zZzEyXzEwLjE0OC4xNzkuOTdfe2IxMWJhM2FmNDg1NTdjYTFjNzk1MGFlZDcwYjcxYzAwOjAyMDAwMDI2N2M5YWU3OWQ6MDEwMDAxODgxNzE0OGZiYX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMzI0NzE4MDFxexSuR+F6lD+CAQlhYyB3aW5kb3eQAaW7ncsG4AGX87byiwrpAQAAAOCVJfE/8QEAAAAgd4nwP8gMD+AMAekMAAAAoJmZqT+JDXsUrkfhepQ/kQ3hehSuXz4FQaENAAAAwLqYYEH4DYCAoMDEILAO/9+huwTiDgyqjQbHjQbVjgbwkAbIDxPiGdQJRW1nd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNUzR3TkRRNE5EWXdNamcxTmpJeE9EZzJMQzB4TEMweExEQXVOVFkwT1Rrek5qazJORGs0T1RJM01pd3lNaTQxTkRZeE1UQXdNalV6TXprME55d3dMalU0TkRRMk16QTNNalkxTURFd05pd3RNUjI1U2QxTElOV0xrd1F0bXBtWlBqVUFBSUEvU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBYWZmb0J0SldRd0hCY1FBQUFHQUVHZ1kvZVFBQUFPQ1N0eHMvZ1FFQUFBRGcxSmlKUVlrQkFBQUFnQ2dTZ2tHUkFRQUFBTEIrMVpWQm1RRUFBQUJBS1VlUlFhRUJBQUFBUUZCbGlFR3BBUUFBQUdEUmVaMUI2QUVCZ0FLVUE0b0NQakF1TURBeU16VTNMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TkRBd01EazVtUUl6TXpNek16UFRQNkVDcmU4MGVNSkp3VUhCQXZmb0J0SldRd0hCeWdJTENBRVI5K2dHMGxaREFjSEtBZ3NJQWhFQUFBQUFBQUFBZ05rQ2dOVDg0enpWYTBIaEFnQ1oxQU9lT1cxQjZRTHZPVmJ2Nkl1bFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRGhBY1pXM0FwNWovQkE5RklRdjR2VStnL3lRT1pZQWhWQWZ2cVA5RUR5SG5iNFJTZDdqK0JCQUFBQUNBb1FnTS9pUVFBQUFEZ2VYTUFQNUFFbXdPWUJJekN6ZTd5dEFHZ0JQYWlrTndHcUFTQXFOYTVCN2dFaW9YR1hjQUVnS2pXdVFmSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFnS1pQWXoraEJRQUFBQUFBQVBBL3FRVUFBQUFBQUFEd1A3RUZBQUFBQUFBQTlEKzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUlNNW05ajg96hkCDBX6GZIGCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82OTQyOTc2NTE5ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoNCgdpc192c2t1EgIoAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDIwMzA0sB/PgoCAoICBiKgByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 6942976519,
"shopid": 57328541,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1630456,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lr4bf4kgctq5d0\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1001024,844931064601283,844931026694327,844931046478970,825249635454464,1400285055,1015914,700190087,1668726,298458395,1718087960,1428713,1049122,1059152,822059908662278,837860934119952,825465608499232,1718093079,2018618,298893311,2068629,298938357,825465608497696,298933384,298463379,2153644,700830032,2213652,2098628,2098629,1718088045,298938368,298468389],\"merge_rank\":0,\"model_id\":70349531058,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":1630456,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lr4bf4kgctq5d0\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1001024,844931064601283,844931026694327,844931046478970,825249635454464,1400285055,1015914,700190087,1668726,298458395,1718087960,1428713,1049122,1059152,822059908662278,837860934119952,825465608499232,1718093079,2018618,298893311,2068629,298938357,825465608497696,298933384,298463379,2153644,700830032,2213652,2098628,2098629,1718088045,298938368,298468389],\"merge_rank\":0,\"model_id\":70349531058,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELqG+MQBGK7DgH8ymARkV3RrVkdGUlFVRkJRVUp6V2pKR1Q5RE4rajBSVlUzY2ZseFIxZGxNV2lZRjRCOUM0M1dMSlNwV0xzMFZ2cmJkbjliSnduUWJiVVhGQW9UOEkrRzJPOC9VL3pjUUFRaG9tNkRQY3N2b0l6cTNnZlVDd2pCek1iZi9pUXFmTUVUelIxNnVyWmxCR0JkeDd6cFVtc0FHVGtzZSsrWlZPSzdqSElmWGtRZS85a2RCNW9PenRucFQyMlNJak5aVzZjay9PSWVja0VidmNGMjYzK2dNUldQc3RqVzZuSFJ5YXRacDVZUGQ4c01DcUxQU3BCSnlHODhIcWFtYkMyZDhTbWU1eklYeFJqRnhxNERGWTdCcTg4NjBEYTlMU1lBejFNd0J6SWVkdDhCeURFa01jS01JSTRuREd2UHZNaDM1dkpkdmdLOGYwcW4vQ0tTellXckR1RTNLTEY4ckJwYWNTREk5Vkc3Q0JHWHFHSnFzVjhaRmQ5cC9pT0VaWnloOWVkWUlIdDE1cWt3R0RTbzdJMVRFRVU3Vkw0WHpvaHBBZVU2MGo0Qjcvay9xdDBaOWdheUZ6cVlnVy9HamN2K2J6WFFGTHhPN3RVY0FxOUh3aksxK0dqWVVHWmsxcFhDbFozQzA0K1ltWWs0T085YlAzdWQvNlVIWndDNFloUENIc3BneFVmaVZjbFdpNkRrOHJWZG1XYkp6UWc9PUgyUqQBYmZmLXNlYXJjaF9pZF9zZzEyXzEwLjE0OC4xNzkuOTdfe2IxMWJhM2FmNDg1NTdjYTFjNzk1MGFlZDcwYjcxYzAwOjAyMDAwMDI2N2M5YWU3OWQ6MDEwMDAxODgxNzE0OGZiYX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMzI0NzE4MDFxexSuR+F6lD+CAQlhYyB3aW5kb3eQAaW7ncsG4AGX87byiwrpAQAAAOCVJfE/8QEAAAAgd4nwP8gMD+AMAekMAAAAoJmZqT+JDXsUrkfhepQ/kQ3hehSuXz4FQaENAAAAwLqYYEH4DYCAoMDEILAO/9+huwTiDgyqjQbHjQbVjgbwkAbIDxPiGdQJRW1nd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNUzR3TkRRNE5EWXdNamcxTmpJeE9EZzJMQzB4TEMweExEQXVOVFkwT1Rrek5qazJORGs0T1RJM01pd3lNaTQxTkRZeE1UQXdNalV6TXprME55d3dMalU0TkRRMk16QTNNalkxTURFd05pd3RNUjI1U2QxTElOV0xrd1F0bXBtWlBqVUFBSUEvU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBYWZmb0J0SldRd0hCY1FBQUFHQUVHZ1kvZVFBQUFPQ1N0eHMvZ1FFQUFBRGcxSmlKUVlrQkFBQUFnQ2dTZ2tHUkFRQUFBTEIrMVpWQm1RRUFBQUJBS1VlUlFhRUJBQUFBUUZCbGlFR3BBUUFBQUdEUmVaMUI2QUVCZ0FLVUE0b0NQakF1TURBeU16VTNMREV1TURBd01EQXdMREV1TURBd01EQXdMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TkRBd01EazVtUUl6TXpNek16UFRQNkVDcmU4MGVNSkp3VUhCQXZmb0J0SldRd0hCeWdJTENBRVI5K2dHMGxaREFjSEtBZ3NJQWhFQUFBQUFBQUFBZ05rQ2dOVDg0enpWYTBIaEFnQ1oxQU9lT1cxQjZRTHZPVmJ2Nkl1bFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRGhBY1pXM0FwNWovQkE5RklRdjR2VStnL3lRT1pZQWhWQWZ2cVA5RUR5SG5iNFJTZDdqK0JCQUFBQUNBb1FnTS9pUVFBQUFEZ2VYTUFQNUFFbXdPWUJJekN6ZTd5dEFHZ0JQYWlrTndHcUFTQXFOYTVCN2dFaW9YR1hjQUVnS2pXdVFmSkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFnS1pQWXoraEJRQUFBQUFBQVBBL3FRVUFBQUFBQUFEd1A3RUZBQUFBQUFBQTlEKzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUlNNW05ajg96hkCDBX6GZIGCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82OTQyOTc2NTE5ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoNCgdpc192c2t1EgIoAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzCh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDIwMzA0sB/PgoCAoICBiKgByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_6942976519",
"debug_info": null
},
{
"item_basic": {
"itemid": 42914890231,
"shopid": 1294678510,
"name": "AC Gree GWC-09N1A - 1 PK - N1A Series - Non Inverter - R32",
"label_ids": [
2018619,
844931064601283,
844931086908638,
298463379,
700005490,
1049120,
822059908662278,
825465608497696,
1718093079,
825465608494624,
825465608499232,
822120592853526,
834403089593352,
2068629,
298938357,
2023641,
1718088045,
2098629,
298468389,
298938368,
2098628
],
"image": "id-11134207-7ra0s-mdskthvb2owe87",
"images": [
"id-11134207-7ra0s-mdskthvb2owe87",
"id-11134207-7ra0t-mdskthvb5i1a8e",
"id-11134207-7ra0s-mdskthvayh72c6",
"id-11134207-7ra0h-mdskthvazvri5e",
"id-11134207-7ra0s-mdskthvb1abyb1",
"id-11134207-7ra0u-mdskthvb43gu0a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756020098,
"sold": 5,
"historical_sold": 16,
"liked": false,
"liked_count": 10,
"view_count": null,
"catid": 100010,
"brand": "Gree",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 413900000000,
"price_min": 413900000000,
"price_max": 413900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Package",
"options": [
"Unit Only",
"+Packing Kayu",
"+Paket 3M",
"+Paket 5M",
"+Paket 3M (Tebal)",
"+Paket 5M (Tebal)"
],
"images": [
"id-11134207-8224w-miwqt74xthqb9c",
"id-11134207-8224w-miwqt74xuwar15",
"id-11134207-8224w-miwqt74xwav768",
"id-11134207-82252-miwqt74xxpfn2b",
"id-11134207-8224t-miwqt74xz403cc",
"id-11134207-8224u-miwqt74xs35vaa"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp1,3JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 413900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 291232665995,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 413900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 16,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 16,
"display_sold_count_text": "16"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp1,4JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Wulitonย Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 537861169,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibLQ55Pxvt5m3XJZngce+6w+fi9yb4y/r18HfgL/BVG5rfJgpocNkxHUj1i/10bBMPmC48M5b+kmxDMg5AMhaM+WGqGPaLjPo7ECSQWMn/nZLuGoZXLDljK3BazjuPySv9cT9WCeyHCjF+dFON8aWeayiD6dCUWmpl8DovTK4u+s1Y7tH5NujMfQJSZOhQf5mTPwFeuxqNnhkAJmoc4KDemWyz6l44XDCYE1RM8CNP31XuwKVw1lTpHSi4BpShlNRcn2My+P6xDJvN/w4zRqc45RJSqBJwNBx3hZvn5e3UY4gSQljtlWlNv7ug5rZD7J9ygA+8COlES4pMOBNC7xm28ez/5QJzDC59R6Chk+Dwjs6Ygm7C7daJ+sRqog4PodemMlNHZ3We0PiSgS7K4nWZ/icV/9DhOoF7wCxvefBMtYhelBOhE6EIMb4tADr27AAqGrKs+c0htEBJeoRxxq0bOHhWRwPe7sgjwPKen3c/kug==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELG4vIACGI6H4scBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkxRNTVQeHZ0NW0zWEpabmdjZSs2dytmaTl5YjR5L3IxOEhmZ0wvQlZHNXJmSmdwb2NOa3hIVWoxaS8xMGJCTVBtQzQ4TTViK2tteERNZzVBTWhhTStXR3FHUGFMalBvN0VDU1FXTW4vblpMdUdvWlhMRGxqSzNCYXpqdVB5U3Y5Y1Q5V0NleUhDakYrZEZPTjhhV2VheWlENmRDVVdtcGw4RG92VEs0dStzMVk3dEg1TnVqTWZRSlNaT2hRZjVtVFB3RmV1eHFObmhrQUptb2M0S0RlbVd5ejZsNDRYRENZRTFSTThDTlAzMVh1d0tWdzFsVHBIU2k0QnBTaGxOUmNuMk15K1A2eERKdk4vdzR6UnFjNDVSSlNxQkp3TkJ4M2hadm41ZTNVWTRnU1FsanRsV2xOdjd1ZzVyWkQ3Sjl5Z0ErOENPbEVTNHBNT0JOQzd4bTI4ZXovNVFKekRDNTlSNkNoaytEd2pzNllnbTdDN2RhSitzUnFvZzRQb2RlbU1sTkhaM1dlMFBpU2dTN0s0bldaL2ljVi85RGhPb0Y3d0N4dmVmQk10WWhlbEJPaEU2RUlNYjR0QURyMjdBQXFHcktzK2MwaHRFQkplb1J4eHEwYk9IaFdSd1BlN3NnandQS2VuM2Mva3VnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB9ar800XpAQAAAOCVJfE/8QEAAAAgo8oIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgepRwJQaENAAAAAGGeY0H4DYCAoODsC7AOz5ODzwHiDgyqjQbHjQbVjgbwkAbIDxTiGcQKRW1Nd0xqTTVOaXd0TVN3dE1Td3RNU3d0TVN3d0xqUXNNU3d3TGpjNE1URTBOVFl3TkRJMk56WTNNVFFzTUM0NUxDMHhMREV1TURBd01ERXlNeXd6T0M0NU9UUTRPVGcxT1RNMU5EZ3lPQ3d3TGpVNE1UVTFOVEk1TlRjek5UazJOeklzTFRFZDRpL2NTeUNINXZNRUxZUEF5ajQxQUFDQVB6bmh1c2dwOUwra1FVSHhzWkNBREFWQ1Frb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRW9RQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQURnZDFJRlAza0FBQUJnVGdzS1A0RUJBQUFBUUxoOGNVR0pBUUFBQUdDU2IwTkJrUUVBQUFDTXF1cHpRWmtCQUFBQVlKS2JkMEdoQVFBQUFLQUZQVXBCcVFFQUFBQVVNK042UWVnQkFZQUNsQU9LQWo0d0xqQXdORGN3TWl3eExqQXdNREF3TUN3eExqQXdOalkyTkN3eExqSXpPREF5Tml3eExqTXdNREF3TUN3eExqTTRNakV5T1N3eExqVXdNREF3TUprQ21wbVptWm1aMlQraEFxM3ZOSGpDU2NGQndRSUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJBQUFBQUFBQUFJRFpBb0NTbjhLRG8xaEI0UUtnMWlJWmVnb3hRZWtDMzVEZGF6OGxxa0dLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBd1V0RGhBaDJLWkJvUVBJaGVOOENsMUFRcmtEMi84R0UxVzE0RC9CQTB5ZGJvSlNPZU0veVFNNjZVSktSUDdtUDlFRG9MSXM5WWNvN1QvNkF3c0tCMUp2YVZScFpYSVFBL29ERFFvSlQzSmtaWEpVYVdWeUVBTDZBeEVLRFVsMFpXMVFjbWxqWlZScFpYSVFBL29EQ1FvRlNYTk9VRUlRQUlFRUFBQUFnTnhkL3o2SkJBQUFBTUE1RlBjK2tBU2JBNWdFdUxtZnE5OEJvQVNKK2RNZnFBU0F5clh1QWJnRTk5RGh6Z0hBQklES3RlNEJ5UVI3Rks1SDRYcVVQK0VFZXhTdVIrRjZsRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUlDZVFuTS9vUVVBQUFBQUFBRHdQNmtGQUFBQW9Fc2I4RCt4QlFBQUFPRHp6dk0vdVFVQUFBREF6TXowUDhFRkFBQUE0RElkOWovSkJRQUFBQUFBQVBnL+oZBLdNw036GZMGChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQyOTE0ODkwMjMxChQKDnVzZXJfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNLAfwIKAgKCAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 42914890231,
"shopid": 1294678510,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":10285832,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mdskthvb2owe87\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608497696,1718093079,825465608494624,825465608499232,822120592853526,834403089593352,2068629,298938357,2023641,1718088045,2098629,298468389,298938368,2098628],\"merge_rank\":0,\"model_id\":291232665995,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":10285832,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mdskthvb2owe87\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608497696,1718093079,825465608494624,825465608499232,822120592853526,834403089593352,2068629,298938357,2023641,1718088045,2098629,298468389,298938368,2098628],\"merge_rank\":0,\"model_id\":291232665995,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELG4vIACGI6H4scBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkxRNTVQeHZ0NW0zWEpabmdjZSs2dytmaTl5YjR5L3IxOEhmZ0wvQlZHNXJmSmdwb2NOa3hIVWoxaS8xMGJCTVBtQzQ4TTViK2tteERNZzVBTWhhTStXR3FHUGFMalBvN0VDU1FXTW4vblpMdUdvWlhMRGxqSzNCYXpqdVB5U3Y5Y1Q5V0NleUhDakYrZEZPTjhhV2VheWlENmRDVVdtcGw4RG92VEs0dStzMVk3dEg1TnVqTWZRSlNaT2hRZjVtVFB3RmV1eHFObmhrQUptb2M0S0RlbVd5ejZsNDRYRENZRTFSTThDTlAzMVh1d0tWdzFsVHBIU2k0QnBTaGxOUmNuMk15K1A2eERKdk4vdzR6UnFjNDVSSlNxQkp3TkJ4M2hadm41ZTNVWTRnU1FsanRsV2xOdjd1ZzVyWkQ3Sjl5Z0ErOENPbEVTNHBNT0JOQzd4bTI4ZXovNVFKekRDNTlSNkNoaytEd2pzNllnbTdDN2RhSitzUnFvZzRQb2RlbU1sTkhaM1dlMFBpU2dTN0s0bldaL2ljVi85RGhPb0Y3d0N4dmVmQk10WWhlbEJPaEU2RUlNYjR0QURyMjdBQXFHcktzK2MwaHRFQkplb1J4eHEwYk9IaFdSd1BlN3NnandQS2VuM2Mva3VnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB9ar800XpAQAAAOCVJfE/8QEAAAAgo8oIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgepRwJQaENAAAAAGGeY0H4DYCAoODsC7AOz5ODzwHiDgyqjQbHjQbVjgbwkAbIDxTiGcQKRW1Nd0xqTTVOaXd0TVN3dE1Td3RNU3d0TVN3d0xqUXNNU3d3TGpjNE1URTBOVFl3TkRJMk56WTNNVFFzTUM0NUxDMHhMREV1TURBd01ERXlNeXd6T0M0NU9UUTRPVGcxT1RNMU5EZ3lPQ3d3TGpVNE1UVTFOVEk1TlRjek5UazJOeklzTFRFZDRpL2NTeUNINXZNRUxZUEF5ajQxQUFDQVB6bmh1c2dwOUwra1FVSHhzWkNBREFWQ1Frb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRW9RQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRW9PQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQURnZDFJRlAza0FBQUJnVGdzS1A0RUJBQUFBUUxoOGNVR0pBUUFBQUdDU2IwTkJrUUVBQUFDTXF1cHpRWmtCQUFBQVlKS2JkMEdoQVFBQUFLQUZQVXBCcVFFQUFBQVVNK042UWVnQkFZQUNsQU9LQWo0d0xqQXdORGN3TWl3eExqQXdNREF3TUN3eExqQXdOalkyTkN3eExqSXpPREF5Tml3eExqTXdNREF3TUN3eExqTTRNakV5T1N3eExqVXdNREF3TUprQ21wbVptWm1aMlQraEFxM3ZOSGpDU2NGQndRSUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJBQUFBQUFBQUFJRFpBb0NTbjhLRG8xaEI0UUtnMWlJWmVnb3hRZWtDMzVEZGF6OGxxa0dLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBd1V0RGhBaDJLWkJvUVBJaGVOOENsMUFRcmtEMi84R0UxVzE0RC9CQTB5ZGJvSlNPZU0veVFNNjZVSktSUDdtUDlFRG9MSXM5WWNvN1QvNkF3c0tCMUp2YVZScFpYSVFBL29ERFFvSlQzSmtaWEpVYVdWeUVBTDZBeEVLRFVsMFpXMVFjbWxqWlZScFpYSVFBL29EQ1FvRlNYTk9VRUlRQUlFRUFBQUFnTnhkL3o2SkJBQUFBTUE1RlBjK2tBU2JBNWdFdUxtZnE5OEJvQVNKK2RNZnFBU0F5clh1QWJnRTk5RGh6Z0hBQklES3RlNEJ5UVI3Rks1SDRYcVVQK0VFZXhTdVIrRjZsRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUlDZVFuTS9vUVVBQUFBQUFBRHdQNmtGQUFBQW9Fc2I4RCt4QlFBQUFPRHp6dk0vdVFVQUFBREF6TXowUDhFRkFBQUE0RElkOWovSkJRQUFBQUFBQVBnL+oZBLdNw036GZMGChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoNCgdpc192c2t1EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQyOTE0ODkwMjMxChQKDnVzZXJfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNLAfwIKAgKCAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42914890231",
"debug_info": null
},
{
"item_basic": {
"itemid": 4045084145,
"shopid": 211468201,
"name": "PANASONIC CS-ZN5YKP + PASANG AC SPLIT 1/2 PK STANDARD",
"label_ids": [
1002164,
1400095067,
1400285005,
1000961,
844931046478970,
844931026694327,
844931064601283,
1400285055,
700190087,
1015914,
1059152,
1059154,
822059908662278,
700300004,
822120592853526,
700585046,
2018618,
1012763,
298893311,
2153644,
700830032,
2213652,
298463379,
2008656,
298468389
],
"image": "id-11134207-8224u-mhzw9in6la0xfe",
"images": [
"id-11134207-8224u-mhzw9in6la0xfe",
"id-11134207-7r98o-ll0m57u1vkg022",
"sg-11134201-22110-yg8yyybpzpjv07",
"sg-11134201-22110-sf7v3zbpzpjv96",
"sg-11134201-22110-t7dzszbpzpjva9",
"sg-11134201-22110-ant38zdpzpjve7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1596598292,
"sold": 0,
"historical_sold": 164,
"liked": false,
"liked_count": 647,
"view_count": null,
"catid": 100010,
"brand": "Panasonic",
"cmt_count": 74,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 373300000000,
"price_min": 373300000000,
"price_max": 373300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "e0aea65dd0442887f9a24c3685d33e71",
"thumb_url": "47a3d9c6b0d249b00946e769c9e61caf",
"duration": 60,
"version": 2,
"vid": "id-11110105-6ke1e-ln0zew3fqws6dc",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1e-ln0zew3fqws6dc.16003251747824692.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-ln0zew3fqws6dc.16003251747824692.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-ln0zew3fqws6dc.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Paket",
"options": [
"PASANG 0.5mm",
"PASANG 0.6mm",
"PASANG 0.76mm"
],
"images": [
"id-11134207-7r98o-ll0ma479jtrz2c",
"id-11134207-7r98o-ll0ma479l8cf7d",
"id-11134207-7r98o-ll0ma479mmwvfe"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.92,
"rating_count": [
75,
0,
0,
2,
2,
71
],
"rcount_with_context": 36,
"rcount_with_image": 33
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 373300000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 235311215328,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 373300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 164,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 164,
"display_sold_count_text": "164"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SELKA.id Official Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 410415572,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWia23OFz3MxX+HxwM5Umlo53TADBs+TgSbv0jWl/nNPvBRpNzh5ssJMwuHKzDZ3ZznWzGaXjLMrU+wLv8hU5IGQrnk1Fl2Z7GWAR2iKaczgWNVIiIpXEYgCOGmLEebNVNxtKvgukd3Pxq73WLNYye5FKLgULR4OgGQ2Ekzl5230aMKC+L9wT+w6uZF3wxJUFikpzrnzt+O+qLkUILG7X7cgO8qIBANbodjjLSA/orpKH1AzoBccUJFij9nRWVO4H4+CT5dYQ7Noc7WD5XmDF8rfCmzfFd2PZZrkM5YD2+vplZJXAjil4OP6+nDjheHUWIXvJC/QRW4HqGvwS2W0x0Euf4ne3wERIVpV9yI/M7arP4NTns095qAPNcl/lR61323WEtNptWqZUEjDB42xyEjErDmEdGhilzxrBSR5bXuq3lrK+tMfqcAXiwlwxCxGzpP/mutFqaE/GNfznLpuUZCAUICiUWFDtLnHjtTGs88tHRg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENTj2cMBGIHeg5gBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTIzT0Z6M014WCtIeHdNNVVtbG81M1RBREJzK1RnU2J2MGpXbC9uTlB2QlJwTnpoNXNzSk13dUhLekRaM1p6bld6R2FYakxNclUrd0x2OGhVNUlHUXJuazFGbDJaN0dXQVIyaUthY3pnV05WSWlJcFhFWWdDT0dtTEVlYk5WTnh0S3ZndWtkM1B4cTczV0xOWXllNUZLTGdVTFI0T2dHUTJFa3psNTIzMGFNS0MrTDl3VCt3NnVaRjN3eEpVRmlrcHpybnp0K08rcUxrVUlMRzdYN2NnTzhxSUJBTmJvZGpqTFNBL29ycEtIMUF6b0JjY1VKRmlqOW5SV1ZPNEg0K0NUNWRZUTdOb2M3V0Q1WG1ERjhyZkNtemZGZDJQWlpya001WUQyK3ZwbFpKWEFqaWw0T1A2K25EamhlSFVXSVh2SkMvUVJXNEhxR3Z3UzJXMHgwRXVmNG5lM3dFUklWcFY5eUkvTTdhclA0TlRuczA5NXFBUE5jbC9sUjYxMzIzV0V0TnB0V3FaVUVqREI0Mnh5RWpFckRtRWRHaGlsenhyQlNSNWJYdXEzbHJLK3RNZnFjQVhpd2x3eEN4R3pwUC9tdXRGcWFFL0dOZnpuTHB1VVpDQVVJQ2lVV0ZEdExuSGp0VEdzODh0SFJnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB0O6GgfYK6QEAAADglSXxP/EBAAAA4FAc8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENMzMzMweSEkGhDQAAAEArBG1B+A2AgJr0xwqwDrKtrJoB4g4Mqo0Gx40G1Y4G8JAGyA8V4hnoCkVuUXdMamN3TURJd05Td3RNU3d0TVN3dE1Td3RNU3d3TGpjd05Dd3hMRE11TXpNM01EVXpNamt5TWpVM09ESXlOQ3d3TGprc0xURXNNQzQ1T1RZM01qQTJOVE16TnprM01qazRMREF1TURjMk5ESTFOemcxT1RJMU9EVXlOVFlzTUM0ME9EWTBORFEwT1RJNU5qZzFOamd5TXl3dE1SMHJMYmhMSU5uQ29BY3RvMEF6UHpVQUFJQS9PZWE4a0MwRXE5QkJRUVZrbHhncXUwTkNTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhY1BqOVJKZGJ4SEJjUUFBQUtBckxnUS9lUUFBQU1EV0Z3by9nUUVBQUFBZ1B1MXRRWWtCQUFBQUlFOE1jMEdSQVFBQUFCaDNBWUZCbVFFQUFBREFWak4wUWFFQkFBQUFJSlROZUVHcEFRQUFBSEIxZ0laQjZBRUJnQUtVQTRvQ1BqQXVNREF5TXprekxERXVNREF3TURBd0xERXVNREF3TURBd0xERXVNalV3TURBd0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RSzZTUXdDSzRmbVA2RUNyZTgwZU1KSndVSEJBc1BqOVJKZGJ4SEJ5Z0lMQ0FFUm8xallwZ2swbk1ES0Fnc0lBaEhENC9VU1hXOFJ3ZGtDb0xpb1B3RGdTa0hoQW9EaEQxQS9IbGxCNlFMRzJaeWg4N1NoUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQNWtENXJ5UUxRU3IwRUdoQXdWa2x4Z3F1ME5DdVFOR0EwWjB3NHZpUDhFRDZic2tJYXcwNVQvSkEvbmU2WWtuRStrLzBRUDBHQ216R0tMdFAvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQUQrZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBUDZBdzBLQ1U5eVpHVnlWR2xsY2hBQ2dRUUFBQUNBN0ZFQVA0a0VBQUFBQUtSeitUNlFCSnNEbUFUNHhzem01QVNnQk4rWXBOd0RxQVNBbE92Y0E3Z0VvZnRHd0FTQWxPdmNBOGtFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEQWM1bGpQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQUFBQUQwUDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS4TcJN+hmSBgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIQoPdnNrdV91bmlxdWVfa2V5Eg4iDDBfNDA0NTA4NDE0NQoNCgdpc192c2t1EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAbAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 4045084145,
"shopid": 211468201,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":930127,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhzw9in6la0xfe\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,844931046478970,844931026694327,844931064601283,1400285055,700190087,1015914,1059152,1059154,822059908662278,700300004,822120592853526,700585046,2018618,1012763,298893311,2153644,700830032,2213652,298463379,2008656,298468389],\"merge_rank\":0,\"model_id\":235311215328,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":930127,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhzw9in6la0xfe\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,844931046478970,844931026694327,844931064601283,1400285055,700190087,1015914,1059152,1059154,822059908662278,700300004,822120592853526,700585046,2018618,1012763,298893311,2153644,700830032,2213652,298463379,2008656,298468389],\"merge_rank\":0,\"model_id\":235311215328,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ENTj2cMBGIHeg5gBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYTIzT0Z6M014WCtIeHdNNVVtbG81M1RBREJzK1RnU2J2MGpXbC9uTlB2QlJwTnpoNXNzSk13dUhLekRaM1p6bld6R2FYakxNclUrd0x2OGhVNUlHUXJuazFGbDJaN0dXQVIyaUthY3pnV05WSWlJcFhFWWdDT0dtTEVlYk5WTnh0S3ZndWtkM1B4cTczV0xOWXllNUZLTGdVTFI0T2dHUTJFa3psNTIzMGFNS0MrTDl3VCt3NnVaRjN3eEpVRmlrcHpybnp0K08rcUxrVUlMRzdYN2NnTzhxSUJBTmJvZGpqTFNBL29ycEtIMUF6b0JjY1VKRmlqOW5SV1ZPNEg0K0NUNWRZUTdOb2M3V0Q1WG1ERjhyZkNtemZGZDJQWlpya001WUQyK3ZwbFpKWEFqaWw0T1A2K25EamhlSFVXSVh2SkMvUVJXNEhxR3Z3UzJXMHgwRXVmNG5lM3dFUklWcFY5eUkvTTdhclA0TlRuczA5NXFBUE5jbC9sUjYxMzIzV0V0TnB0V3FaVUVqREI0Mnh5RWpFckRtRWRHaGlsenhyQlNSNWJYdXEzbHJLK3RNZnFjQVhpd2x3eEN4R3pwUC9tdXRGcWFFL0dOZnpuTHB1VVpDQVVJQ2lVV0ZEdExuSGp0VEdzODh0SFJnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB0O6GgfYK6QEAAADglSXxP/EBAAAA4FAc8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENMzMzMweSEkGhDQAAAEArBG1B+A2AgJr0xwqwDrKtrJoB4g4Mqo0Gx40G1Y4G8JAGyA8V4hnoCkVuUXdMamN3TURJd05Td3RNU3d0TVN3dE1Td3RNU3d3TGpjd05Dd3hMRE11TXpNM01EVXpNamt5TWpVM09ESXlOQ3d3TGprc0xURXNNQzQ1T1RZM01qQTJOVE16TnprM01qazRMREF1TURjMk5ESTFOemcxT1RJMU9EVXlOVFlzTUM0ME9EWTBORFEwT1RJNU5qZzFOamd5TXl3dE1SMHJMYmhMSU5uQ29BY3RvMEF6UHpVQUFJQS9PZWE4a0MwRXE5QkJRUVZrbHhncXUwTkNTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhY1BqOVJKZGJ4SEJjUUFBQUtBckxnUS9lUUFBQU1EV0Z3by9nUUVBQUFBZ1B1MXRRWWtCQUFBQUlFOE1jMEdSQVFBQUFCaDNBWUZCbVFFQUFBREFWak4wUWFFQkFBQUFJSlROZUVHcEFRQUFBSEIxZ0laQjZBRUJnQUtVQTRvQ1BqQXVNREF5TXprekxERXVNREF3TURBd0xERXVNREF3TURBd0xERXVNalV3TURBd0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RSzZTUXdDSzRmbVA2RUNyZTgwZU1KSndVSEJBc1BqOVJKZGJ4SEJ5Z0lMQ0FFUm8xallwZ2swbk1ES0Fnc0lBaEhENC9VU1hXOFJ3ZGtDb0xpb1B3RGdTa0hoQW9EaEQxQS9IbGxCNlFMRzJaeWg4N1NoUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQNWtENXJ5UUxRU3IwRUdoQXdWa2x4Z3F1ME5DdVFOR0EwWjB3NHZpUDhFRDZic2tJYXcwNVQvSkEvbmU2WWtuRStrLzBRUDBHQ216R0tMdFAvb0RFUW9OU1hSbGJWQnlhV05sVkdsbGNoQUQrZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBUDZBdzBLQ1U5eVpHVnlWR2xsY2hBQ2dRUUFBQUNBN0ZFQVA0a0VBQUFBQUtSeitUNlFCSnNEbUFUNHhzem01QVNnQk4rWXBOd0RxQVNBbE92Y0E3Z0VvZnRHd0FTQWxPdmNBOGtFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEQWM1bGpQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQUFBQUQwUDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS4TcJN+hmSBgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIQoPdnNrdV91bmlxdWVfa2V5Eg4iDDBfNDA0NTA4NDE0NQoNCgdpc192c2t1EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDEwMTA0ChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAbAfz4KAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_4045084145",
"debug_info": null
},
{
"item_basic": {
"itemid": 40566553098,
"shopid": 1294678510,
"name": "AC Daikin FTC15YV14 - 1/2 PK | 0.5 PK - SMS Series - Non Inverter - R32",
"label_ids": [
844931064601283,
844931086908638,
298463379,
2018619,
700005490,
1049120,
1718093079,
822059908662278,
825465608497696,
825465608494624,
825465608499232,
822120592853526,
1015914,
700190087,
834403089593352,
2068629,
298938357,
2023641,
2098629,
298938368,
2098628,
1718088045,
298468389
],
"image": "id-11134207-81ztl-me322gxb4u0w0c",
"images": [
"id-11134207-81ztl-me322gxb4u0w0c",
"id-11134207-7ra0h-mdpqu6vncdp416",
"id-11134207-7ra0m-mdpqu6vnds9k03",
"id-11134207-7ra0h-mdpqu6vngleg40"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756652628,
"sold": 1,
"historical_sold": 11,
"liked": false,
"liked_count": 19,
"view_count": null,
"catid": 100010,
"brand": "Daikin",
"cmt_count": 5,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 406900000000,
"price_min": 406900000000,
"price_max": 406900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Package",
"options": [
"Unit Only",
"+Packing Kayu",
"+Paket 3M",
"+Paket 5M",
"+Paket 3M (Tebal)",
"+Paket 5M (Tebal)"
],
"images": [
"id-11134207-8224w-miwqt74xthqb9c",
"id-11134207-8224w-miwqt74xuwar15",
"id-11134207-8224w-miwqt74xwav768",
"id-11134207-82252-miwqt74xxpfn2b",
"id-11134207-8224t-miwqt74xz403cc",
"id-11134207-8224u-miwqt74xs35vaa"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 2,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp1,3JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 406900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 281364522232,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 406900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 11,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 11,
"display_sold_count_text": "11"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp1,4JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Wulitonย Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 537861170,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiY/9Il/XoZbI+53wSL5rVV8klUnvegRtpyQRK8lj26Kvf0ZsJdwESCQAx2FoEvj0zLKIbKg3pNiqLe0ivEazpvW/DdKf+ktnP8sLCjkqNJE67xYmGLAyqbybFSm82wzi8UrHF10wI80OiveaFMDBNSLJdunoSDfJtyDCEptimaHRtfCPqVNWUSWfSH20majBAwWx/J+7u837BiBQ8mfloBEUrcNmTHMVJabc9IMn1Pz1r2pGkIkrCmLIYHdysybPPVyaJ8sQasdgjvDV25HiPf4C6MwiW2d3ikYbtrGOwyNEKLMl/wpRzQnfpQzRsdTU2vyDx4zwyMn/5Xx/XWXGLiNSVzPul33ETt37/eAzOv0zSzYIy4dQx8XOH30LQ7S+QYAoA74zifp0r3ahKdxzK7Q5Vym2CdUufb/rqUN7TSKyeadQuQ/iqVfEsvv1HIXzws2L0NeyW5KLImRTe1eO14ADA885Ydg4nlYEktGfSf/VQ==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELK4vIACGI+H4scBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFEQTg4NVlkZzRubFlFa3RHZlNmL1ZRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABhpu5/kfpAQAAAOCVJfE/8QEAAABA16wIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgeUSMFQaENAAAAYJeDYEH4DYCA3ODXDbAOn/OM7wHiDgyqjQbHjQbVjgbwkAbIDxbiGYgKRW1Bd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNeTR4TkRjMU5qQTNOVFkyTkRjMU1ESXpMQzB4TEMweExERXVNREF3TURFeU15d3pPQzR6TmpnME5EazFNVFl5TlRRMU55d3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5QzZ1WkFFTFpxWm1UNDFBQUNBUDBvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NQRDM0UVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENQRDM0UVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFIRUFBQUFBa0lnSFAza0FBQUNBNlBYN1BvRUJBQUFBb0l4S2RrR0pBUUFBQUtDbGZqVkJrUUVBQUFENmRxSjNRWmtCQUFBQWdOY1hma0doQVFBQUFPQ1NCRDFCcVFFQUFBQ3VJT2gvUWVnQkFZQUNsQU9LQWo0d0xqQXdNelEzTkN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSTFNREF3TUN3eExqSTRNamMzTUN3eExqTTFNVGN4TUN3eExqVXdNREF3TUprQ016TXpNek16MHoraEFxM3ZOSGpDU2NGQndRSUFBQUFBQUFBQWdNb0NDd2dDRVFBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBRFpBc0JCeC94bTNsdEI0UUpBMStMYWllOGZRZWtDdlRjTzR0M1Zwa0dLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBMC8yM1pNanp1QS93UU00Yzl4bzdhM2pQOGtEcGhqS2VZK2s1ei9SQTZraS82ZHFDdTQvZ1FRQUFBQ0EyYVFCUDRrRUFBQUE0SEk1K1Q2UUJKc0RtQVM0dVorcjN3R2dCSVBvZ1ZDb0JJREt0ZTRCdUFUOTRiT2VBY0FFZ01xMTdnSEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBb090MWJEK2hCUUFBQUFBQUFQQS9xUVVBQUFBQUFBRHdQN0VGQUFBQUFBQUE5RCs1QlFBQUFBQTZodlEvd1FVQUFBQkFtcUQxUDhrRkFBQUFBQUFBK0Q4PeoZAgsW8hkCzQj6GZMGChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoSCgx2b3VjaGVyX2xlbnMSAhAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQwNTY2NTUzMDk4Cg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfwIKAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 40566553098,
"shopid": 1294678510,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-me322gxb4u0w0c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,844931086908638,298463379,2018619,700005490,1049120,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,822120592853526,1015914,700190087,834403089593352,2068629,298938357,2023641,2098629,298938368,2098628,1718088045,298468389],\"merge_rank\":0,\"model_id\":281364522232,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":8658107,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-me322gxb4u0w0c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,844931086908638,298463379,2018619,700005490,1049120,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,822120592853526,1015914,700190087,834403089593352,2068629,298938357,2023641,2098629,298938368,2098628,1718088045,298468389],\"merge_rank\":0,\"model_id\":281364522232,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELK4vIACGI+H4scBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWS85SWwvWG9aYkkrNTN3U0w1clZWOGtsVW52ZWdSdHB5UVJLOGxqMjZLdmYwWnNKZHdFU0NRQXgyRm9FdmowekxLSWJLZzNwTmlxTGUwaXZFYXpwdlcvRGRLZitrdG5QOHNMQ2prcU5KRTY3eFltR0xBeXFieWJGU204Mnd6aThVckhGMTB3STgwT2l2ZWFGTURCTlNMSmR1bm9TRGZKdHlEQ0VwdGltYUhSdGZDUHFWTldVU1dmU0gyMG1hakJBd1d4L0orN3U4MzdCaUJROG1mbG9CRVVyY05tVEhNVkphYmM5SU1uMVB6MXIycEdrSWtyQ21MSVlIZHlzeWJQUFZ5YUo4c1Fhc2RnanZEVjI1SGlQZjRDNk13aVcyZDNpa1lidHJHT3d5TkVLTE1sL3dwUnpRbmZwUXpSc2RUVTJ2eUR4NHp3eU1uLzVYeC9YV1hHTGlOU1Z6UHVsMzNFVHQzNy9lQXpPdjB6U3pZSXk0ZFF4OFhPSDMwTFE3UytRWUFvQTc0emlmcDByM2FoS2R4eks3UTVWeW0yQ2RVdWZiL3JxVU43VFNLeWVhZFF1US9pcVZmRXN2djFISVh6d3MyTDBOZXlXNUtMSW1SVGUxZU8xNEFEQTg4NVlkZzRubFlFa3RHZlNmL1ZRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABhpu5/kfpAQAAAOCVJfE/8QEAAABA16wIQMgMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ3sUbgeUSMFQaENAAAAYJeDYEH4DYCA3ODXDbAOn/OM7wHiDgyqjQbHjQbVjgbwkAbIDxbiGYgKRW1Bd0xqTXNMVEVzTFRFc0xURXNMVEVzTUM0ekxERXNNeTR4TkRjMU5qQTNOVFkyTkRjMU1ESXpMQzB4TEMweExERXVNREF3TURFeU15d3pPQzR6TmpnME5EazFNVFl5TlRRMU55d3dMalU0TVRVMU5USTVOVGN6TlRrMk56SXNMVEVkNGkvY1N5QzZ1WkFFTFpxWm1UNDFBQUNBUDBvUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUVvT0NQRDM0UVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENQRDM0UVFRQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFIRUFBQUFBa0lnSFAza0FBQUNBNlBYN1BvRUJBQUFBb0l4S2RrR0pBUUFBQUtDbGZqVkJrUUVBQUFENmRxSjNRWmtCQUFBQWdOY1hma0doQVFBQUFPQ1NCRDFCcVFFQUFBQ3VJT2gvUWVnQkFZQUNsQU9LQWo0d0xqQXdNelEzTkN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSTFNREF3TUN3eExqSTRNamMzTUN3eExqTTFNVGN4TUN3eExqVXdNREF3TUprQ016TXpNek16MHoraEFxM3ZOSGpDU2NGQndRSUFBQUFBQUFBQWdNb0NDd2dDRVFBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBRFpBc0JCeC94bTNsdEI0UUpBMStMYWllOGZRZWtDdlRjTzR0M1Zwa0dLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEKzVBMC8yM1pNanp1QS93UU00Yzl4bzdhM2pQOGtEcGhqS2VZK2s1ei9SQTZraS82ZHFDdTQvZ1FRQUFBQ0EyYVFCUDRrRUFBQUE0SEk1K1Q2UUJKc0RtQVM0dVorcjN3R2dCSVBvZ1ZDb0JJREt0ZTRCdUFUOTRiT2VBY0FFZ01xMTdnSEpCSHNVcmtmaGVwUS80UVI3Rks1SDRYcVVQK2tFQUFBQUFBQUE4RC94QkFBQUFBQUFBUEEvK1FRQUFBQUFBQUR3UDRFRkFBQUFBQUFBOEQrSkJRQUFBQUFBQVBBL2tRVUFBQUFBQUFEd1A1a0ZBQUFBb090MWJEK2hCUUFBQUFBQUFQQS9xUVVBQUFBQUFBRHdQN0VGQUFBQUFBQUE5RCs1QlFBQUFBQTZodlEvd1FVQUFBQkFtcUQxUDhrRkFBQUFBQUFBK0Q4PeoZAgsW8hkCzQj6GZMGChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9ChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoSCgx2b3VjaGVyX2xlbnMSAhAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQwNTY2NTUzMDk4Cg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfwIKAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40566553098",
"debug_info": null
},
{
"item_basic": {
"itemid": 23776253311,
"shopid": 727701368,
"name": "GREE AC 1/2 PK DELUXE STANDARD - GWC-05N1A - 1/2 PK 05N1A Standard Series with Fitur smart cleaner",
"label_ids": [
1002164,
844931064601283,
700300004,
1015914,
700190087,
1400025081,
1400285055,
298458395,
1918643,
2018618,
1012763,
1718087960,
1428713,
1012729,
298933384,
1059152,
1049122,
822059908662278,
825465608499232,
825465608497696,
1718093079,
298463379,
2153644,
700830032,
844931086908638,
2213652,
2068629,
298938357,
2008656,
2098629,
1718088045,
2098628,
298938368,
298468389
],
"image": "id-11134207-8224o-mgneve3ie8eh7d",
"images": [
"id-11134207-8224o-mgneve3ie8eh7d",
"id-11134201-7qul5-lk4zkmzl8ffmfe",
"id-11134201-7qul0-lk4zkn2x3k2v15",
"id-11134201-7quky-lk4zkn6903dn3d",
"id-11134201-7qul4-lk4zknhwhmyn65",
"id-11134201-7qukx-lk4zknqi51vzee",
"id-11134201-7qula-lk4zkntk0kwoce"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1691564079,
"sold": 1,
"historical_sold": 60,
"liked": false,
"liked_count": 217,
"view_count": null,
"catid": 100010,
"brand": "Gree",
"cmt_count": 18,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 361900000000,
"price_min": 361900000000,
"price_max": 361900000000,
"price_min_before_discount": 699900000000,
"price_max_before_discount": 699900000000,
"hidden_price_display": null,
"price_before_discount": 699900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-48%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "2d291f7470603490a710b26e0183c173",
"thumb_url": "3ce1d575159e373b4861d229b0c94085",
"duration": 60,
"version": 2,
"vid": "id-11110105-6jt79-lkhsx0jipnzt13",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6jt79-lkhsx0jipnzt13.16000081754217744.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt79-lkhsx0jipnzt13.16000081754217744.mp4",
"width": 720,
"height": 720
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6jt79-lkhsx0jipnzt13.16003251712532888.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt79-lkhsx0jipnzt13.16003251712532888.mp4",
"width": 720,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt79-lkhsx0jipnzt13.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Tipe",
"options": [
"GWC-05N1",
"GWC-05N1A"
],
"images": [
"id-11134207-8224x-mgneve3ifmyx6d",
"id-11134207-8224x-mgneve3ih1jd59"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.894736842105263,
"rating_count": [
19,
0,
0,
0,
2,
17
],
"rcount_with_context": 4,
"rcount_with_image": 6
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-7rbk2-m67unkgtx2u009",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp1,2JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 225743330361345,
"price": 360900000000,
"strikethrough_price": 699900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1326486502916096,
"discount_text": "-48%",
"model_id": 266052325538,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1326486502916096,
"voucher_code": "EURENEW1",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1767589200,
"end_time": 1774976340,
"valid_duration": null
},
"groups": [],
"min_spend": 0
},
"recommended_platform_voucher_info": null,
"original_price": 699900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 60,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 60,
"display_sold_count_text": "60"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp1,2JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Eroc Electronic Indonesia",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 541210543,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibGUw0TdyScKTYQyEH1T+keZARjcWiJ6CnuN0Ggi/G+Jc058YBW+rWWv4HLXRXVaqZjSJJFuuTC3bYrYTWjwW01Ic1wK5mFh65+TbertZ8gBNHqrVZ+JKdSFUUgntZ6DNKpmw04yaSfUZMI0jCzRudrEV+W1FEM/B+nOjpGbRsGraD38FzPBeFH2U4/51DItJILISURKLf85Qa4rvagy0T+HlRPuw7/L9tt+fWXjU60u89o/Sf2dOnCaNEByzvD3TRcdbynVolQo2mpTa4vdl/7BYsIPaivmtOqEjMFWEQuCT6JIstAvTfPG+21ZyUulWo3AcjC7KAEatiDiVbhG9Enm/e/gNcuuq4HhvITGx8G4bFfGmCIbfho3INLK5+TeKga8Fd2tec3wTlZVHBX4S5l05TzxMM9U5AOWJnr9IsuiGphUCNGd2mNqoYzRPDmJ0bwSfleLYt3ZawFbVMXicr3bIt1kuqVlDqnhPWLahhd3Q==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EK/viIICGLjvxcgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkdVdzBUZHlTY0tUWVF5RUgxVCtrZVpBUmpjV2lKNkNudU4wR2dpL0crSmMwNThZQlcrcldXdjRITFhSWFZhcVpqU0pKRnV1VEMzYllyWVRXandXMDFJYzF3SzVtRmg2NStUYmVydFo4Z0JOSHFyVlorSktkU0ZVVWdudFo2RE5LcG13MDR5YVNmVVpNSTBqQ3pSdWRyRVYrVzFGRU0vQituT2pwR2JSc0dyYUQzOEZ6UEJlRkgyVTQvNTFESXRKSUxJU1VSS0xmODVRYTRydmFneTBUK0hsUlB1dzcvTDl0dCtmV1hqVTYwdTg5by9TZjJkT25DYU5FQnl6dkQzVFJjZGJ5blZvbFFvMm1wVGE0dmRsLzdCWXNJUGFpdm10T3FFak1GV0VRdUNUNkpJc3RBdlRmUEcrMjFaeVV1bFdvM0FjakM3S0FFYXRpRGlWYmhHOUVubS9lL2dOY3V1cTRIaHZJVEd4OEc0YkZmR21DSWJmaG8zSU5MSzUrVGVLZ2E4RmQydGVjM3dUbFpWSEJYNFM1bDA1VHp4TU05VTVBT1dKbnI5SXN1aUdwaFVDTkdkMm1OcW9ZelJQRG1KMGJ3U2ZsZUxZdDNaYXdGYlZNWGljcjNiSXQxa3VxVmxEcW5oUFdMYWhoZDNRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABj5GS/a8E6QEAAADglSXxP/EBAAAAIBhD8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENCtejcF00G0GhDQAAAADpQHVB+A2AgLCHlQqwDrLhyrEB4g4Mqo0Gx40G1Y4G8JAGyA8X4hm4CkVub3dMamMzTWpJc0xURXNMVEVzTFRFc0xURXNNQzQzTnprNU9UazVPVGs1T1RrNU9UazVMREVzTUM0NE1qRXhOVFF6TVRReE1UTTBOekVzTFRFc0xURXNNQzQ1T0RRMU1EZzFNalV4TXpFNU56UTRMRE00TGpBMk9EWTFNek0zT1RJM05UWTFMREF1TlRneE5UVTFNamsxTnpNMU9UWTNNaXd0TVIzaUw5eExJSStkMEFvdDVxNUZQelVBQUlBL1NnNEk4UGZoQkJFQUFBQUFBQUFBQUVvT0NLcnpsZ01SQUFBQUFBQUFBQUJLRGdpczg1WURFUUFBQUFBQUFBQUFTZzRJblByaEJCRUFBQUFBQUFBQUFFb09DS3Z6bGdNUkFBQUFBQUFBQUFCS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCU0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCU0Rnanc5K0VFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVdna0lnSUNBZ0lBRUVBQmFCd2p3OStFRUVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhYlpyNzJOaldzbkFjUUFBQUNERmNoQS9lUUFBQUdDM3J3SS9nUUVBQUFEZ3BTUjNRWWtCQUFBQVFLNVRWMEdSQVFBQUFIQ1IrWHhCbVFFQUFBQmdSajUvUWFFQkFBQUE0TVI5WDBHcEFRQUFBTXpiam9OQjZBRUJnQUtVQTRvQ1BqQXVNREF6T1RNMUxERXVNREF3TURBd0xERXVNREEzTURVMkxERXVNak14TkRneExERXVNekF3TURBd0xERXVNek0xTURjMExERXVOVEF3TURBd21RTDFLRnlQd3ZYb1A2RUNyZTgwZU1KSndVSEJBclpyNzJOaldzbkF5Z0lMQ0FJUkFBQUFBQUFBQUlES0Fnc0lBUkcyYSs5alkxckp3TmtDd0NVd3UrYndYRUhoQWdDcWRCUERORUZCNlFKclpUQy8xOGltUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQN2tETDdMcUhIWVI1RC9CQTFBWDl5cURDdVkveVFQVEErUngwbVRvUDlFRHJFMG9pUHU0N1QrQkJBQUFBR0FIVVFvL2lRUUFBQUJnVDAwR1A1QUVtd09ZQlB1UXNiUDZVNkFFMFl1TjNRV29CSUR5aTZnSnVBU3Y1djdLQThBRWdQS0xxQW5KQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlOa2RjRCtoQlFBQUFBQUFBUEEvcVFVQUFBQ0E1aHp3UDdFRkFBQUFZQ1cwOHorNUJRQUFBTURNelBRL3dRVUFBQUJBZGx6MVA4a0ZBQUFBQUFBQStEOD3qGQIMFvoZkwYKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yMzc3NjI1MzMxMQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDIwMzA0ChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgoCAiICBqKAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 23776253311,
"shopid": 727701368,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":21636930,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mgneve3ie8eh7d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,844931064601283,700300004,1015914,700190087,1400025081,1400285055,298458395,1918643,2018618,1012763,1718087960,1428713,1012729,298933384,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,298463379,2153644,700830032,844931086908638,2213652,2068629,298938357,2008656,2098629,1718088045,2098628,298938368,298468389],\"merge_rank\":0,\"model_id\":266052325538,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":21636930,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mgneve3ie8eh7d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,844931064601283,700300004,1015914,700190087,1400025081,1400285055,298458395,1918643,2018618,1012763,1718087960,1428713,1012729,298933384,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,298463379,2153644,700830032,844931086908638,2213652,2068629,298938357,2008656,2098629,1718088045,2098628,298938368,298468389],\"merge_rank\":0,\"model_id\":266052325538,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EK/viIICGLjvxcgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYkdVdzBUZHlTY0tUWVF5RUgxVCtrZVpBUmpjV2lKNkNudU4wR2dpL0crSmMwNThZQlcrcldXdjRITFhSWFZhcVpqU0pKRnV1VEMzYllyWVRXandXMDFJYzF3SzVtRmg2NStUYmVydFo4Z0JOSHFyVlorSktkU0ZVVWdudFo2RE5LcG13MDR5YVNmVVpNSTBqQ3pSdWRyRVYrVzFGRU0vQituT2pwR2JSc0dyYUQzOEZ6UEJlRkgyVTQvNTFESXRKSUxJU1VSS0xmODVRYTRydmFneTBUK0hsUlB1dzcvTDl0dCtmV1hqVTYwdTg5by9TZjJkT25DYU5FQnl6dkQzVFJjZGJ5blZvbFFvMm1wVGE0dmRsLzdCWXNJUGFpdm10T3FFak1GV0VRdUNUNkpJc3RBdlRmUEcrMjFaeVV1bFdvM0FjakM3S0FFYXRpRGlWYmhHOUVubS9lL2dOY3V1cTRIaHZJVEd4OEc0YkZmR21DSWJmaG8zSU5MSzUrVGVLZ2E4RmQydGVjM3dUbFpWSEJYNFM1bDA1VHp4TU05VTVBT1dKbnI5SXN1aUdwaFVDTkdkMm1OcW9ZelJQRG1KMGJ3U2ZsZUxZdDNaYXdGYlZNWGljcjNiSXQxa3VxVmxEcW5oUFdMYWhoZDNRPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABj5GS/a8E6QEAAADglSXxP/EBAAAAIBhD8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENCtejcF00G0GhDQAAAADpQHVB+A2AgLCHlQqwDrLhyrEB4g4Mqo0Gx40G1Y4G8JAGyA8X4hm4CkVub3dMamMzTWpJc0xURXNMVEVzTFRFc0xURXNNQzQzTnprNU9UazVPVGs1T1RrNU9UazVMREVzTUM0NE1qRXhOVFF6TVRReE1UTTBOekVzTFRFc0xURXNNQzQ1T0RRMU1EZzFNalV4TXpFNU56UTRMRE00TGpBMk9EWTFNek0zT1RJM05UWTFMREF1TlRneE5UVTFNamsxTnpNMU9UWTNNaXd0TVIzaUw5eExJSStkMEFvdDVxNUZQelVBQUlBL1NnNEk4UGZoQkJFQUFBQUFBQUFBQUVvT0NLcnpsZ01SQUFBQUFBQUFBQUJLRGdpczg1WURFUUFBQUFBQUFBQUFTZzRJblByaEJCRUFBQUFBQUFBQUFFb09DS3Z6bGdNUkFBQUFBQUFBQUFCS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCU0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCU0Rnanc5K0VFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVdna0lnSUNBZ0lBRUVBQmFCd2p3OStFRUVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhYlpyNzJOaldzbkFjUUFBQUNERmNoQS9lUUFBQUdDM3J3SS9nUUVBQUFEZ3BTUjNRWWtCQUFBQVFLNVRWMEdSQVFBQUFIQ1IrWHhCbVFFQUFBQmdSajUvUWFFQkFBQUE0TVI5WDBHcEFRQUFBTXpiam9OQjZBRUJnQUtVQTRvQ1BqQXVNREF6T1RNMUxERXVNREF3TURBd0xERXVNREEzTURVMkxERXVNak14TkRneExERXVNekF3TURBd0xERXVNek0xTURjMExERXVOVEF3TURBd21RTDFLRnlQd3ZYb1A2RUNyZTgwZU1KSndVSEJBclpyNzJOaldzbkF5Z0lMQ0FJUkFBQUFBQUFBQUlES0Fnc0lBUkcyYSs5alkxckp3TmtDd0NVd3UrYndYRUhoQWdDcWRCUERORUZCNlFKclpUQy8xOGltUVlvRE1BQUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQN2tETDdMcUhIWVI1RC9CQTFBWDl5cURDdVkveVFQVEErUngwbVRvUDlFRHJFMG9pUHU0N1QrQkJBQUFBR0FIVVFvL2lRUUFBQUJnVDAwR1A1QUVtd09ZQlB1UXNiUDZVNkFFMFl1TjNRV29CSUR5aTZnSnVBU3Y1djdLQThBRWdQS0xxQW5KQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlOa2RjRCtoQlFBQUFBQUFBUEEvcVFVQUFBQ0E1aHp3UDdFRkFBQUFZQ1cwOHorNUJRQUFBTURNelBRL3dRVUFBQUJBZGx6MVA4a0ZBQUFBQUFBQStEOD3qGQIMFvoZkwYKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yMzc3NjI1MzMxMQoNCgdpc192c2t1EgIoAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCvwBChNlbmdpbmVlcmluZ19tZXRyaWNzEuQBIuEBeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQwLCJhcGkyX2xhdGVuY3lfbXMiOjgzLCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MjcsImFwaTBfYWRzX2NvdW50IjoyNzksImFwaTFfYWRzX2NvdW50IjoxNTQ1LCJhcGkyX2Fkc19jb3VudCI6MzE3LCJhcGkzX2Fkc19jb3VudCI6MzB9CioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACh8KEHJlY2FsbF9xdWV1ZV9pZHMSCyIJNjExMDIwMzA0ChIKDHZvdWNoZXJfbGVucxICEAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAsB+AgoCAiICBqKAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_23776253311",
"debug_info": null
},
{
"item_basic": {
"itemid": 6044878443,
"shopid": 211468201,
"name": "MIDEA MSAFE-05CRN2X + PASANG AC SPLIT 1/2 PK STANDARD",
"label_ids": [
1002164,
1400095067,
1400285005,
1000961,
22,
844931026694327,
844931046478970,
844931064601283,
1015914,
700190087,
1400285055,
1059152,
1059154,
822059908662278,
700300004,
822120592853526,
700585046,
2018618,
1012763,
298933384,
2153644,
700830032,
2213652,
1400066568,
825465608497696,
298463379,
1718093079,
2008656,
298468389,
1718088045
],
"image": "id-11134207-8224s-mhu7q4tya8li64",
"images": [
"id-11134207-8224s-mhu7q4tya8li64",
"id-11134207-7r98o-ll1swxuqu0zj5d",
"id-11134207-7r98o-lxauz505nl973a",
"id-11134207-7r98p-lxauz505oztn0c",
"id-11134207-7r98w-lxauz505qee36e",
"id-11134207-7r98o-lxauz505rsyj38"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1596506019,
"sold": 1,
"historical_sold": 183,
"liked": false,
"liked_count": 1194,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 97,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 313100000000,
"price_min": 313100000000,
"price_max": 313100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Paket",
"options": [
"PASANG 0.5mm",
"PASANG 0.6mm",
"PASANG 0.76mm"
],
"images": [
"id-11134207-7r98o-ll1t014hrnhw45",
"id-11134207-7r98o-ll1t014hugmsbe",
"id-11134207-7r98o-ll1t014hvv7837"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.895833333333333,
"rating_count": [
97,
0,
3,
0,
4,
90
],
"rcount_with_context": 45,
"rcount_with_image": 39
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "48072f7e2893e5bb38330cc2007c274d",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 313100000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 235249534679,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 313100000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 183,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 183,
"display_sold_count_text": "183"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SELKA.id Official Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 410416423,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiYZHeQVrPTLGZTWxc3LN8fJmw8JMMFInvYl6Yd744KxU7YrthVhDvxKc3hPU8svUfS+HNMyytSFXkfbvH31RMDkyPLW63wT4GaBtI2ZFFEQUMzA5YKPNN5Zl8t7ORAOkQ54189pA/YX6Lp0L7kIjHbnI4nq0YQ6xtwdGX4pvogyHmb7a4k2F83wum7lbswTSfkMtgBnABrYqJe7Wa/5n5UdvcZJV3RIkmJBwXSTsouwg58/hPoIcBIr6sCI+X7CR100Nm6WMY7c9/84jnvUJhJRZD7KF20TXpEtqPOcX9vm4rGB6sBE/gNXn25+ZHMa7HLtt0Vktl7Q3ldoK6Dmer6J+LHOvbjt7d35tqVCqnJOHT7ya8uzRaz8YYUnwY6zJ8V6WjZrc+8LUXKoLpVj13Hq+N6A2MV3U72mU92j1UHBJ9FvObcOJ6fgmQtufeJWGWo3tVEYE/+gbd1SHOkN/JmO+TDaMm8EbF5hE0w5NteAGg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKfq2cMBGIrzgpgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWVpIZVFWclBUTEdaVFd4YzNMTjhmSm13OEpNTUZJbnZZbDZZZDc0NEt4VTdZcnRoVmhEdnhLYzNoUFU4c3ZVZlMrSE5NeXl0U0ZYa2ZidkgzMVJNRGt5UExXNjN3VDRHYUJ0STJaRkZFUVVNekE1WUtQTk41Wmw4dDdPUkFPa1E1NDE4OXBBL1lYNkxwMEw3a0lqSGJuSTRucTBZUTZ4dHdkR1g0cHZvZ3lIbWI3YTRrMkY4M3d1bTdsYnN3VFNma010Z0JuQUJyWXFKZTdXYS81bjVVZHZjWkpWM1JJa21KQndYU1Rzb3V3ZzU4L2hQb0ljQklyNnNDSStYN0NSMTAwTm02V01ZN2M5Lzg0am52VUpoSlJaRDdLRjIwVFhwRXRxUE9jWDl2bTRyR0I2c0JFL2dOWG4yNStaSE1hN0hMdHQwVmt0bDdRM2xkb0s2RG1lcjZKK0xIT3ZianQ3ZDM1dHFWQ3FuSk9IVDd5YTh1elJhejhZWVVud1k2eko4VjZXalpyYys4TFVYS29McFZqMTNIcStONkEyTVYzVTcybVU5MmoxVUhCSjlGdk9iY09KNmZnbVF0dWZlSldHV28zdFZFWUUvK2diZDFTSE9rTi9KbU8rVERhTW04RWJGNWhFMHc1TnRlQUdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB5/W0qYgL6QEAAADglSXxP/EBAAAAYHrf8D/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENuB6F61GuAUGhDQAAAABgoFtB+A2AgJLRwwmwDqKsn4sB4g4Mqo0Gx40G1Y4G8JAGyA8Y4hmICkVtQXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0eU16WTFNREExTXpjeE9USTNPVGNzTFRFc0xURXNNUzR3TURBd01USXpMREkyTGpVMU9URTBPVE13T1RRM01UQTNMREF1TkRnMk5EUTBORGt5T1RZNE5UWTRNak1zTFRFZEt5MjRTeUQvZ3JvRExacVptVDQxQUFDQVAwb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEk4UGZoQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3J6bGdNUUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJOFBmaEJCQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBSEVBQUFDZ0VxTUlQM2tBQUFBQWVJd09QNEVCQUFBQVFHay9jRUdKQVFBQUFLQnZSM1pCa1FFQUFBQndiRU9EUVprQkFBQUFnRFR2ZFVHaEFRQUFBSUJibEh4QnFRRUFBQUFBeUVHSlFlZ0JBWUFDbEFPS0FqNHdMakF3TXpNeU1pd3hMakF3TURBd01Dd3hMakF3TURBd01Dd3hMakkxTURBd01Dd3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSURaQWdBMUJFRUFpVTVCNFFKQWhOd0ZwOUJjUWVrQ0Y1NXEvMk1Vb2tHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QTh0aHZOQ0hZK0kvd1FNY0VFMHRWdWZrUDhrRFlrVnhKVnErNkQvUkEyQnJjSk1VZCswL2dRUUFBQUFnSk13RFA0a0VBQUFBd01Mby9qNlFCSnNEbUFUNHc5UzM1UVNnQlBQbjJaSUJxQVNBeXJYdUFiZ0VqZUxiVzhBRWdNcTE3Z0hKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQW9MQTNheitoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUFBQUFBOUQrNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQILFPIZAs0I+hmSBgoSCgx2b3VjaGVyX2xlbnMSAhAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82MDQ0ODc4NDQzCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAALAfz4KAgKiAgaggyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 6044878443,
"shopid": 211468201,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":7242112,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhu7q4tya8li64\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,22,844931026694327,844931046478970,844931064601283,1015914,700190087,1400285055,1059152,1059154,822059908662278,700300004,822120592853526,700585046,2018618,1012763,298933384,2153644,700830032,2213652,1400066568,825465608497696,298463379,1718093079,2008656,298468389,1718088045],\"merge_rank\":0,\"model_id\":235249534679,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":7242112,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhu7q4tya8li64\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1400095067,1400285005,1000961,22,844931026694327,844931046478970,844931064601283,1015914,700190087,1400285055,1059152,1059154,822059908662278,700300004,822120592853526,700585046,2018618,1012763,298933384,2153644,700830032,2213652,1400066568,825465608497696,298463379,1718093079,2008656,298468389,1718088045],\"merge_rank\":0,\"model_id\":235249534679,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKfq2cMBGIrzgpgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWVpIZVFWclBUTEdaVFd4YzNMTjhmSm13OEpNTUZJbnZZbDZZZDc0NEt4VTdZcnRoVmhEdnhLYzNoUFU4c3ZVZlMrSE5NeXl0U0ZYa2ZidkgzMVJNRGt5UExXNjN3VDRHYUJ0STJaRkZFUVVNekE1WUtQTk41Wmw4dDdPUkFPa1E1NDE4OXBBL1lYNkxwMEw3a0lqSGJuSTRucTBZUTZ4dHdkR1g0cHZvZ3lIbWI3YTRrMkY4M3d1bTdsYnN3VFNma010Z0JuQUJyWXFKZTdXYS81bjVVZHZjWkpWM1JJa21KQndYU1Rzb3V3ZzU4L2hQb0ljQklyNnNDSStYN0NSMTAwTm02V01ZN2M5Lzg0am52VUpoSlJaRDdLRjIwVFhwRXRxUE9jWDl2bTRyR0I2c0JFL2dOWG4yNStaSE1hN0hMdHQwVmt0bDdRM2xkb0s2RG1lcjZKK0xIT3ZianQ3ZDM1dHFWQ3FuSk9IVDd5YTh1elJhejhZWVVud1k2eko4VjZXalpyYys4TFVYS29McFZqMTNIcStONkEyTVYzVTcybVU5MmoxVUhCSjlGdk9iY09KNmZnbVF0dWZlSldHV28zdFZFWUUvK2diZDFTSE9rTi9KbU8rVERhTW04RWJGNWhFMHc1TnRlQUdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB5/W0qYgL6QEAAADglSXxP/EBAAAAYHrf8D/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENuB6F61GuAUGhDQAAAABgoFtB+A2AgJLRwwmwDqKsn4sB4g4Mqo0Gx40G1Y4G8JAGyA8Y4hmICkVtQXdMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0eU16WTFNREExTXpjeE9USTNPVGNzTFRFc0xURXNNUzR3TURBd01USXpMREkyTGpVMU9URTBPVE13T1RRM01UQTNMREF1TkRnMk5EUTBORGt5T1RZNE5UWTRNak1zTFRFZEt5MjRTeUQvZ3JvRExacVptVDQxQUFDQVAwb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEk4UGZoQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3J6bGdNUUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJOFBmaEJCQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBSEVBQUFDZ0VxTUlQM2tBQUFBQWVJd09QNEVCQUFBQVFHay9jRUdKQVFBQUFLQnZSM1pCa1FFQUFBQndiRU9EUVprQkFBQUFnRFR2ZFVHaEFRQUFBSUJibEh4QnFRRUFBQUFBeUVHSlFlZ0JBWUFDbEFPS0FqNHdMakF3TXpNeU1pd3hMakF3TURBd01Dd3hMakF3TURBd01Dd3hMakkxTURBd01Dd3hMak13TURBd01Dd3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSURaQWdBMUJFRUFpVTVCNFFKQWhOd0ZwOUJjUWVrQ0Y1NXEvMk1Vb2tHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QTh0aHZOQ0hZK0kvd1FNY0VFMHRWdWZrUDhrRFlrVnhKVnErNkQvUkEyQnJjSk1VZCswL2dRUUFBQUFnSk13RFA0a0VBQUFBd01Mby9qNlFCSnNEbUFUNHc5UzM1UVNnQlBQbjJaSUJxQVNBeXJYdUFiZ0VqZUxiVzhBRWdNcTE3Z0hKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQW9MQTNheitoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUFBQUFBOUQrNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQILFPIZAs0I+hmSBgoSCgx2b3VjaGVyX2xlbnMSAhAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF82MDQ0ODc4NDQzCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAALAfz4KAgKiAgaggyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_6044878443",
"debug_info": null
},
{
"item_basic": {
"itemid": 21960705220,
"shopid": 894671202,
"name": "Terima Pasang AC DENPOO Split 1/2 PK & 1 PK BEST SELLER - DDS 05/09 CTL SNI",
"label_ids": [
844931064601283,
822059908662278,
1049112,
1049127,
1400285055,
1015914,
700190087,
822120592853526,
825465608499232,
1000031,
2018619,
1428713,
1718087960,
834403089593352,
298893311,
825465608497696,
1213641,
1718093079,
700830032,
298463379,
298933384,
700810080,
2068629,
298938357,
298468390,
298938368,
1718093084,
1718088044,
298468389,
298458396,
2098629,
2098628,
1718088045,
298458398
],
"image": "id-11134207-81zth-mfct5dutzu3236",
"images": [
"id-11134207-81zth-mfct5dutzu3236",
"id-11134207-81ztg-mfct5duvh7nv5f",
"id-11134207-7r991-lz7bgm4klr2d5e",
"sg-11134201-22110-54r2lcixrljvc1",
"sg-11134201-22110-94r2lcixrljvd6",
"id-11134207-7r98v-llfad9wery302c",
"id-11134207-7r990-lqf6lqlbqcu7f9",
"sg-11134201-22110-12w2ot1xrljv4c",
"id-11134207-7r98o-lni5l225wlli6b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1667814473,
"sold": 21,
"historical_sold": 798,
"liked": false,
"liked_count": 922,
"view_count": null,
"catid": 100010,
"brand": "Denpoo",
"cmt_count": 318,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 225900000000,
"price_min": 225900000000,
"price_max": 225900000000,
"price_min_before_discount": 255000000000,
"price_max_before_discount": 255000000000,
"hidden_price_display": null,
"price_before_discount": 255000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-11%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ke18-lqf83dljwdad71.16000081705087507.mp4",
"thumb_url": "id-11110107-7r98y-lqf83hlk1zege5",
"duration": 52,
"version": 2,
"vid": "id-11110107-6ke18-lqf83dljwdad71",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke18-lqf83dljwdad71.default.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke18-lqf83dljwdad71.default.mp4",
"width": 540,
"height": 540
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke18-lqf83dljwdad71.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "TYPE",
"options": [
"1 PK DDS 09 CTL",
"1/2PK-DDS 05 CTL"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "OPSI",
"options": [
"PAKET PASANG",
"UNIT ONLY",
"+ BRACKET SET"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.865443425076452,
"rating_count": [
327,
4,
0,
2,
24,
297
],
"rcount_with_context": 100,
"rcount_with_image": 76
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-81zth-mfct5dutzu3236",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": true,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp752RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228241105502209,
"price": 225700000000,
"strikethrough_price": 255000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1304763355119616,
"discount_text": "-11%",
"model_id": 258295617767,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1304763355119616,
"voucher_code": "DENPLOV",
"voucher_discount": 200000000,
"time_info": {
"start_time": 1764999660,
"end_time": 1772297940,
"valid_duration": null
},
"groups": [],
"min_spend": 19900000
},
"recommended_platform_voucher_info": null,
"original_price": 255000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 798,
"rounded_local_monthly_sold_count": 21,
"local_monthly_sold_count_text": "21",
"rounded_display_sold_count": 798,
"display_sold_count_text": "798"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp752RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "DENPOO Authorize Store Bandung",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 351094504,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyC+olSpYW5XyZ4RDjupBRh3ODgBXTAivupJpInhE1qjTUPyZxg/VqMCvOxuMLDHB3XA946CGOIbNC2oz3EtFDNHMzR6QyH44ayWWo3uDzFq9ofZmM5iS7a2EAe2Q2H+ddrWLvKEWV05dJtCF7ofHp3KHgRWJuLvlPIlBRlqcWOwjSikivR3+6mq8/+OilzSuesyZLfqm4XiXSJZz4VmEuEWQn0hp8+WOf/+nLSS3fqSxI1lijJ5nADRRUZUwZe3mAlHO6KHgi+WaHJjU6ZZiop9Nbw+8GVS4ETniCHJUWOWjIT0yKelzt0rf0Nozs2o8cP0WwFS300+BhW1fw4E9JvYVxsZD/VK22k01STk5iX0ADqjvo4AqW0KgfMFe1kpDHvVpAlV28jCyuh00DoL6junfNBWlbK74piitGbiiQ0BmQmqAJ0FNWzwUIC83V9owlgPOmsz0ot3UQZwRswxPLHA==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EOiNtacBGJKn74kBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2xnUE9tc3owb3QzVVFad1Jzd3hQTEhBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB+JST7P4B6QEAAADglSXxP/EBAAAAwI199T/IDA/gDAHpDAAAACARwKo/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgIS3kwiwDpyMyJUB4g4Mqo0Gx40G1Y4G8JAGyA8Z4hmgCkVsY3dMall5TVRjeUxDMHhMQzB4TEMweExDMHhMREF1TmpJNExERXNOaTQzTnpZNE9UUXhOall6T1RrNE1UTTFMREF1T1N3dE1Td3hMakF3TURBeE1qTXNMVEVzTmk0d09EY3dNVEkwT1Rrd01qRTBNallzTFRFZFpncVFUU0Rhdjh4UUxRc3BIejgxQUFDQVB6azBPVXViZUREWVFVSEk3VGFVYVlSUFFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQURBQk9zUlAza0FBQUFBdXZIZ1BvRUJBQUFBd0p0TGRFR0pBUUFBQUNEeHB5WkJrUUVBQUFCSjJ3QjFRWmtCQUFBQVFCSm1lMEdoQVFBQUFBRHNsUzVCcVFFQUFBQ2d3VnA4UWVnQkFZQUNsQU9LQWo0d0xqQXdOVFk1TXl3eExqQXdNREF3TUN3eExqQXhPREl4T0N3eExqSXhOVFExTml3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ2YycThkSk1ZNUQraEFxY29JL0RmaWZWQnlnSUxDQUVSQUFBQUFBQUFBQURLQWdzSUFoSDdxZkhTVFdKd3Y5a0NnSkxLeGtZTldVSGhBcUNiY2lhNUJ4QkI2UUtKSytKN0ZjSGJRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A1a0RORGxMbTNndzJFR2hBOGp0TnBScGhFOUN1UU5kZHU4V2g0VGhQOEVESzJ5UW9IajA0ei9KQTVrK0lMWmIvK1kvMFFPZDhJR0ZkOURzUC9vRENRb0ZTWE5PVUVJUUFQb0RDd29IVW05cFZHbGxjaEFEK2dNTkNnbFBjbVJsY2xScFpYSVFBL29ERVFvTlNYUmxiVkJ5YVdObFZHbGxjaEFEZ1FRQUFBQ0E5aUVLUDRrRUFBQUFvQlAvQXorUUJKc0RtQVR2L1BXd1pxQUVnTjZneXdXb0JJRGVvTXNGd0FTQTNxRExCY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCQVlWRjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFDQ2ZTdkEvc1FVQUFBREFnWEx6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS2TcRN8hkDmr48+hmdBgoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjE5NjA3MDUyMjAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKKQoQcmVjYWxsX3F1ZXVlX2lkcxIVIhM2MTEwMTAxMDQsNjExMDIwMzA0CiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoNCgdpc192c2t1EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklpygj8N+J9UHyJQZTRUFSQ0jIPgE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 21960705220,
"shopid": 894671202,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-mfct5dutzu3236\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,822059908662278,1049112,1049127,1400285055,1015914,700190087,822120592853526,825465608499232,1000031,2018619,1428713,1718087960,834403089593352,298893311,825465608497696,1213641,1718093079,700830032,298463379,298933384,700810080,2068629,298938357,298468390,298938368,1718093084,1718088044,298468389,298458396,2098629,2098628,1718088045,298458398],\"merge_rank\":0,\"model_id\":258295617767,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-mfct5dutzu3236\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,822059908662278,1049112,1049127,1400285055,1015914,700190087,822120592853526,825465608499232,1000031,2018619,1428713,1718087960,834403089593352,298893311,825465608497696,1213641,1718093079,700830032,298463379,298933384,700810080,2068629,298938357,298468390,298938368,1718093084,1718088044,298468389,298458396,2098629,2098628,1718088045,298458398],\"merge_rank\":0,\"model_id\":258295617767,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EOiNtacBGJKn74kBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2xnUE9tc3owb3QzVVFad1Jzd3hQTEhBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuAB+JST7P4B6QEAAADglSXxP/EBAAAAwI199T/IDA/gDAHpDAAAACARwKo/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgIS3kwiwDpyMyJUB4g4Mqo0Gx40G1Y4G8JAGyA8Z4hmgCkVsY3dMall5TVRjeUxDMHhMQzB4TEMweExDMHhMREF1TmpJNExERXNOaTQzTnpZNE9UUXhOall6T1RrNE1UTTFMREF1T1N3dE1Td3hMakF3TURBeE1qTXNMVEVzTmk0d09EY3dNVEkwT1Rrd01qRTBNallzTFRFZFpncVFUU0Rhdjh4UUxRc3BIejgxQUFDQVB6azBPVXViZUREWVFVSEk3VGFVYVlSUFFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQURBQk9zUlAza0FBQUFBdXZIZ1BvRUJBQUFBd0p0TGRFR0pBUUFBQUNEeHB5WkJrUUVBQUFCSjJ3QjFRWmtCQUFBQVFCSm1lMEdoQVFBQUFBRHNsUzVCcVFFQUFBQ2d3VnA4UWVnQkFZQUNsQU9LQWo0d0xqQXdOVFk1TXl3eExqQXdNREF3TUN3eExqQXhPREl4T0N3eExqSXhOVFExTml3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ2YycThkSk1ZNUQraEFxY29JL0RmaWZWQnlnSUxDQUVSQUFBQUFBQUFBQURLQWdzSUFoSDdxZkhTVFdKd3Y5a0NnSkxLeGtZTldVSGhBcUNiY2lhNUJ4QkI2UUtKSytKN0ZjSGJRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A1a0RORGxMbTNndzJFR2hBOGp0TnBScGhFOUN1UU5kZHU4V2g0VGhQOEVESzJ5UW9IajA0ei9KQTVrK0lMWmIvK1kvMFFPZDhJR0ZkOURzUC9vRENRb0ZTWE5PVUVJUUFQb0RDd29IVW05cFZHbGxjaEFEK2dNTkNnbFBjbVJsY2xScFpYSVFBL29ERVFvTlNYUmxiVkJ5YVdObFZHbGxjaEFEZ1FRQUFBQ0E5aUVLUDRrRUFBQUFvQlAvQXorUUJKc0RtQVR2L1BXd1pxQUVnTjZneXdXb0JJRGVvTXNGd0FTQTNxRExCY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCQVlWRjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFDQ2ZTdkEvc1FVQUFBREFnWEx6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS2TcRN8hkDmr48+hmdBgoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjE5NjA3MDUyMjAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKKQoQcmVjYWxsX3F1ZXVlX2lkcxIVIhM2MTEwMTAxMDQsNjExMDIwMzA0CiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoNCgdpc192c2t1EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklpygj8N+J9UHyJQZTRUFSQ0jIPgE=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_21960705220",
"debug_info": null
},
{
"item_basic": {
"itemid": 7453161211,
"shopid": 142041734,
"name": "AC MIDEA MSAF 05 CRN / MSAFE 05 CRN2 / 05 ESA / KR 05 FQ / AN 05 CDG / KIOS 05 1/2 PK + PASANG R32 STANDARD LOW SUPER COOL AC ANTI KARAT HEMAT LISTRIK DAN AWET",
"label_ids": [
1000544,
1400095067,
1400285005,
22,
1002164,
1400095065,
700195025,
844931026694327,
844931064601283,
844931046478970,
1068760,
1015914,
700190087,
1400285055,
1049112,
1059151,
822059908662278,
834403089593352,
822120592853526,
1718093079,
298463379,
2018619,
2023641,
298893311,
825465608497696,
298933384,
298468389,
1718088045
],
"image": "id-11134207-7rbk9-ma7zhcw9npp91b",
"images": [
"id-11134207-7rbk9-ma7zhcw9npp91b",
"8efa10220097841f1fdf8e456affb0a1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1600426852,
"sold": 8,
"historical_sold": 1000,
"liked": false,
"liked_count": 1969,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 848,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 287500000000,
"price_min": 287500000000,
"price_max": 287500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6knas-mac8vpw2jkkc17.16000101748492032.mp4",
"thumb_url": "id-11110105-6knas-mac8vpw2jkkc17_cover",
"duration": 50,
"version": 2,
"vid": "id-11110105-6knas-mac8vpw2jkkc17",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knas-mac8vpw2jkkc17.16000101748492032.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knas-mac8vpw2jkkc17.16000101748492032.mp4",
"width": 540,
"height": 952
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knas-mac8vpw2jkkc17.default.mp4",
"width": 540,
"height": 952
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "TIPE",
"options": [
"MSAFE 05 CRN",
"SANKEN 05 ESA",
"AQUA 05 FQ",
"HISENSE AN 05 CDG",
"ARISTON KIOS 05"
],
"images": [
"id-11134207-7rbk0-mazcg5rjpyop4d",
"id-11134207-7ra0t-mb3t0pv6no1k15",
"id-11134207-7rbk1-mazcg5rjrd9590",
"id-11134207-8224v-mhhkjxhx0rghd2",
"id-11134207-8224z-mhn5fswsd8g388"
],
"properties": [],
"type": 0
},
{
"name": "PACKING",
"options": [
"DUS BAWAAN",
"PACKING WRAPPING",
"PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.905202312138728,
"rating_count": [
865,
1,
3,
9,
51,
801
],
"rcount_with_context": 328,
"rcount_with_image": 278
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "1c1ac62954c41b047210cf574b21da09",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 287500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 430225094667,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 287500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 8,
"local_monthly_sold_count_text": "8",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "mj.grosir7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 505936931,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyC+olSpYW5XyZ4RDjupBRh3ODgBXTAivupJpInhE1qjTUPyZxg/VqMCvOxuMLDHB3XA946CGOIbNC2oz3EtFDNHMzR6QyH44ayWWo3uDzFq9ofZmM5iS7a2EAe2Q2H+ddrWLvKEWV05dJtCF7ofHp3KHgRWJuLvlPIlBRlqcWOwjSikivR3+6mq8/+OilzSuesyZLfqm4XiXSJZz4VmEuEWQn0hp8+WOf/+nLSS3fqSxI1lijJ5nADRRUZUwZe3mAlHO6KHgi+WaHJjU6ZZiop9Nbw+8GVS4ETniCHJUWOWjIT0yKelzt0rf0Nozs2o8cP0WwFS300+BhW1fw4E9JvYVxsZD/VK22k01STk5iX0ADqjvo4AqW0KgfMFe1kpDHvVpAlV28jCyuh00DoL6junfNBWlbK74piitGbiiQ0BmQmqAJ0FNWzwUIC83V9owl3Q46JVAjoNk9dzMI01Mwbg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKP4n/EBGIGMkcABMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2wzUTQ2SlZBam9Oazlkek1JMDFNd2JnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABxZfJlIkI6QEAAADglSXxP/EBAAAAQHyD8D/IDA/gDAHpDAAAAKCtLKU/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgI7l/QiwDqO3uoIB4g4Mqo0Gx40G1Y4G8JAGyA8a4hnICkVuVTRMak0xTWpjNE9EY3lOVGs0T0RJMU9Dd3RNU3d0TVN3dE1Td3RNU3c0TGpRek56RTJNRE15T1RJNE1UQTJPU3d4TERFekxqVXhOams1TVRRME16ZzJNREV3Tnl3d0xqa3NMVEVzTUM0ek9EZzBORFUyT1RrMk1EWXpOVFF4TEMweExEa3VOakl4TURjME5EUTJNVFkyTVRjc0xURWRVNnZqVFNEOTNjQ3ZEUzBHcFFWQk5RQUFnRDg1RTBtU3J5R2k1VUZCb3YxOUpJTVFXMEpLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQVlOS29CVDk1QUFBQVFPQWFKaitCQVFBQUFDQ2g2R3BCaVFFQUFBRGd4d1NIUVpFQkFBQUFLUEMralVHWkFRQUFBQ0RUS1hKQm9RRUFBQUFnUVJPUFFha0JBQUFBV0JVVWxFSG9BUUdBQXBRRGlnSStNQzR3TURVME9UQXNNUzR3TURBd01EQXNNUzR3TWpNME16Y3NNUzR5TXpZNE1qQXNNUzR6TURBd01EQXNNUzR6TmpBeE5ERXNNUzQwT0RNM05EV1pBdGU5aW5yVDN5QkFvUUl4SUIzTENvRUZRc29DQ3dnQkVUY09XY0x2VTN1L3lnSUxDQUlSKzZueDBrMWljTC9aQW1DZnpqc0tVbE5CNFFJQXAzZGgyTngxUWVrQ2xwTkEvbWp2OEVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQTQrYUdKaWZsdXBCb1FQOFpEdUxoNUpmUXJrREIxVGY0dEdtMlQvQkEyK0d1TFcza3Q0L3lRTWlzd2pQaUgzalA5RUREczNJdjEyeTZqLzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFQNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBNEJqZC9qNkpCQUFBQUtBK0VmYytrQVNiQTVnRXkrRGY5ZDBJb0FTQWpJMmVBcWdFZ0l5Tm5nTEFCSUNNalo0Q3lRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBT0N4ZkhZL29RVUFBQUFBQUFEd1A2a0ZBQUFBSVA5ZjhEK3hCUUFBQUNBRXl2TS91UVVBQUFEQXpNejBQOEVGQUFBQUFDUEQ5VC9KQlFBQUFDQnJ2ZmMv6hkEuE3ATfoZnAYKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKKQoQcmVjYWxsX3F1ZXVlX2lkcxIVIhM2MTEwMjAzMDQsNjExMDEwMTA0ChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiEKD3Zza3VfdW5pcXVlX2tleRIOIgwwXzc0NTMxNjEyMTEKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklMSAdywqBBULyJQZTRUFSQ0jIPgE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 7453161211,
"shopid": 142041734,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-ma7zhcw9npp91b\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000544,1400095067,1400285005,22,1002164,1400095065,700195025,844931026694327,844931064601283,844931046478970,1068760,1015914,700190087,1400285055,1049112,1059151,822059908662278,834403089593352,822120592853526,1718093079,298463379,2018619,2023641,298893311,825465608497696,298933384,298468389,1718088045],\"merge_rank\":0,\"model_id\":430225094667,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-ma7zhcw9npp91b\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000544,1400095067,1400285005,22,1002164,1400095065,700195025,844931026694327,844931064601283,844931046478970,1068760,1015914,700190087,1400285055,1049112,1059151,822059908662278,834403089593352,822120592853526,1718093079,298463379,2018619,2023641,298893311,825465608497696,298933384,298468389,1718088045],\"merge_rank\":0,\"model_id\":430225094667,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKP4n/EBGIGMkcABMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2wzUTQ2SlZBam9Oazlkek1JMDFNd2JnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABxZfJlIkI6QEAAADglSXxP/EBAAAAQHyD8D/IDA/gDAHpDAAAAKCtLKU/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgI7l/QiwDqO3uoIB4g4Mqo0Gx40G1Y4G8JAGyA8a4hnICkVuVTRMak0xTWpjNE9EY3lOVGs0T0RJMU9Dd3RNU3d0TVN3dE1Td3RNU3c0TGpRek56RTJNRE15T1RJNE1UQTJPU3d4TERFekxqVXhOams1TVRRME16ZzJNREV3Tnl3d0xqa3NMVEVzTUM0ek9EZzBORFUyT1RrMk1EWXpOVFF4TEMweExEa3VOakl4TURjME5EUTJNVFkyTVRjc0xURWRVNnZqVFNEOTNjQ3ZEUzBHcFFWQk5RQUFnRDg1RTBtU3J5R2k1VUZCb3YxOUpJTVFXMEpLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdpcTg1WURFUUFBQUFBQUFBQUFTZzRJclBPV0F4RUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SXF2T1dBeEVBQUFBQUFBQUFBRklPQ0t6emxnTVJBQUFBQUFBQUFBQlNEZ2lyODVZREVRQUFBQUFBQUFBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVdna0lnSUNBZ0lBRUVBQmFCd2lxODVZREVBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQVlOS29CVDk1QUFBQVFPQWFKaitCQVFBQUFDQ2g2R3BCaVFFQUFBRGd4d1NIUVpFQkFBQUFLUEMralVHWkFRQUFBQ0RUS1hKQm9RRUFBQUFnUVJPUFFha0JBQUFBV0JVVWxFSG9BUUdBQXBRRGlnSStNQzR3TURVME9UQXNNUzR3TURBd01EQXNNUzR3TWpNME16Y3NNUzR5TXpZNE1qQXNNUzR6TURBd01EQXNNUzR6TmpBeE5ERXNNUzQwT0RNM05EV1pBdGU5aW5yVDN5QkFvUUl4SUIzTENvRUZRc29DQ3dnQkVUY09XY0x2VTN1L3lnSUxDQUlSKzZueDBrMWljTC9aQW1DZnpqc0tVbE5CNFFJQXAzZGgyTngxUWVrQ2xwTkEvbWp2OEVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQTQrYUdKaWZsdXBCb1FQOFpEdUxoNUpmUXJrREIxVGY0dEdtMlQvQkEyK0d1TFcza3Q0L3lRTWlzd2pQaUgzalA5RUREczNJdjEyeTZqLzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFQNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBNEJqZC9qNkpCQUFBQUtBK0VmYytrQVNiQTVnRXkrRGY5ZDBJb0FTQWpJMmVBcWdFZ0l5Tm5nTEFCSUNNalo0Q3lRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBT0N4ZkhZL29RVUFBQUFBQUFEd1A2a0ZBQUFBSVA5ZjhEK3hCUUFBQUNBRXl2TS91UVVBQUFEQXpNejBQOEVGQUFBQUFDUEQ5VC9KQlFBQUFDQnJ2ZmMv6hkEuE3ATfoZnAYKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKKQoQcmVjYWxsX3F1ZXVlX2lkcxIVIhM2MTEwMjAzMDQsNjExMDEwMTA0ChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKFAoOdXNlcl9ibGFja2xpc3QSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiEKD3Zza3VfdW5pcXVlX2tleRIOIgwwXzc0NTMxNjEyMTEKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigAsB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklMSAdywqBBULyJQZTRUFSQ0jIPgE=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_7453161211",
"debug_info": null
},
{
"item_basic": {
"itemid": 6942523564,
"shopid": 182559378,
"name": "AC DAIKIN 1 PK INDONESIA BREEZE FTP25AV149 + PEMASANGAN",
"label_ids": [
700020158,
1049124,
1059152,
822059908662278,
825465608499232,
844931026694327,
844931046478970,
844931064601283,
298458334,
298458395,
1718093079,
298933384
],
"image": "id-11134207-23020-zw4yfuk0iknvf6",
"images": [
"id-11134207-23020-zw4yfuk0iknvf6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1594950934,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 10,
"view_count": null,
"catid": 100010,
"brand": "Daikin",
"cmt_count": 0,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 438900000000,
"price_min": 438900000000,
"price_max": 438900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 438900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 50316370102,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 438900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Ddt Elektronik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 374563500,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiZ0MVa6G4scgncTzrkCt3xsL+qLFww1bF02k/3BMHXjPogAImQ/pJRXjKZEPRg1EY1t1CPP3q1YKCESp03HNrYzO0vHwL9vO0nnVKiPm9OOKPvLBU8f9p03SewT9B2nRxq5bbNV0mR0aifsmZy3YlUw9p4haU1nwZ06fu5JleXv5rRrzYSOzYOGOV0Ch6cZIR52z78lqSTN5YAF2dDtwBeBjBBxH/r3czE8Vf8GTlQYzQlngsrfqKzNX1Tp+xH8rx+oaW6Y5m4KMXz3i2UxtXy+aN9dXOeCxQWSPH2UP1BhhoFDbmrW3Njb7tgue24zCSue0yIjcgiYUPeQBoAfHbiCEzxqrluAmOdLsEyCAWpgXuOjL1bwBXnaJk7RshUuMvh4gws9BwAJLutTFckmA5EPevfflrOr046snOSvX5xqLC/+Ul9mJ6OB6vFLId91e0k1nAoj7guMLbayQkbSOBw/p4LLhwW/YUCP1+x7IrCcYw==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKzFzbIBGJjtto8BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWjBNVmE2RzRzY2duY1R6cmtDdDN4c0wrcUxGd3cxYkYwMmsvM0JNSFhqUG9nQUltUS9wSlJYaktaRVBSZzFFWTF0MUNQUDNxMVlLQ0VTcDAzSE5yWXpPMHZId0w5dk8wbm5WS2lQbTlPT0tQdkxCVThmOXAwM1Nld1Q5QjJuUnhxNWJiTlYwbVIwYWlmc21aeTNZbFV3OXA0aGFVMW53WjA2ZnU1SmxlWHY1clJyellTT3pZT0dPVjBDaDZjWklSNTJ6NzhscVNUTjVZQUYyZER0d0JlQmpCQnhIL3IzY3pFOFZmOEdUbFFZelFsbmdzcmZxS3pOWDFUcCt4SDhyeCtvYVc2WTVtNEtNWHozaTJVeHRYeSthTjlkWE9lQ3hRV1NQSDJVUDFCaGhvRkRibXJXM05qYjd0Z3VlMjR6Q1N1ZTB5SWpjZ2lZVVBlUUJvQWZIYmlDRXp4cXJsdUFtT2RMc0V5Q0FXcGdYdU9qTDFid0JYbmFKazdSc2hVdU12aDRnd3M5QndBSkx1dFRGY2ttQTVFUGV2ZmZsck9yMDQ2c25PU3ZYNXhxTEMvK1VsOW1KNk9CNnZGTElkOTFlMGsxbkFvajdndU1MYmF5UWtiU09Cdy9wNExMaHdXL1lVQ1AxK3g3SXJDY1l3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBukBAAAAoMQd8T/IDA/gDAHpDAAAAMBm8MY/iQ17FK5H4XqUP5ENMzMzMxgJI0GhDQAAANA1vn1B+A2AgOqD4wywDq2luqIG4g4Mqo0Gx40G1Y4G8JAGyA8b4hmgCkVta3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTWk0eU5UZzROakkzTnpZeE9EUTROaklzTFRFc0xURXNNQzR6T0RZM01ESTJOVGd4TkRZeU1USXpOU3cxTGpneE1qQTFNVFExTlRFME9Ea3hNelVzTWk0d09UUTRORGsyTmpjNE1qQTJNVGNzTFRFZFowbkdUQ0RjeHU4T0xacVptVDQxQUFDQVAwb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJOFBmaEJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBR256MU5DVUZHRWl3WEVBQUFEQUc2QU1QM2tBQUFCQVBhYnlQb0VCQUFBQWdNTk9lVUdKQVFBQUFBQVN4MTFCa1FFQUFBQUFSR0NBUVprQkFBQUFZQ29WZ1VHaEFRQUFBS0NTR1dSQnFRRUFBQUFJanh1R1FlZ0JBWUFDbEFPS0FqNHdMakF3TkRrNE9Td3hMakF3TURBd01Dd3hMakF3TURBd01Dd3hMakl4TlRRd01Dd3hMakl4TlRRd01Dd3hMakl4TlRRd01Dd3hMakk1TVRRM09Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUx6MU5DVUZHRWl3Y29DQ3dnQkVmUFUwSlFVWVNMQnlnSUxDQUlSQUFBQUFBQUFBSURaQWdBT0NPYTF4MU5CNFFJQVhHR2VjWlJBUWVrQ1ZLWGdqOUIzbmtHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QS9pQ0NncnhIZU0vd1FNS2QvOHAvcmZsUDhrRHVZUzBxU2swNlQvUkEvVUtEWFdyZ080L2dRUUFBQUJBdnkwSFA0a0VBQUFBSUpvZkFqK1FCSnNEbUFURy83bm9SNkFFbW9UK2x3R29CSURLdGU0QnVBVG14YmRXd0FTQXlyWHVBY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCZ1NHOTBQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQ0FSM0x6UDdrRkFBQUFnRWR5OHovQkJRQUFBSUJIY3ZNL3lRVUFBQUNnNUtuMFB3PT3qGQILFvIZAs0I+hmSBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIQoPdnNrdV91bmlxdWVfa2V5Eg4iDDBfNjk0MjUyMzU2NLAfwIKAgIiAgYigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 6942523564,
"shopid": 182559378,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1075291,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-23020-zw4yfuk0iknvf6\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[700020158,1049124,1059152,822059908662278,825465608499232,844931026694327,844931046478970,844931064601283,298458334,298458395,1718093079,298933384],\"merge_rank\":0,\"model_id\":50316370102,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":1075291,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-23020-zw4yfuk0iknvf6\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[700020158,1049124,1059152,822059908662278,825465608499232,844931026694327,844931046478970,844931064601283,298458334,298458395,1718093079,298933384],\"merge_rank\":0,\"model_id\":50316370102,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EKzFzbIBGJjtto8BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWjBNVmE2RzRzY2duY1R6cmtDdDN4c0wrcUxGd3cxYkYwMmsvM0JNSFhqUG9nQUltUS9wSlJYaktaRVBSZzFFWTF0MUNQUDNxMVlLQ0VTcDAzSE5yWXpPMHZId0w5dk8wbm5WS2lQbTlPT0tQdkxCVThmOXAwM1Nld1Q5QjJuUnhxNWJiTlYwbVIwYWlmc21aeTNZbFV3OXA0aGFVMW53WjA2ZnU1SmxlWHY1clJyellTT3pZT0dPVjBDaDZjWklSNTJ6NzhscVNUTjVZQUYyZER0d0JlQmpCQnhIL3IzY3pFOFZmOEdUbFFZelFsbmdzcmZxS3pOWDFUcCt4SDhyeCtvYVc2WTVtNEtNWHozaTJVeHRYeSthTjlkWE9lQ3hRV1NQSDJVUDFCaGhvRkRibXJXM05qYjd0Z3VlMjR6Q1N1ZTB5SWpjZ2lZVVBlUUJvQWZIYmlDRXp4cXJsdUFtT2RMc0V5Q0FXcGdYdU9qTDFid0JYbmFKazdSc2hVdU12aDRnd3M5QndBSkx1dFRGY2ttQTVFUGV2ZmZsck9yMDQ2c25PU3ZYNXhxTEMvK1VsOW1KNk9CNnZGTElkOTFlMGsxbkFvajdndU1MYmF5UWtiU09Cdy9wNExMaHdXL1lVQ1AxK3g3SXJDY1l3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBukBAAAAoMQd8T/IDA/gDAHpDAAAAMBm8MY/iQ17FK5H4XqUP5ENMzMzMxgJI0GhDQAAANA1vn1B+A2AgOqD4wywDq2luqIG4g4Mqo0Gx40G1Y4G8JAGyA8b4hmgCkVta3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTWk0eU5UZzROakkzTnpZeE9EUTROaklzTFRFc0xURXNNQzR6T0RZM01ESTJOVGd4TkRZeU1USXpOU3cxTGpneE1qQTFNVFExTlRFME9Ea3hNelVzTWk0d09UUTRORGsyTmpjNE1qQTJNVGNzTFRFZFowbkdUQ0RjeHU4T0xacVptVDQxQUFDQVAwb09DUEQzNFFRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJOFBmaEJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJOFBmaEJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBWWc0SXEvT1dBeEVBQUFBQUFBQUFBR256MU5DVUZHRWl3WEVBQUFEQUc2QU1QM2tBQUFCQVBhYnlQb0VCQUFBQWdNTk9lVUdKQVFBQUFBQVN4MTFCa1FFQUFBQUFSR0NBUVprQkFBQUFZQ29WZ1VHaEFRQUFBS0NTR1dSQnFRRUFBQUFJanh1R1FlZ0JBWUFDbEFPS0FqNHdMakF3TkRrNE9Td3hMakF3TURBd01Dd3hMakF3TURBd01Dd3hMakl4TlRRd01Dd3hMakl4TlRRd01Dd3hMakl4TlRRd01Dd3hMakk1TVRRM09Ka0NNek16TXpNejB6K2hBcTN2TkhqQ1NjRkJ3UUx6MU5DVUZHRWl3Y29DQ3dnQkVmUFUwSlFVWVNMQnlnSUxDQUlSQUFBQUFBQUFBSURaQWdBT0NPYTF4MU5CNFFJQVhHR2VjWlJBUWVrQ1ZLWGdqOUIzbmtHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCs1QS9pQ0NncnhIZU0vd1FNS2QvOHAvcmZsUDhrRHVZUzBxU2swNlQvUkEvVUtEWFdyZ080L2dRUUFBQUJBdnkwSFA0a0VBQUFBSUpvZkFqK1FCSnNEbUFURy83bm9SNkFFbW9UK2x3R29CSURLdGU0QnVBVG14YmRXd0FTQXlyWHVBY2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFCZ1NHOTBQNkVGQUFBQUFBQUE4RCtwQlFBQUFBQUFBUEEvc1FVQUFBQ0FSM0x6UDdrRkFBQUFnRWR5OHovQkJRQUFBSUJIY3ZNL3lRVUFBQUNnNUtuMFB3PT3qGQILFvIZAs0I+hmSBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMTAxMDQKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDYWRzChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIQoPdnNrdV91bmlxdWVfa2V5Eg4iDDBfNjk0MjUyMzU2NLAfwIKAgIiAgYigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_6942523564",
"debug_info": null
},
{
"item_basic": {
"itemid": 19454704423,
"shopid": 117080411,
"name": "AC GREE Inverter 1PK / 1 PK / GWC-09F5S",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
1400285055,
822120592853526,
2018618,
2018619,
1012763,
1015914,
700190087,
1012729,
298463379,
2153644,
700830032,
2213652,
2008656,
298468389
],
"image": "sg-11134201-22100-gpg12kediniv6a",
"images": [
"sg-11134201-22100-gpg12kediniv6a",
"sg-11134201-22100-id8sk893dnivc6",
"sg-11134201-22110-xtqj5xhb3akv6b",
"afb84ca2a2716fbf70f2bd688a7910d9",
"sg-11134201-22110-cn68z7hb3akvb7",
"sg-11134201-22110-dy1e94hb3akv2f",
"c77c22d028ad6a9bda2c75d2b5feb4ba"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1665732988,
"sold": 0,
"historical_sold": 13,
"liked": false,
"liked_count": 39,
"view_count": null,
"catid": 100010,
"brand": "Gree",
"cmt_count": 3,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 529900000000,
"price_min": 529900000000,
"price_max": 529900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 529900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 156007189306,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 529900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 13,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 13,
"display_sold_count_text": "13"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "INDO COOL Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 393621197,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWibtL7v0h+yPZT+VkatDBMD5Vt0cTaixH42Wn6/5K69cr0WhDHIaie6/7vgKIylonrqemUBFmXbPTh4J7JeMONjMJ1D7U8Qx+V8Hi98ZZ1OllFLer+ItNFoggGNcsV5quJKT4I0WY07o5+8TD0onNtJHaEJgcQBMYABFdF/xZ4xWGBBuhsR4JC/woOoSJE4rVxjCRoaEUfikTWDaVrTNN1tkMB0u2EsVKH51KmNq4t2uezQt3LydTGU2GZQJ+MPcSlbveh5CLdNQjc52z3X+YzBUPJ7M9GiwGsyEGTHbXxCiunovFMowPJ/mOxtKyOKjXrfFpideTy6Z1qNM8sQYuStLId77GQd9xDkPUk++g87GAQQ/8W1g+dX8E3xOH92HzGwGlhIGOJMDODXQRf7iqfyuTW/j6JP266ZnAssH42zj3s+mwh/wmRLEhxHcgySw4alNiTbEZbsCpRgTZyWpIMWSR2EBbTdfK09HcBcO20Jshw==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EM3d2LsBGKrI/JMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYnRMN3YwaCt5UFpUK1ZrYXREQk1ENVZ0MGNUYWl4SDQyV242LzVLNjljcjBXaERISWFpZTYvN3ZnS0l5bG9ucnFlbVVCRm1YYlBUaDRKN0plTU9Oak1KMUQ3VThReCtWOEhpOThaWjFPbGxGTGVyK0l0TkZvZ2dHTmNzVjVxdUpLVDRJMFdZMDdvNSs4VEQwb25OdEpIYUVKZ2NRQk1ZQUJGZEYveFo0eFdHQkJ1aHNSNEpDL3dvT29TSkU0clZ4akNSb2FFVWZpa1RXRGFWclROTjF0a01CMHUyRXNWS0g1MUttTnE0dDJ1ZXpRdDNMeWRUR1UyR1pRSitNUGNTbGJ2ZWg1Q0xkTlFqYzUyejNYK1l6QlVQSjdNOUdpd0dzeUVHVEhiWHhDaXVub3ZGTW93UEovbU94dEt5T0tqWHJmRnBpZGVUeTZaMXFOTThzUVl1U3RMSWQ3N0dRZDl4RGtQVWsrK2c4N0dBUVEvOFcxZytkWDhFM3hPSDkySHpHd0dsaElHT0pNRE9EWFFSZjdpcWZ5dVRXL2o2SlAyNjZabkFzc0g0MnpqM3MrbXdoL3dtUkxFaHhIY2d5U3c0YWxOaVRiRVpic0NwUmdUWnlXcElNV1NSMkVCYlRkZkswOUhjQmNPMjBKc2h3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABy8ve4PkK6QEAAACgxB3xP/EBAAAA4ABb8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENMzMzMyLWMEGhDQAAAHCVTopB+A2AgIKEtg+wDoDhlIcB4g4Mqo0Gx40G1Y4G8JAGyA8c4hngCUVud3lMakk0TlRNM01UQXhNRGczTWpNMExDMHhMQzB4TEMweExDMHhMREl1TWpnMU16Y3hNREV3T0RjeU16UXNNU3d4TGpJMU5qRXhNVEU0TkRZek9EZ3lNalFzTFRFc0xURXNNUzR3TURBd01USXpMREV5TGpRd056QTFOelEyT1RnMk16TXhNU3d3TGpRNE5qUTBORFE1TWprMk9EVTJPREl6TEMweEhTc3R1RXNncmFXbkdpMkZReEpBTlFBQWdEOUtFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQnhBQUFBNExZdUN6OTVBQUFBQUpobENEK0JBUUFBQUdEQkEzMUJpUUVBQUFBQW5LQnlRWkVCQUFBQXNDN1NoMEdaQVFBQUFDQzhsWU5Cb1FFQUFBRGdzVTk0UWFrQkFBQUFFSlc5ajBIb0FRR0FBcFFEaWdJK01DNHdNRFExTXpNc01TNHdNREF3TURBc01TNHdNREF3TURBc01TNHlORE0wTkRBc01TNHlORE0wTkRBc01TNHlORE0wTkRBc01TNHpNek0zTWpXWkFxSml0NWh3U0FKQW9RS3Q3elI0d2tuQlFjRUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUlnS1ovQXg2TmJRZUVDQU9oMzFOaHVXMEhwQWkwWFA2aWFLcU5CaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS91UVA4eWk1YndWTGpQOEVEdC9RZEdONmM1VC9KQTE5RVdUV2N1ZWcvMFFQTzdHVXgxaGZ0UDRFRUFBQUFRQnNVQmorSkJBQUFBQ0RBQ3dJL2tBU2JBNWdFelpUcGsvTURvQVN1K3VzaHFBU0FsT3ZjQTdnRTBwbi91Z1BBQklDVTY5d0R5UVI3Rks1SDRYcVVQK0VFZXhTdVIrRjZsRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUlCQ2tYSS9vUVVBQUFBQUFBRHdQNmtGQUFBQUFBQUE4RCt4QlFBQUFLQWg1Zk0vdVFVQUFBQ2dJZVh6UDhFRkFBQUFvQ0hsOHovSkJRQUFBQUR3VnZVL+oZAgwW+hmTBgokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzE5NDU0NzA0NDIzChQKDnNob3BfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNAoSCgx2b3VjaGVyX2xlbnMSAhAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH2wH8+CgICggIGIoAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 19454704423,
"shopid": 117080411,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":55169710,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-22100-gpg12kediniv6a\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,1400285055,822120592853526,2018618,2018619,1012763,1015914,700190087,1012729,298463379,2153644,700830032,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":156007189306,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":55169710,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-22100-gpg12kediniv6a\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,1400285055,822120592853526,2018618,2018619,1012763,1015914,700190087,1012729,298463379,2153644,700830032,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":156007189306,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EM3d2LsBGKrI/JMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYnRMN3YwaCt5UFpUK1ZrYXREQk1ENVZ0MGNUYWl4SDQyV242LzVLNjljcjBXaERISWFpZTYvN3ZnS0l5bG9ucnFlbVVCRm1YYlBUaDRKN0plTU9Oak1KMUQ3VThReCtWOEhpOThaWjFPbGxGTGVyK0l0TkZvZ2dHTmNzVjVxdUpLVDRJMFdZMDdvNSs4VEQwb25OdEpIYUVKZ2NRQk1ZQUJGZEYveFo0eFdHQkJ1aHNSNEpDL3dvT29TSkU0clZ4akNSb2FFVWZpa1RXRGFWclROTjF0a01CMHUyRXNWS0g1MUttTnE0dDJ1ZXpRdDNMeWRUR1UyR1pRSitNUGNTbGJ2ZWg1Q0xkTlFqYzUyejNYK1l6QlVQSjdNOUdpd0dzeUVHVEhiWHhDaXVub3ZGTW93UEovbU94dEt5T0tqWHJmRnBpZGVUeTZaMXFOTThzUVl1U3RMSWQ3N0dRZDl4RGtQVWsrK2c4N0dBUVEvOFcxZytkWDhFM3hPSDkySHpHd0dsaElHT0pNRE9EWFFSZjdpcWZ5dVRXL2o2SlAyNjZabkFzc0g0MnpqM3MrbXdoL3dtUkxFaHhIY2d5U3c0YWxOaVRiRVpic0NwUmdUWnlXcElNV1NSMkVCYlRkZkswOUhjQmNPMjBKc2h3PT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABy8ve4PkK6QEAAACgxB3xP/EBAAAA4ABb8T/IDA/gDAHpDAAAAOCDTqU/iQ17FK5H4XqUP5ENMzMzMyLWMEGhDQAAAHCVTopB+A2AgIKEtg+wDoDhlIcB4g4Mqo0Gx40G1Y4G8JAGyA8c4hngCUVud3lMakk0TlRNM01UQXhNRGczTWpNMExDMHhMQzB4TEMweExDMHhMREl1TWpnMU16Y3hNREV3T0RjeU16UXNNU3d4TGpJMU5qRXhNVEU0TkRZek9EZ3lNalFzTFRFc0xURXNNUzR3TURBd01USXpMREV5TGpRd056QTFOelEyT1RnMk16TXhNU3d3TGpRNE5qUTBORFE1TWprMk9EVTJPREl6TEMweEhTc3R1RXNncmFXbkdpMkZReEpBTlFBQWdEOUtFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQnhBQUFBNExZdUN6OTVBQUFBQUpobENEK0JBUUFBQUdEQkEzMUJpUUVBQUFBQW5LQnlRWkVCQUFBQXNDN1NoMEdaQVFBQUFDQzhsWU5Cb1FFQUFBRGdzVTk0UWFrQkFBQUFFSlc5ajBIb0FRR0FBcFFEaWdJK01DNHdNRFExTXpNc01TNHdNREF3TURBc01TNHdNREF3TURBc01TNHlORE0wTkRBc01TNHlORE0wTkRBc01TNHlORE0wTkRBc01TNHpNek0zTWpXWkFxSml0NWh3U0FKQW9RS3Q3elI0d2tuQlFjRUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUlnS1ovQXg2TmJRZUVDQU9oMzFOaHVXMEhwQWkwWFA2aWFLcU5CaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS91UVA4eWk1YndWTGpQOEVEdC9RZEdONmM1VC9KQTE5RVdUV2N1ZWcvMFFQTzdHVXgxaGZ0UDRFRUFBQUFRQnNVQmorSkJBQUFBQ0RBQ3dJL2tBU2JBNWdFelpUcGsvTURvQVN1K3VzaHFBU0FsT3ZjQTdnRTBwbi91Z1BBQklDVTY5d0R5UVI3Rks1SDRYcVVQK0VFZXhTdVIrRjZsRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUlCQ2tYSS9vUVVBQUFBQUFBRHdQNmtGQUFBQUFBQUE4RCt4QlFBQUFLQWg1Zk0vdVFVQUFBQ2dJZVh6UDhFRkFBQUFvQ0hsOHovSkJRQUFBQUR3VnZVL+oZAgwW+hmTBgokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzE5NDU0NzA0NDIzChQKDnNob3BfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNAoSCgx2b3VjaGVyX2xlbnMSAhAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA2FkcwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH2wH8+CgICggIGIoAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSA==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_19454704423",
"debug_info": null
},
{
"item_basic": {
"itemid": 1796529782,
"shopid": 117080411,
"name": "AC DAIKIN FLASH Inverter 1/2PK FTKQ15",
"label_ids": [
71,
22,
1059152,
1059154,
822059908662278,
844931046478970,
844931064601283,
844931026694327,
1400285055,
1015914,
700190087,
822120592853526,
2018618,
2018619,
1012763,
1012729,
298893311,
298463379,
2153644,
2213652,
2008656,
298468389
],
"image": "590c9065599f87be49cb80de34c2f90f",
"images": [
"590c9065599f87be49cb80de34c2f90f",
"sg-11134201-22100-7bir0ikibbjv29",
"id-11134207-7r98z-lo4sci0rdwjg77",
"48cc22abade4ad41f1a863c1796c1190",
"2f7c31db0110495de43d23a3aa5a1239",
"74e3f7c7b54f1cc00661f7e4257498e0",
"735ffdfdf81ee63c3b91006052f9d276"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1546221921,
"sold": 4,
"historical_sold": 76,
"liked": false,
"liked_count": 388,
"view_count": null,
"catid": 100010,
"brand": "Daikin",
"cmt_count": 28,
"flag": 917506,
"cb_option": 0,
"item_status": "normal",
"price": 534900000000,
"price_min": 534900000000,
"price_max": 534900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
28,
0,
0,
0,
0,
28
],
"rcount_with_context": 11,
"rcount_with_image": 10
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": true,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 534900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 62651261331,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 534900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 76,
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_display_sold_count": 76,
"display_sold_count_text": "76"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "INDO COOL Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 515337882,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWib0uqvRwIv2HjF8FyDD0gN+KpLvBZFQdQ5X4I7CNg21wFST+TeKEg7Spvqu4YKtzJr6oH2/2WrAu8VE36W5oH2xCkFtDkQntVcTFqsevcA603WOIHyoh8ceuFVpGmmAWoNNAS66Ts8qLYnWigW8P1/gerYS7Sj/CnuuZoD8VBfcAoEBzbit82aEOwKiKoUo7juM09hQ83PU+xoeNRzVWeRj6slFxtFBBpxti5PPYJMC7tf829kJBryJxzKeXgGPC4vOYKhcmgWbrRqITBT2CBnYBmgn2cKkzkCf7qVTSQfuY7XlmXKr1VByHBax44LzqfL9f4l+g850eov7VwdH2Bk4ujabGjMivEshsFeawZcMXTWa6ZlVRJeST0WJvJRHuCQ57O76rW+1vsugcI+Cvuuv12DW8rTUWyrX8Bi0mufsuP7oaz6geMvVtr2F1eik9d9FQaXwQ6dLvBpN3UR17MH4QAazSwQ4vHNWWRhOQ3b3gA==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EJrd3fUBGKa4ucIBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYjB1cXZSd0l2MkhqRjhGeUREMGdOK0twTHZCWkZRZFE1WDRJN0NOZzIxd0ZTVCtUZUtFZzdTcHZxdTRZS3R6SnI2b0gyLzJXckF1OFZFMzZXNW9IMnhDa0Z0RGtRbnRWY1RGcXNldmNBNjAzV09JSHlvaDhjZXVGVnBHbW1BV29OTkFTNjZUczhxTFluV2lnVzhQMS9nZXJZUzdTai9DbnV1Wm9EOFZCZmNBb0VCemJpdDgyYUVPd0tpS29VbzdqdU0wOWhRODNQVSt4b2VOUnpWV2VSajZzbEZ4dEZCQnB4dGk1UFBZSk1DN3RmODI5a0pCcnlKeHpLZVhnR1BDNHZPWUtoY21nV2JyUnFJVEJUMkNCbllCbWduMmNLa3prQ2Y3cVZUU1FmdVk3WGxtWEtyMVZCeUhCYXg0NEx6cWZMOWY0bCtnODUwZW92N1Z3ZEgyQms0dWphYkdqTWl2RXNoc0ZlYXdaY01YVFdhNlpsVlJKZVNUMFdKdkpSSHVDUTU3Tzc2clcrMXZzdWdjSStDdnV1djEyRFc4clRVV3lyWDhCaTBtdWZzdVA3b2F6NmdlTXZWdHIyRjFlaWs5ZDlGUWFYd1E2ZEx2QnBOM1VSMTdNSDRRQWF6U3dRNHZITldXUmhPUTNiM2dBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABlOjMwd8K6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAACAyraU/iQ17FK5H4XqUP5ENUrgeheP8AUGhDQAAAIAjG1xB+A2AgJrUyA+wDp/khOcB4g4Mqo0Gx40G1Y4G8JAGyA8d4hmgCkVtb3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0ek9UTXhORGMxT1RNMk16WTFPREF5TlN3dE1Td3RNU3d3TGpZME16STNORGc1TWpVMk16SXhNVEVzTXpBdU5UZzBNRE00TkRnNE5EZ3pNamcwTERBdU5EazBPRGc0TXpBeU5qTXlOVFU1TEMweEhaZGZ1MHNnamRuQkF5MmFtWmsrTlFBQWdEOUtEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJOFBmaEJCRUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DUEQzNFFRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJwMnZ6TzlYdUgrTUJ4QUFBQXdBUkFCVDk1QUFBQW9GK3pBVCtCQVFBQUFDQjg1WFpCaVFFQUFBQkEwT3hxUVpFQkFBQUFJUEl0Z2tHWkFRQUFBRUFCNlg1Qm9RRUFBQUJBcGl4eVFha0JBQUFBd05PS2lFSG9BUUdBQXBRRGlnSStNQzR3TURRd05UUXNNUzR3TURBd01EQXNNUzR3TURBd01EQXNNUzR4T0RRNE5ERXNNUzR4T0RRNE5ERXNNUzR4T0RRNE5ERXNNUzR5TmpFNE9EYVpBak16TXpNek05TS9vUUt0N3pSNHdrbkJRY0VDMnZ6TzlYdUgrTURLQWdzSUFSSGEvTTcxZTRmNHdNb0NDd2dDRVFBQUFBQUFBQUNBMlFMZzluSEE1ZVJUUWVFQ2dPZmQvMHhrVGtIcEFqblhQWHA3WHFCQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvdVFQTTFRd25IdXpqUDhFRE45S0tXU0RoNVQvSkE3V3F3YjJ6V3VnLzBRUExWbU5SUzFIdFA0RUVBQUFBd0hnd0FUK0pCQUFBQUVCT2V2MCtrQVNiQTVnRWhKaWhvUE1Eb0FUdjBMSHhBcWdFZ0pUcjNBTzRCSkhEdVd2QUJJQ1U2OXdEeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFBQ3BtbkEvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBT0FiOWZJL3VRVUFBQURnRy9YeVA4RUZBQUFBNEJ2MThqL0pCUUFBQUtDdk1QUS/qGQILFfIZAs0I+hmSBgpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2Fkcwr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8xNzk2NTI5NzgyCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNLAfwIKAgKiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 1796529782,
"shopid": 117080411,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":2344235,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"590c9065599f87be49cb80de34c2f90f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[71,22,1059152,1059154,822059908662278,844931046478970,844931064601283,844931026694327,1400285055,1015914,700190087,822120592853526,2018618,2018619,1012763,1012729,298893311,298463379,2153644,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":62651261331,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":2344235,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"590c9065599f87be49cb80de34c2f90f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[71,22,1059152,1059154,822059908662278,844931046478970,844931064601283,844931026694327,1400285055,1015914,700190087,822120592853526,2018618,2018619,1012763,1012729,298893311,298463379,2153644,2213652,2008656,298468389],\"merge_rank\":0,\"model_id\":62651261331,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8EJrd3fUBGKa4ucIBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYjB1cXZSd0l2MkhqRjhGeUREMGdOK0twTHZCWkZRZFE1WDRJN0NOZzIxd0ZTVCtUZUtFZzdTcHZxdTRZS3R6SnI2b0gyLzJXckF1OFZFMzZXNW9IMnhDa0Z0RGtRbnRWY1RGcXNldmNBNjAzV09JSHlvaDhjZXVGVnBHbW1BV29OTkFTNjZUczhxTFluV2lnVzhQMS9nZXJZUzdTai9DbnV1Wm9EOFZCZmNBb0VCemJpdDgyYUVPd0tpS29VbzdqdU0wOWhRODNQVSt4b2VOUnpWV2VSajZzbEZ4dEZCQnB4dGk1UFBZSk1DN3RmODI5a0pCcnlKeHpLZVhnR1BDNHZPWUtoY21nV2JyUnFJVEJUMkNCbllCbWduMmNLa3prQ2Y3cVZUU1FmdVk3WGxtWEtyMVZCeUhCYXg0NEx6cWZMOWY0bCtnODUwZW92N1Z3ZEgyQms0dWphYkdqTWl2RXNoc0ZlYXdaY01YVFdhNlpsVlJKZVNUMFdKdkpSSHVDUTU3Tzc2clcrMXZzdWdjSStDdnV1djEyRFc4clRVV3lyWDhCaTBtdWZzdVA3b2F6NmdlTXZWdHIyRjFlaWs5ZDlGUWFYd1E2ZEx2QnBOM1VSMTdNSDRRQWF6U3dRNHZITldXUmhPUTNiM2dBPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABlOjMwd8K6QEAAACgxB3xP/EBAAAAAGWb8T/IDA/gDAHpDAAAACAyraU/iQ17FK5H4XqUP5ENUrgeheP8AUGhDQAAAIAjG1xB+A2AgJrUyA+wDp/khOcB4g4Mqo0Gx40G1Y4G8JAGyA8d4hmgCkVtb3dMak1zTFRFc0xURXNMVEVzTFRFc01DNHpMREVzTUM0ek9UTXhORGMxT1RNMk16WTFPREF5TlN3dE1Td3RNU3d3TGpZME16STNORGc1TWpVMk16SXhNVEVzTXpBdU5UZzBNRE00TkRnNE5EZ3pNamcwTERBdU5EazBPRGc0TXpBeU5qTXlOVFU1TEMweEhaZGZ1MHNnamRuQkF5MmFtWmsrTlFBQWdEOUtEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJOFBmaEJCRUFBQUFBQUFBQUFGSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DUEQzNFFRUkFBQUFBQUFBQUFCU0RnaXE4NVlERVFBQUFBQUFBQUFBVWc0SXJQT1dBeEVBQUFBQUFBQUFBRklPQ0t2emxnTVJBQUFBQUFBQUFBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQmlFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQmlEZ2p3OStFRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJwMnZ6TzlYdUgrTUJ4QUFBQXdBUkFCVDk1QUFBQW9GK3pBVCtCQVFBQUFDQjg1WFpCaVFFQUFBQkEwT3hxUVpFQkFBQUFJUEl0Z2tHWkFRQUFBRUFCNlg1Qm9RRUFBQUJBcGl4eVFha0JBQUFBd05PS2lFSG9BUUdBQXBRRGlnSStNQzR3TURRd05UUXNNUzR3TURBd01EQXNNUzR3TURBd01EQXNNUzR4T0RRNE5ERXNNUzR4T0RRNE5ERXNNUzR4T0RRNE5ERXNNUzR5TmpFNE9EYVpBak16TXpNek05TS9vUUt0N3pSNHdrbkJRY0VDMnZ6TzlYdUgrTURLQWdzSUFSSGEvTTcxZTRmNHdNb0NDd2dDRVFBQUFBQUFBQUNBMlFMZzluSEE1ZVJUUWVFQ2dPZmQvMHhrVGtIcEFqblhQWHA3WHFCQmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvdVFQTTFRd25IdXpqUDhFRE45S0tXU0RoNVQvSkE3V3F3YjJ6V3VnLzBRUExWbU5SUzFIdFA0RUVBQUFBd0hnd0FUK0pCQUFBQUVCT2V2MCtrQVNiQTVnRWhKaWhvUE1Eb0FUdjBMSHhBcWdFZ0pUcjNBTzRCSkhEdVd2QUJJQ1U2OXdEeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFBQ3BtbkEvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBT0FiOWZJL3VRVUFBQURnRy9YeVA4RUZBQUFBNEJ2MThqL0pCUUFBQUtDdk1QUS/qGQILFfIZAs0I+hmSBgpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoNCgdpc192c2t1EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA2Fkcwr8AQoTZW5naW5lZXJpbmdfbWV0cmljcxLkASLhAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0MCwiYXBpMl9sYXRlbmN5X21zIjo4MywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI3LCJhcGkwX2Fkc19jb3VudCI6Mjc5LCJhcGkxX2Fkc19jb3VudCI6MTU0NSwiYXBpMl9hZHNfY291bnQiOjMxNywiYXBpM19hZHNfY291bnQiOjMwfQohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF8xNzk2NTI5NzgyCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAofChByZWNhbGxfcXVldWVfaWRzEgsiCTYxMTAxMDEwNLAfwIKAgKiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_1796529782",
"debug_info": null
},
{
"item_basic": {
"itemid": 16995576979,
"shopid": 727701368,
"name": "GREE AC 1/2 PK Inverter F5S Series - ac 1/2 pk - GWC-05F5S - With Smart Cleaner System & Power Drop",
"label_ids": [
1002164,
844931064601283,
1015914,
700190087,
1400285055,
1918643,
1823711,
1059152,
1049122,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
1400620020,
298813370,
2018618,
1993653,
1718087960,
1428713,
1012729,
298933384,
1718093079,
298463379,
2153644,
700830032,
844931086908638,
2213652,
2068629,
298938357,
2008656,
1718088045,
298938368,
2098629,
2098628,
298468389
],
"image": "id-11134207-8224q-mgneve3ia0p570",
"images": [
"id-11134207-8224q-mgneve3ia0p570",
"id-11134201-7qul1-lk4zlxid5lia51",
"id-11134201-7qul7-lk4zlxp0vuoy34",
"id-11134201-7quky-lk4zlya4101r9b",
"id-11134201-7qul2-lk4zlymliqf79e",
"id-11134201-7qul0-lk4zlyvr5bwf46",
"id-11134201-7qul6-lk4zlz38uddv74"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1691554477,
"sold": 5,
"historical_sold": 64,
"liked": false,
"liked_count": 252,
"view_count": null,
"catid": 100010,
"brand": "Gree",
"cmt_count": 24,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 500900000000,
"price_min": 500900000000,
"price_max": 500900000000,
"price_min_before_discount": 659900000000,
"price_max_before_discount": 659900000000,
"hidden_price_display": null,
"price_before_discount": 659900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-24%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "c3fc0cf9a6d0d0f1861059ae566473b3",
"thumb_url": "90e391017187313554fb8b6434909d5c",
"duration": 48,
"version": 2,
"vid": "id-11110105-6jt7d-lkht80p6zfdl33",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6jt7d-lkht80p6zfdl33.16003251726847684.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt7d-lkht80p6zfdl33.16003251726847684.mp4",
"width": 720,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt7d-lkht80p6zfdl33.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.916666666666667,
"rating_count": [
24,
0,
0,
0,
2,
22
],
"rcount_with_context": 7,
"rcount_with_image": 9
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp1,6JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 225743330361345,
"price": 499900000000,
"strikethrough_price": 659900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1326486502916096,
"discount_text": "-24%",
"model_id": 138703537346,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1326486502916096,
"voucher_code": "EURENEW1",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1767589200,
"end_time": 1774976340,
"valid_duration": null
},
"groups": [],
"min_spend": 0
},
"recommended_platform_voucher_info": null,
"original_price": 659900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 64,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 64,
"display_sold_count_text": "64"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp1,7JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Eroc Electronic Indonesia",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 541210552,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyC+olSpYW5XyZ4RDjupBRh3ODgBXTAivupJpInhE1qjTUPyZxg/VqMCvOxuMLDHB3XA946CGOIbNC2oz3EtFDNHMzR6QyH44ayWWo3uDzFq9ofZmM5iS7a2EAe2Q2H+ddrWLvKEWV05dJtCF7ofHp3KHgRWJuLvlPIlBRlqcWOwjSikivR3+6mq8/+OilzSuesyZLfqm4XiXSJZz4VmEuEWQn0hp8+WOf/+nLSS3fqSxI1lijJ5nADRRUZUwZe3mAlHO6KHgi+WaHJjU6ZZiop9Nbw+8GVS4ETniCHJUWOWjIT0yKelzt0rf0Nozs2o8cP0WwFS300+BhW1fw4E9JvYVxsZD/VK22k01STk5iX0ADqjvo4AqW0KgfMFe1kpDHvVpAlV28jCyuh00DoL6junfNBWlbK74piitGbiiQ0BmQmqAJ0FNWzwUIC83V9owlC13+3C3QiWCw39o+dh8dWg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELjviIICGLvvxcgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2xDMTMrM0MzUWlXQ3czOW8rZGg4ZFdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABsuqAgqoE6QEAAADglSXxP/EBAAAAAIpK8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgMDojQ6wDsSyvfYB4g4Mqo0Gx40G1Y4G8JAGyA8e4hmwCkVtSXdMalUwTmpRNExDMHhMQzB4TEMweExDMHhMREF1TlRVeUxERXNNQzQyTnprMk5UVTRNamM1TlRZeE16UTRMREF1T1N3dE1Td3dMalF5TWpBNE1UazJNREl4TVRNME9UYzFMQzB4TERBdU5UZ3hOVFUxTWprMU56TTFPVFkzTWl3dE1SM2lMOXhMSUk2dTRnWXRIZVlMUHpVQUFJQS9PZXFRKzNGcWl1VkJRYTh0R3Q1d25rRkNTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVlnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9jUUFBQUtCak9SUS9lUUFBQU1BVHF2TStnUUVBQUFDQXJzQ0RRWWtCQUFBQVlEVlRTRUdSQVFBQUFOYmhSWVZCbVFFQUFBQkFoYXFLUWFFQkFBQUFvRjFyVUVHcEFRQUFBUFR3dDR4QjZBRUJnQUtVQTRvQ1BqQXVNREEwT1RFeExERXVNREF3TURBd0xERXVNREF3TURBd0xERXVNVGMxTWpNd0xERXVNVGMxTWpNd0xERXVNakF6TlRJMUxERXVNamcwTmpJem1RSkVpMnpuKzZuaFA2RUNyZTgwZU1KSndVSEtBZ3NJQWhIN3FmSFNUV0p3djhvQ0N3Z0JFYUhiU3hxamRaUy8yUUlBeXZmUWV4ZG1RZUVDUVA4K1ZHVXlMMEhwQWpOL0tLUzBMNlJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUVBxa1B0eGFvcmxRYUVEcnkwYTNuQ2VRVUs1QS9ibmZYTnpZZVUvd1FPL2xES2N2VkxuUDhrRHo1dXBaYmNBNmovUkF6TkVCL2lZbXU0LytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFQNkF3MEtDVTl5WkdWeVZHbGxjaEFDK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFPQkJBQUFBS0JQckJBL2lRUUFBQURneEtVTFA1QUVtd09ZQktqUm5kWDNVNkFFZ1BLTHFBbW9CSUR5aTZnSndBU0E4b3VvQ2NrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQWdWaDEwUDZFRkFBQUFBQUFBOEQrcEJRQUFBQUFBQVBBL3NRVUFBQUFndnMzeVA3a0ZBQUFBSUw3TjhqL0JCUUFBQU9DalFmTS95UVVBQUFEQTBJMzBQdz096hkEt03ETfoZkwYKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzE2OTk1NTc2OTc5sB+AgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0jIPgE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": null
},
"itemid": 16995576979,
"shopid": 727701368,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgneve3ia0p570\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,844931064601283,1015914,700190087,1400285055,1918643,1823711,1059152,1049122,822059908662278,825465608499232,825465608497696,837860934119952,1400620020,298813370,2018618,1993653,1718087960,1428713,1012729,298933384,1718093079,298463379,2153644,700830032,844931086908638,2213652,2068629,298938357,2008656,1718088045,298938368,2098629,2098628,298468389],\"merge_rank\":0,\"model_id\":138703537346,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mgneve3ia0p570\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,844931064601283,1015914,700190087,1400285055,1918643,1823711,1059152,1049122,822059908662278,825465608499232,825465608497696,837860934119952,1400620020,298813370,2018618,1993653,1718087960,1428713,1012729,298933384,1718093079,298463379,2153644,700830032,844931086908638,2213652,2068629,298938357,2008656,1718088045,298938368,2098629,2098628,298468389],\"merge_rank\":0,\"model_id\":138703537346,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYzMDc3NHw2MTk5NTd8NjAyOTIzfDYzNTc1Mnw2MDA0MDZ8NjM0NzUwfDYyMDk3OXw2MDkzMDR8NjIzNTAzfDU0Nzc4NHw1OTcwOTh8NTkzNjI3fDU2OTA0MHw2Mjk0NjB8NTQ0NTUxfDYxODM3Nnw0NDI2Mzd8NTA1NzkwfDUzODc1NHw1MjY1MDh8NjA5MTM5fDU1NjYwN3w2Mjc2Njd8NTM0MTc4fDU3ODg3N3w1NTQwMDB8NTk2NzU0fDU4MDc4M3w2MDg5OTl8NTAwNTM1fDU0NDU2MXw1OTc4ODN8NjEzODU5fDYxMzQyMnw1NTQ3OTZ8NjMxNTQ5fDYzNTc5MHw1MzIzNjB8NjAzMzMxfDU3MDQ2Nnw2MjAyMTN8NjM0NzIxfDUyNzQyOXw2MDU0Njd8NTgwNzgyfDU0NDUwNHw2MDkyODh8ELjviIICGLvvxcgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeUMrb2xTcFlXNVh5WjRSRGp1cEJSaDNPRGdCWFRBaXZ1cEpwSW5oRTFxalRVUHlaeGcvVnFNQ3ZPeHVNTERIQjNYQTk0NkNHT0liTkMyb3ozRXRGRE5ITXpSNlF5SDQ0YXlXV28zdUR6RnE5b2ZabU01aVM3YTJFQWUyUTJIK2RkcldMdktFV1YwNWRKdENGN29mSHAzS0hnUldKdUx2bFBJbEJSbHFjV093alNpa2l2UjMrNm1xOC8rT2lselN1ZXN5WkxmcW00WGlYU0paejRWbUV1RVdRbjBocDgrV09mLytuTFNTM2ZxU3hJMWxpako1bkFEUlJVWlV3WmUzbUFsSE82S0hnaStXYUhKalU2Wlppb3A5TmJ3KzhHVlM0RVRuaUNISlVXT1dqSVQweUtlbHp0MHJmME5venMybzhjUDBXd0ZTMzAwK0JoVzFmdzRFOUp2WVZ4c1pEL1ZLMjJrMDFTVGs1aVgwQURxanZvNEFxVzBLZ2ZNRmUxa3BESHZWcEFsVjI4akN5dWgwMERvTDZqdW5mTkJXbGJLNzRwaWl0R2JpaVEwQm1RbXFBSjBGTld6d1VJQzgzVjlvd2xDMTMrM0MzUWlXQ3czOW8rZGg4ZFdnPT1IMlKkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc5Ljk3X3tiMTFiYTNhZjQ4NTU3Y2ExYzc5NTBhZWQ3MGI3MWMwMDowMjAwMDAyNjdjOWFlNzlkOjAxMDAwMTg4MTcxNDhmYmF9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYzMzMyNDcxODAxcXsUrkfhepQ/ggEJYWMgd2luZG93kAGlu53LBuABsuqAgqoE6QEAAADglSXxP/EBAAAAAIpK8j/IDA/gDAHpDAAAAMD+eKk/iQ17FK5H4XqUP5ENexSuR+F6lD+hDQAAAAAAAPA/+A2AgMDojQ6wDsSyvfYB4g4Mqo0Gx40G1Y4G8JAGyA8e4hmwCkVtSXdMalUwTmpRNExDMHhMQzB4TEMweExDMHhMREF1TlRVeUxERXNNQzQyTnprMk5UVTRNamM1TlRZeE16UTRMREF1T1N3dE1Td3dMalF5TWpBNE1UazJNREl4TVRNME9UYzFMQzB4TERBdU5UZ3hOVFUxTWprMU56TTFPVFkzTWl3dE1SM2lMOXhMSUk2dTRnWXRIZVlMUHpVQUFJQS9PZXFRKzNGcWl1VkJRYTh0R3Q1d25rRkNTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENLcnpsZ01RQUZvSENLenpsZ01RQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVlnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9jUUFBQUtCak9SUS9lUUFBQU1BVHF2TStnUUVBQUFDQXJzQ0RRWWtCQUFBQVlEVlRTRUdSQVFBQUFOYmhSWVZCbVFFQUFBQkFoYXFLUWFFQkFBQUFvRjFyVUVHcEFRQUFBUFR3dDR4QjZBRUJnQUtVQTRvQ1BqQXVNREEwT1RFeExERXVNREF3TURBd0xERXVNREF3TURBd0xERXVNVGMxTWpNd0xERXVNVGMxTWpNd0xERXVNakF6TlRJMUxERXVNamcwTmpJem1RSkVpMnpuKzZuaFA2RUNyZTgwZU1KSndVSEtBZ3NJQWhIN3FmSFNUV0p3djhvQ0N3Z0JFYUhiU3hxamRaUy8yUUlBeXZmUWV4ZG1RZUVDUVA4K1ZHVXlMMEhwQWpOL0tLUzBMNlJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUVBxa1B0eGFvcmxRYUVEcnkwYTNuQ2VRVUs1QS9ibmZYTnpZZVUvd1FPL2xES2N2VkxuUDhrRHo1dXBaYmNBNmovUkF6TkVCL2lZbXU0LytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFQNkF3MEtDVTl5WkdWeVZHbGxjaEFDK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFPQkJBQUFBS0JQckJBL2lRUUFBQURneEtVTFA1QUVtd09ZQktqUm5kWDNVNkFFZ1BLTHFBbW9CSUR5aTZnSndBU0E4b3VvQ2NrRWV4U3VSK0Y2bEQvaEJIc1Vya2ZoZXBRLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQWdWaDEwUDZFRkFBQUFBQUFBOEQrcEJRQUFBQUFBQVBBL3NRVUFBQUFndnMzeVA3a0ZBQUFBSUw3TjhqL0JCUUFBQU9DalFmTS95UVVBQUFEQTBJMzBQdz096hkEt03ETfoZkwYKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNhZHMKHwoQcmVjYWxsX3F1ZXVlX2lkcxILIgk2MTEwMjAzMDQKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAK/AEKE2VuZ2luZWVyaW5nX21ldHJpY3MS5AEi4QF7ImFwaTBfbGF0ZW5jeV9tcyI6NjEsImFwaTFfbGF0ZW5jeV9tcyI6NDAsImFwaTJfbGF0ZW5jeV9tcyI6ODMsImFwaTNfbGF0ZW5jeV9tcyI6MSwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjoyNywiYXBpMF9hZHNfY291bnQiOjI3OSwiYXBpMV9hZHNfY291bnQiOjE1NDUsImFwaTJfYWRzX2NvdW50IjozMTcsImFwaTNfYWRzX2NvdW50IjozMH0KDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzE2OTk1NTc2OTc5sB+AgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0jIPgE=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_16995576979",
"debug_info": null
},
{
"item_basic": {
"itemid": 26473237909,
"shopid": 650416133,
"name": "AC WINDOW REIWA CW-0501RA 0.5 PK - 1 PK GARANSI RESMI",
"label_ids": [
844931064601283,
298463379,
1059154,
1059152,
822059908662278,
825465608499232,
1718093079,
1213641,
2018619,
1015914,
700190087,
825465608497696,
822120592853526,
2023641,
298933384,
1400285055,
825465608492064,
2048661,
2048660,
700765096,
2108629,
298468389,
1718093084,
1718088045,
298458396,
298458398,
1718088044,
298468390
],
"image": "id-11134207-7ra0u-mcxe88k5n9a081",
"images": [
"id-11134207-7ra0u-mcxe88k5n9a081",
"id-11134207-7ra0h-mcxe88k5onug0a",
"id-11134207-7ra0m-mcxe88k5q2ewf4",
"id-11134207-7ra0r-mcxe88k5rgzc5d",
"id-11134207-7ra0r-mcxe88k5svjsa7",
"id-11134207-7ra0j-mcxe88k5ua48f7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1736572414,
"sold": 7,
"historical_sold": 110,
"liked": false,
"liked_count": 82,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 38,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Type",
"options": [
"ac reiwa 0,5 1/2pk",
"ac reiwa 1pk",
"1/2pk + pemasangan",
"1pk + pemasangan"
],
"images": [
"id-11134207-7ra0h-mcxe88k5onug0a",
"id-11134207-7ra0r-mcxe88k5svjsa7",
"id-11134207-7ra0s-mcxe88k5yhtk3a",
"id-11134207-7ra0i-mcxe88k5x394d9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.842105263157895,
"rating_count": [
38,
1,
0,
0,
2,
35
],
"rcount_with_context": 13,
"rcount_with_image": 6
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 49509974755,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 110,
"rounded_local_monthly_sold_count": 7,
"local_monthly_sold_count_text": "7",
"rounded_display_sold_count": 110,
"display_sold_count_text": "110"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Pelangi_Elektronik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
1000,
1000,
91,
97,
0,
1000,
4
]
},
"itemid": 26473237909,
"shopid": 650416133,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0u-mcxe88k5n9a081\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1059154,1059152,822059908662278,825465608499232,1718093079,1213641,2018619,1015914,700190087,825465608497696,822120592853526,2023641,298933384,1400285055,825465608492064,2048661,2048660,700765096,2108629,298468389,1718093084,1718088045,298458396,298458398,1718088044,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":269,\"model_id\":49509974755,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,91,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0u-mcxe88k5n9a081\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1059154,1059152,822059908662278,825465608499232,1718093079,1213641,2018619,1015914,700190087,825465608497696,822120592853526,2023641,298933384,1400285055,825465608492064,2048661,2048660,700765096,2108629,298468389,1718093084,1718088045,298458396,298458398,1718088044,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":269,\"model_id\":49509974755,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,91,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26473237909",
"debug_info": null
},
{
"item_basic": {
"itemid": 28116595327,
"shopid": 85961994,
"name": "REIWA AC Window 1 PK CW-0901RA AC Low Watt 1PK",
"label_ids": [
13,
38,
39,
47,
1000501,
1000509,
1400095067,
1400285005,
844931064601283,
1400066568,
1718093079,
837860934119952,
834403089593352,
822059908662278,
822120592853526,
1918643,
1015914,
700190087,
1000031,
825465608499232,
825465608494624,
1428713,
1718087960,
2018618,
2018619,
700005490,
1012729,
1400285055,
825465608497696,
700005495,
2153644,
2108629,
1400025118,
2213652,
298463379,
1049120,
1059152,
1049122,
2008656,
1718088046,
1718093085,
1718088045,
700585042,
298468389,
997921049,
997921050
],
"image": "id-11134207-7rase-m31ugagzh1apf6",
"images": [
"id-11134207-7rase-m31ugagzh1apf6",
"id-11134207-7rasj-m27uagbz4u3n24",
"sg-11134201-7renp-m27tk33g5due96",
"sg-11134201-7renf-m27tk3dpoyt78e",
"sg-11134201-7req4-m27tk41aqgg02e",
"id-11134207-7rasa-m27uagbz68o3ce",
"id-11134207-7rasc-m27uagbz7n8jca",
"id-11134207-7rasi-m27uagbz91sz4e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730791925,
"sold": 3,
"historical_sold": 34,
"liked": false,
"liked_count": 58,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 15,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 214900000000,
"price_min": 214900000000,
"price_max": 214900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke18-m2bzhfqmsjpca8.16000081731042310.mp4",
"thumb_url": "id-11110105-7rasd-m2bzhjv2t2rk92",
"duration": 55,
"version": 2,
"vid": "id-11110105-6ke18-m2bzhfqmsjpca8",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke18-m2bzhfqmsjpca8.16000081731042310.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke18-m2bzhfqmsjpca8.16000081731042310.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke18-m2bzhfqmsjpca8.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Ukuran",
"options": [
"0.5 PK",
"1 PK"
],
"images": [
"id-11134207-7rask-m27uagbzagdf40",
"id-11134207-7rasl-m27uagbzbuxvb9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.866666666666666,
"rating_count": [
15,
0,
0,
0,
2,
13
],
"rcount_with_context": 7,
"rcount_with_image": 4
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 214900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 246955333674,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 214900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 34,
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_display_sold_count": 34,
"display_sold_count_text": "34"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": " Sajun Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
1000,
1000,
97,
0,
1000,
4
]
},
"itemid": 28116595327,
"shopid": 85961994,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m31ugagzh1apf6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,837860934119952,834403089593352,822059908662278,822120592853526,1918643,1015914,700190087,1000031,825465608499232,825465608494624,1428713,1718087960,2018618,2018619,700005490,1012729,1400285055,825465608497696,700005495,2153644,2108629,1400025118,2213652,298463379,1049120,1059152,1049122,2008656,1718088046,1718093085,1718088045,700585042,298468389,997921049,997921050],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2231,\"model_id\":246955333674,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m31ugagzh1apf6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1718093079,837860934119952,834403089593352,822059908662278,822120592853526,1918643,1015914,700190087,1000031,825465608499232,825465608494624,1428713,1718087960,2018618,2018619,700005490,1012729,1400285055,825465608497696,700005495,2153644,2108629,1400025118,2213652,298463379,1049120,1059152,1049122,2008656,1718088046,1718093085,1718088045,700585042,298468389,997921049,997921050],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2231,\"model_id\":246955333674,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28116595327",
"debug_info": null
},
{
"item_basic": {
"itemid": 24471362274,
"shopid": 38711361,
"name": "REIWA AC Window 0501RA 1/2 PK CW-0501RA 0,5 PK",
"label_ids": [
844931064601283,
1213641,
1718093079,
1015914,
700190087,
1000031,
1400285055,
2018619,
2023641,
1059154,
1059152,
822059908662278,
825465608492064,
825465608499232,
825465608497696,
837860934119952,
298463379,
844931086908638,
2048660,
2048661,
2068629,
298938357,
2108629,
2098629,
1718088044,
1718088045,
298468390,
298938368,
2098628,
298458398,
298468389,
298458396,
1718093084
],
"image": "id-11134207-7r991-ltf02zrgl0rn7e",
"images": [
"id-11134207-7r991-ltf02zrgl0rn7e",
"id-11134207-7r990-lygszf1ks8io50",
"id-11134207-7r98t-lygszf1ktn3452",
"id-11134207-7r98t-lygszf1kv1nk9b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1711612105,
"sold": 2,
"historical_sold": 61,
"liked": false,
"liked_count": 61,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 15,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke14-lygsxzfob1hh9f.16000081722617020.mp4",
"thumb_url": "id-11110105-7r98r-lygsy0t2b4ac06",
"duration": 34,
"version": 2,
"vid": "id-11110105-6ke14-lygsxzfob1hh9f",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke14-lygsxzfob1hh9f.default.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lygsxzfob1hh9f.default.mp4",
"width": 478,
"height": 850
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lygsxzfob1hh9f.default.mp4",
"width": 478,
"height": 850
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.913043478260869,
"rating_count": [
23,
0,
0,
0,
2,
21
],
"rcount_with_context": 6,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp649RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 217400997157,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 61,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 61,
"display_sold_count_text": "61"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp649RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "TERMINAL7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
0,
1000,
1000,
1000
]
},
"itemid": 24471362274,
"shopid": 38711361,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r991-ltf02zrgl0rn7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1718093079,1015914,700190087,1000031,1400285055,2018619,2023641,1059154,1059152,822059908662278,825465608492064,825465608499232,825465608497696,837860934119952,298463379,844931086908638,2048660,2048661,2068629,298938357,2108629,2098629,1718088044,1718088045,298468390,298938368,2098628,298458398,298468389,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":2020,\"model_id\":217400997157,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r991-ltf02zrgl0rn7e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1718093079,1015914,700190087,1000031,1400285055,2018619,2023641,1059154,1059152,822059908662278,825465608492064,825465608499232,825465608497696,837860934119952,298463379,844931086908638,2048660,2048661,2068629,298938357,2108629,2098629,1718088044,1718088045,298468390,298938368,2098628,298458398,298468389,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":2020,\"model_id\":217400997157,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24471362274",
"debug_info": null
},
{
"item_basic": {
"itemid": 26776733596,
"shopid": 1202842051,
"name": "WINDOW PORTABLE Ac 1/2 Pk 1Pk Hemat Tanpa Pipa. Pakai Freon R32 Ac Window 1/2-1Pk",
"label_ids": [
1428713,
1718087960,
844931064601283,
844931086908638,
1718093079,
1400285055,
2018619,
2023641,
1015914,
700190087,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
700830032,
298933384,
2068629,
298938357,
2108629,
298463379,
298468389,
298938368,
1718088045,
2098629,
2098628
],
"image": "id-11134207-7rbk9-m96ovos2nb3vab",
"images": [
"id-11134207-7rbk9-m96ovos2nb3vab",
"id-11134207-7rbk9-m96ovoplkg9qf1",
"id-11134207-7rbka-m96ovopl500ue4",
"id-11134207-7rbk8-m96ovopkpkb19b",
"id-11134207-7rbkc-m96ovopkpk31de",
"id-11134207-7rbkd-m96ovopkpjrye4",
"id-11134207-7rbkb-m96ovoqonxb29f",
"id-11134207-7rbk9-m96ovoqonxmj59",
"id-11134207-7rbk0-m96ovos2lwjf59"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1740016809,
"sold": 0,
"historical_sold": 77,
"liked": false,
"liked_count": 542,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 31,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 198400000000,
"price_min": 198400000000,
"price_max": 198400000000,
"price_min_before_discount": 9999999900000,
"price_max_before_discount": 9999999900000,
"hidden_price_display": null,
"price_before_discount": 9999999900000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": ">90% off",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6knaw-m6g85mqdrgyvac.16000101740015991.mp4",
"thumb_url": "id-11110105-6knaw-m6g85mqdrgyvac_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6knaw-m6g85mqdrgyvac",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knaw-m6g85mqdrgyvac.default.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knaw-m6g85mqdrgyvac.default.mp4",
"width": 540,
"height": 676
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knaw-m6g85mqdrgyvac.default.mp4",
"width": 540,
"height": 676
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "JENIS",
"options": [
"VE 1/2PK"
],
"images": [
"id-11134207-7rbkb-m7q6t4wdw2aqf0"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 3.870967741935484,
"rating_count": [
31,
4,
1,
7,
2,
17
],
"rcount_with_context": 12,
"rcount_with_image": 9
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 355408548217271,
"bundle_deal_label": "Pilih 3, diskon 1%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp658RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 814390400581632,
"price": 197400000000,
"strikethrough_price": 9999999900000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1319336674213908,
"discount_text": ">90% off",
"model_id": 227393871835,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1319336674213908,
"voucher_code": "VARI45954",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1766736420,
"end_time": 1774803540,
"valid_duration": null
},
"groups": [],
"min_spend": 50000000000
},
"recommended_platform_voucher_info": null,
"original_price": 9999999900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 77,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 77,
"display_sold_count_text": "77"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp658RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Variety Electronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
88,
97
]
},
"itemid": 26776733596,
"shopid": 1202842051,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m96ovos2nb3vab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1718093079,1400285055,2018619,2023641,1015914,700190087,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298933384,2068629,298938357,2108629,298463379,298468389,298938368,1718088045,2098629,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":1032,\"model_id\":227393871835,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m96ovos2nb3vab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1718093079,1400285055,2018619,2023641,1015914,700190087,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298933384,2068629,298938357,2108629,298463379,298468389,298938368,1718088045,2098629,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":1032,\"model_id\":227393871835,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26776733596",
"debug_info": null
},
{
"item_basic": {
"itemid": 27168471069,
"shopid": 504365162,
"name": "REIWA AC Window 1/2 PK CW-0501RA / CW-0901RA AC Low Watt 1 PK \"KHUSUS GOJEK\"",
"label_ids": [
1400066568,
1718087960,
1428713,
844931064601283,
822059908662278,
825465608492064,
834403089593352,
1213641,
1000031,
1015914,
700190087,
1400285055,
2018619,
2023641,
822120592853526,
298893311,
1718093079,
700005490,
700005495,
700830032,
298933384,
2048660,
2048661,
700765096,
2068629,
298938357,
298463379,
1049120,
2108629,
1059152,
1049122,
298468389,
298468390,
1718088044,
2098629,
1718093084,
298938368,
298458398,
298458396,
2098628,
1718088045
],
"image": "id-11134207-7rbk6-m766qt6sv92f96",
"images": [
"id-11134207-7rbk6-m766qt6sv92f96",
"id-11134207-7rasl-m2xdof6rsfytb8",
"id-11134207-7ras9-m2xdof71qmcgd7",
"id-11134207-7ras9-m2xdof6rr1ed0e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732337535,
"sold": 1,
"historical_sold": 48,
"liked": false,
"liked_count": 39,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 20,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 200900000000,
"price_min": 200900000000,
"price_max": 200900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Ukuran",
"options": [
"0.5 PK",
"1 PK"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "Varian",
"options": [
"Unit Saja",
"+Jasa Pasang"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.9,
"rating_count": [
20,
0,
0,
0,
2,
18
],
"rcount_with_context": 4,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp669RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 200900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 286250657673,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 200900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 48,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 48,
"display_sold_count_text": "48"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp669RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sajun Electronic Tangerang",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
97
]
},
"itemid": 27168471069,
"shopid": 504365162,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-m766qt6sv92f96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1718087960,1428713,844931064601283,822059908662278,825465608492064,834403089593352,1213641,1000031,1015914,700190087,1400285055,2018619,2023641,822120592853526,298893311,1718093079,700005490,700005495,700830032,298933384,2048660,2048661,700765096,2068629,298938357,298463379,1049120,2108629,1059152,1049122,298468389,298468390,1718088044,2098629,1718093084,298938368,298458398,298458396,2098628,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4195,\"model_id\":286250657673,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-m766qt6sv92f96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1718087960,1428713,844931064601283,822059908662278,825465608492064,834403089593352,1213641,1000031,1015914,700190087,1400285055,2018619,2023641,822120592853526,298893311,1718093079,700005490,700005495,700830032,298933384,2048660,2048661,700765096,2068629,298938357,298463379,1049120,2108629,1059152,1049122,298468389,298468390,1718088044,2098629,1718093084,298938368,298458398,298458396,2098628,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4195,\"model_id\":286250657673,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27168471069",
"debug_info": null
},
{
"item_basic": {
"itemid": 47803663782,
"shopid": 1709284149,
"name": "Reiwa Pendingin Ruangan 1 PK AC Window CW 0901RA",
"label_ids": [
844931086908638,
844931064601283,
1049128,
700005504,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
825465608493600,
1718596,
1718093079,
1718087960,
1428713,
298488495,
299033477,
2213765
],
"image": "sg-11134201-81zwg-mio1xxnw5f601d",
"images": [
"sg-11134201-81zwg-mio1xxnw5f601d",
"sg-11134201-81zw7-mio1xxsmqkg41b",
"sg-11134201-81zup-mio1xy1bjrb569",
"sg-11134201-81zw4-mio1xy9mxsef47",
"sg-11134201-81zv2-mio1xyfjqtq852",
"sg-11134201-81zw6-mio1xyjq054x71",
"sg-11134201-81zvn-mio1xzgkt62sd8",
"sg-11134201-81zvy-mio1xzlbr01s00",
"sg-11134201-81zwq-mio1xzr0lfye06"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766640699,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 79960000000,
"price_min": 79960000000,
"price_max": 79960000000,
"price_min_before_discount": 199900000000,
"price_max_before_discount": 199900000000,
"hidden_price_display": null,
"price_before_discount": 199900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-60%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"1 PK CW 0901RA",
"1/2 PK CW 0501RA"
],
"images": [
"sg-11134201-81zw7-mio1xxsmqkg41b",
"sg-11134201-81zvy-mio1xzlbr01s00"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 825842343673856,
"price": 79960000000,
"strikethrough_price": 199900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-60%",
"model_id": 350348573568,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "s_nb6ntsb6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 47803663782,
"shopid": 1709284149,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwg-mio1xxnw5f601d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049128,700005504,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1718596,1718093079,1718087960,1428713,298488495,299033477,2213765],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":863,\"model_id\":350348573568,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwg-mio1xxnw5f601d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049128,700005504,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1718596,1718093079,1718087960,1428713,298488495,299033477,2213765],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":863,\"model_id\":350348573568,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47803663782",
"debug_info": null
},
{
"item_basic": {
"itemid": 52803652837,
"shopid": 1709284149,
"name": "Reiwa AC Window Air Conditioner 0.5 PK Pendingin Ruangan CW-0501RA",
"label_ids": [
844931064601283,
844931086908638,
1049128,
700005504,
822059908662278,
825465608499232,
825465608497696,
825465608493600,
825465608494624,
1718596,
1718093079,
1428713,
1718087960,
298488495,
2213765,
299033477
],
"image": "sg-11134201-81ztz-mio1th2rpvra02",
"images": [
"sg-11134201-81ztz-mio1th2rpvra02",
"sg-11134201-8225c-mhjsn7eies5h13",
"sg-11134201-8227f-mhjsn7n10oaq88",
"sg-11134201-81ztm-mio1thhtdfd42d",
"sg-11134201-82257-mhjsn7z4fbib41",
"sg-11134201-8225a-mhjsn83aq32925",
"sg-11134201-81ztg-mio1ti0lr9xdd0",
"sg-11134201-81zvp-mio1tibbhts721",
"sg-11134201-81zue-mio1timkxouaaf"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766640490,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 79960000000,
"price_min": 79960000000,
"price_max": 79960000000,
"price_min_before_discount": 199900000000,
"price_max_before_discount": 199900000000,
"hidden_price_display": null,
"price_before_discount": 199900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-60%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Packing",
"options": [
"Packing Kayu",
"Bubble Wrap"
],
"images": [
"sg-11134201-81ztz-mio1th2rpvra02",
"sg-11134201-81ztz-mio1th2rpvra02"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 825842343673856,
"price": 79960000000,
"strikethrough_price": 199900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-60%",
"model_id": 310349142119,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "s_nb6ntsb6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000
]
},
"itemid": 52803652837,
"shopid": 1709284149,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztz-mio1th2rpvra02\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049128,700005504,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1718596,1718093079,1428713,1718087960,298488495,2213765,299033477],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":774,\"model_id\":310349142119,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztz-mio1th2rpvra02\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049128,700005504,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1718596,1718093079,1428713,1718087960,298488495,2213765,299033477],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":774,\"model_id\":310349142119,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52803652837",
"debug_info": null
},
{
"item_basic": {
"itemid": 1230087492,
"shopid": 31400119,
"name": "AC REIWA AC Window 1/2 PK CW-0501RA 0,5 PK",
"label_ids": [
1000167,
71,
22,
844931026694327,
844931064601283,
844931046478970,
1400285055,
1015914,
700190087,
1400066568,
1000031,
1918643,
2018619,
298463379,
1718093079,
844931086908638,
2023641,
700810080,
700005510,
700005490,
822059908662278,
825465608497696,
822120592853526,
825465608499232,
834403089593352,
2108629,
1718088045,
298468389
],
"image": "id-11134207-7r990-lwce8p94o4221a",
"images": [
"id-11134207-7r990-lwce8p94o4221a",
"id-11134207-7r98t-lwce8p94pimi37",
"id-11134207-7r992-lwce8p94qx6ybd",
"id-11134207-7r991-lwce8p94sbrec4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1528391270,
"sold": 2,
"historical_sold": 175,
"liked": false,
"liked_count": 1031,
"view_count": null,
"catid": 100010,
"brand": "Maspion",
"cmt_count": 93,
"flag": 983042,
"cb_option": 0,
"item_status": "normal",
"price": 194990000000,
"price_min": 194990000000,
"price_max": 194990000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.510416666666667,
"rating_count": [
96,
1,
4,
6,
19,
66
],
"rcount_with_context": 59,
"rcount_with_image": 42
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": true,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194990000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 47314785155,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194990000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 175,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 175,
"display_sold_count_text": "175"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "multielektronik1",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
88,
0,
1000
]
},
"itemid": 1230087492,
"shopid": 31400119,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lwce8p94o4221a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,71,22,844931026694327,844931064601283,844931046478970,1400285055,1015914,700190087,1400066568,1000031,1918643,2018619,298463379,1718093079,844931086908638,2023641,700810080,700005510,700005490,822059908662278,825465608497696,822120592853526,825465608499232,834403089593352,2108629,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":1391,\"model_id\":47314785155,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lwce8p94o4221a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,71,22,844931026694327,844931064601283,844931046478970,1400285055,1015914,700190087,1400066568,1000031,1918643,2018619,298463379,1718093079,844931086908638,2023641,700810080,700005510,700005490,822059908662278,825465608497696,822120592853526,825465608499232,834403089593352,2108629,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":1391,\"model_id\":47314785155,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_1230087492",
"debug_info": null
},
{
"item_basic": {
"itemid": 24116650512,
"shopid": 1175700092,
"name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK",
"label_ids": [
1015914,
700190087,
1428713,
1718087960,
1400285055,
1718093079,
822059908662278,
822120592853526,
1918643,
1000031,
2018618,
700700063,
1012729,
1400066568,
298893311,
825465608497696,
298463379,
298933384,
1049127,
1049112,
2153644,
700830032,
1059156,
700005499,
834403089593352,
1059152,
1049122,
2213652,
2068629,
298938357,
825465608499232,
2098629,
298468389,
2098628,
1718088045,
298938368
],
"image": "id-11134207-7rasb-m1rwhgz6rhi439",
"images": [
"id-11134207-7rasb-m1rwhgz6rhi439",
"id-11134207-7rasj-m1rwhgz6q2xo2b",
"id-11134207-7r98y-lt2ax26dhpq15d",
"id-11134207-7r990-lt2ax26dhpll01",
"id-11134207-7r98z-lt2ax26xgwnab3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1709552447,
"sold": 18,
"historical_sold": 307,
"liked": false,
"liked_count": 7085,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 163,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 245400000000,
"price_min": 245400000000,
"price_max": 245400000000,
"price_min_before_discount": 285000000000,
"price_max_before_discount": 285000000000,
"hidden_price_display": null,
"price_before_discount": 285000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-14%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vene-mh7cfm6laznxa1.16000081763450014.mp4",
"thumb_url": "id-11110105-6vene-mh7cfm6laznxa1_cover",
"duration": 15,
"version": 2,
"vid": "id-11110105-6vene-mh7cfm6laznxa1",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vene-mh7cfm6laznxa1.16000081763450014.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vene-mh7cfm6laznxa1.16000081763450014.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vene-mh7cfm6laznxa1.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.796407185628743,
"rating_count": [
167,
2,
1,
6,
11,
147
],
"rcount_with_context": 47,
"rcount_with_image": 45
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": true,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 827329559970816,
"price": 237900000000,
"strikethrough_price": 285000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1332408457510920,
"discount_text": "-14%",
"model_id": 207345483757,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1332408457510920,
"voucher_code": "REIWA2326",
"voucher_discount": 7500000000,
"time_info": {
"start_time": 1768294860,
"end_time": 1769187540,
"valid_duration": null
},
"groups": [],
"min_spend": 70000000000
},
"recommended_platform_voucher_info": null,
"original_price": 285000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 307,
"rounded_local_monthly_sold_count": 18,
"local_monthly_sold_count_text": "18",
"rounded_display_sold_count": 307,
"display_sold_count_text": "307"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Reiwa Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
97,
91,
88,
4
]
},
"itemid": 24116650512,
"shopid": 1175700092,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m1rwhgz6rhi439\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1428713,1718087960,1400285055,1718093079,822059908662278,822120592853526,1918643,1000031,2018618,700700063,1012729,1400066568,298893311,825465608497696,298463379,298933384,1049127,1049112,2153644,700830032,1059156,700005499,834403089593352,1059152,1049122,2213652,2068629,298938357,825465608499232,2098629,298468389,2098628,1718088045,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":417,\"model_id\":207345483757,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97,91,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m1rwhgz6rhi439\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1428713,1718087960,1400285055,1718093079,822059908662278,822120592853526,1918643,1000031,2018618,700700063,1012729,1400066568,298893311,825465608497696,298463379,298933384,1049127,1049112,2153644,700830032,1059156,700005499,834403089593352,1059152,1049122,2213652,2068629,298938357,825465608499232,2098629,298468389,2098628,1718088045,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":417,\"model_id\":207345483757,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97,91,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24116650512",
"debug_info": null
},
{
"item_basic": {
"itemid": 28216339221,
"shopid": 1002016520,
"name": "AC Window Reiwa 1/2PK 0,5PK CW 0501RA Low Watt 5000Btu Refrigerant R32 Praktis Tanpa Instalasi Pipa Direct Cooling",
"label_ids": [
844931064601283,
1400285055,
1213641,
1718087960,
1428713,
1015914,
700190087,
1000031,
2018619,
298893311,
298463379,
2023641,
1059156,
700005499,
822059908662278,
834403089593352,
700830032,
825465608497696,
298933384,
1718093079,
825465608492064,
844931086908638,
700810080,
298458396,
298458398,
298468390,
1718093084,
1718088045,
1718088044,
298468389
],
"image": "id-11134207-7rasb-m23qvkgsfnood6",
"images": [
"id-11134207-7rasb-m23qvkgsfnood6",
"id-11134207-7rash-m23qvkgsfnd509",
"id-11134207-7rasa-m23qvkgsfntm1e",
"id-11134207-7rasm-m23qvkgsfo5925",
"id-11134207-7rasm-m23qvkgsfo4tbe",
"id-11134207-7rask-m23qvkgsfni7c3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730543851,
"sold": 10,
"historical_sold": 272,
"liked": false,
"liked_count": 262,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 124,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 209900000000,
"price_min": 209900000000,
"price_max": 209900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1c-m29mr3czwtibf8.16000081730899831.mp4",
"thumb_url": "id-11110105-7rasb-m29mr5umcu2o40",
"duration": 15,
"version": 2,
"vid": "id-11110105-6ke1c-m29mr3czwtibf8",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1c-m29mr3czwtibf8.16003251747358718.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m29mr3czwtibf8.16003251747358718.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m29mr3czwtibf8.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "PAKING",
"options": [
"STANDARD - INSTANT",
"EXTRA BUBLE WRAP",
"BUBLE + PAKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.846774193548387,
"rating_count": [
124,
1,
0,
3,
9,
111
],
"rcount_with_context": 49,
"rcount_with_image": 34
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 251936674028,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 272,
"rounded_local_monthly_sold_count": 10,
"local_monthly_sold_count_text": "10",
"rounded_display_sold_count": 272,
"display_sold_count_text": "272"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HERIMART ETC",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
91,
88,
97,
4
]
},
"itemid": 28216339221,
"shopid": 1002016520,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m23qvkgsfnood6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1213641,1718087960,1428713,1015914,700190087,1000031,2018619,298893311,298463379,2023641,1059156,700005499,822059908662278,834403089593352,700830032,825465608497696,298933384,1718093079,825465608492064,844931086908638,700810080,298458396,298458398,298468390,1718093084,1718088045,1718088044,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":441,\"model_id\":251936674028,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,91,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m23qvkgsfnood6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1213641,1718087960,1428713,1015914,700190087,1000031,2018619,298893311,298463379,2023641,1059156,700005499,822059908662278,834403089593352,700830032,825465608497696,298933384,1718093079,825465608492064,844931086908638,700810080,298458396,298458398,298468390,1718093084,1718088045,1718088044,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":441,\"model_id\":251936674028,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,91,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28216339221",
"debug_info": null
},
{
"item_basic": {
"itemid": 26568140168,
"shopid": 49654435,
"name": "AC REIWA AC Window Portable 1/2 PK / 1 PK CW-0501RA AC PORTABLE REIWA 1/2 PK / 1 PK [BEST SELLER] [COD] [NEW PRODUCT]",
"label_ids": [
47,
1000167,
844931064601283,
844931086908638,
1718093079,
1213641,
1000031,
1400285055,
1049116,
1049123,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
840990690654214,
840955085144628,
2018619,
700700063,
1015914,
700190087,
298463379,
2023641,
2048661,
2048660,
700765096,
298933384,
2108629,
298623321,
1993623,
998091078,
1718093084,
298458398,
1718088045,
298458396,
298468390,
1718088044,
298468389
],
"image": "id-11134207-7rasj-m2tgb3kdmmmp76",
"images": [
"id-11134207-7rasj-m2tgb3kdmmmp76",
"id-11134207-7rash-m2t3utfrtn7nb5",
"id-11134207-7rasd-m2t3utfrxvbld4",
"id-11134207-7rask-m2t3utfrv26p40",
"id-11134207-7rasi-m2t3utfrtnlw53",
"id-11134207-7rasf-m2t3utfrwgr5f3",
"id-11134207-7rasg-m2t3utfs0ogh2d",
"id-11134207-7rasb-m2t3utfrz9w1aa",
"id-11134207-7rbk9-m7uj8z1xiv2x81"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732079816,
"sold": 3,
"historical_sold": 19,
"liked": false,
"liked_count": 88,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 7,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 209899900000,
"price_min": 209899900000,
"price_max": 209899900000,
"price_min_before_discount": 349900000000,
"price_max_before_discount": 349900000000,
"hidden_price_display": null,
"price_before_discount": 349900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-40%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1b-m2t3f1q0lu4ke6.16000101732078013.mp4",
"thumb_url": "id-11110105-7rasa-m2t3f823cex371",
"duration": 60,
"version": 2,
"vid": "id-11110105-6ke1b-m2t3f1q0lu4ke6",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1b-m2t3f1q0lu4ke6.16000101732078013.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m2t3f1q0lu4ke6.16000101732078013.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m2t3f1q0lu4ke6.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "TIPE",
"options": [
"1/2 PK",
"1 PK"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
7,
0,
0,
0,
0,
7
],
"rcount_with_context": 2,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Malang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 324,
"promotion_id": 10000013350,
"price": 209899900000,
"strikethrough_price": 349900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-40%",
"model_id": 157758282164,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 349900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 19,
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_display_sold_count": 19,
"display_sold_count_text": "19"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sumber Rejeki & Co.",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
1000,
97,
88
]
},
"itemid": 26568140168,
"shopid": 49654435,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m2tgb3kdmmmp76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,844931064601283,844931086908638,1718093079,1213641,1000031,1400285055,1049116,1049123,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,2018619,700700063,1015914,700190087,298463379,2023641,2048661,2048660,700765096,298933384,2108629,298623321,1993623,998091078,1718093084,298458398,1718088045,298458396,298468390,1718088044,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":451,\"model_id\":157758282164,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m2tgb3kdmmmp76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,844931064601283,844931086908638,1718093079,1213641,1000031,1400285055,1049116,1049123,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,2018619,700700063,1015914,700190087,298463379,2023641,2048661,2048660,700765096,298933384,2108629,298623321,1993623,998091078,1718093084,298458398,1718088045,298458396,298468390,1718088044,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":451,\"model_id\":157758282164,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26568140168",
"debug_info": null
},
{
"item_basic": {
"itemid": 43655886806,
"shopid": 266457757,
"name": "Reiwa AC Window 1/2 PK CW-0501RA Putih 5000 Btu",
"label_ids": [
2018619,
2023641,
1400095067,
1400285005,
844931064601283,
1049116,
1049117,
822059908662278,
822120592853526,
825465608499232,
825465608497696,
1718093065,
1213641,
1400285055,
1015914,
700190087,
298463379,
1718093079,
2108629,
298933384,
2048660,
2048661,
700765096,
700810080,
1718093084,
298458396,
1718088044,
298468390,
1718088045,
298458398,
298468389
],
"image": "id-11134207-7ra0k-mbdxu5xixck633",
"images": [
"id-11134207-7ra0k-mbdxu5xixck633",
"id-11134207-7ra0n-mbdxu5xj05p22b",
"id-11134207-7ra0t-mbdxu5xj1k9i22",
"id-11134207-7ra0h-mbdxu5xj2ytyfc",
"id-11134207-7ra0i-mbdxu5xj4dee25",
"id-11134207-7ra0u-mbdxu5xj76ja61",
"id-11134207-7ra0j-mbdxu5xj8l3qcb",
"id-11134207-7ra0n-mbdxu5xj9zo613"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1750774097,
"sold": 2,
"historical_sold": 48,
"liked": false,
"liked_count": 29,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 25,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PACKING AMAN",
"options": [
"TAMBAH BUBLEWRAP",
"PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.92,
"rating_count": [
25,
0,
0,
0,
2,
23
],
"rcount_with_context": 9,
"rcount_with_image": 8
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 290493475297,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 48,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 48,
"display_sold_count_text": "48"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ORI elektronik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
97,
88,
4
]
},
"itemid": 43655886806,
"shopid": 266457757,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-mbdxu5xixck633\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1400095067,1400285005,844931064601283,1049116,1049117,822059908662278,822120592853526,825465608499232,825465608497696,1718093065,1213641,1400285055,1015914,700190087,298463379,1718093079,2108629,298933384,2048660,2048661,700765096,700810080,1718093084,298458396,1718088044,298468390,1718088045,298458398,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":3478,\"model_id\":290493475297,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-mbdxu5xixck633\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1400095067,1400285005,844931064601283,1049116,1049117,822059908662278,822120592853526,825465608499232,825465608497696,1718093065,1213641,1400285055,1015914,700190087,298463379,1718093079,2108629,298933384,2048660,2048661,700765096,700810080,1718093084,298458396,1718088044,298468390,1718088045,298458398,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":3478,\"model_id\":290493475297,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43655886806",
"debug_info": null
},
{
"item_basic": {
"itemid": 29114190892,
"shopid": 98367883,
"name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK / 1 PK R32 CW 09 01RA / CW0901RA",
"label_ids": [
1000167,
1012865,
1013217,
1400095067,
1400285005,
1428713,
1718087960,
844931064601283,
1718093079,
1015914,
700190087,
1918643,
1000031,
1400285055,
1049141,
700005513,
822059908662278,
2018619,
2023641,
298893311,
2048660,
2048661,
825465608497696,
298463379,
700765096,
700750053,
700830032,
844931086908638,
1400025118,
298933384,
298888358,
298938357,
2108629,
298938368,
997921049,
2098629,
1718088045,
298468389,
1718093085,
1718088046,
2098630,
2103632,
2108637,
2098628,
700585042,
997921050
],
"image": "id-11134207-7rasl-m1fgu7sksvfi29",
"images": [
"id-11134207-7rasl-m1fgu7sksvfi29",
"id-11134207-7rasm-m1fgu7sksvquc4",
"id-11134207-7ras9-m1fgu7sush5b49",
"id-11134207-7rase-m1fgu7sksv97fb",
"id-11134207-7rasj-m1fgu7sksvchd8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1729074251,
"sold": 4,
"historical_sold": 88,
"liked": false,
"liked_count": 96,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 30,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 212356000000,
"price_min": 212356000000,
"price_max": 212356000000,
"price_min_before_discount": 290000000000,
"price_max_before_discount": 290000000000,
"hidden_price_display": null,
"price_before_discount": 290000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-27%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1k-m1fgvvabqoy7a6.16000081729073935.mp4",
"thumb_url": "id-11110105-7ras8-m1fgw0wviml970",
"duration": 60,
"version": 2,
"vid": "id-11110105-6ke1k-m1fgvvabqoy7a6",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1k-m1fgvvabqoy7a6.16000081729073935.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-m1fgvvabqoy7a6.16000081729073935.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-m1fgvvabqoy7a6.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Type",
"options": [
"0.5 PK",
"1 PK"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.9,
"rating_count": [
30,
0,
0,
0,
3,
27
],
"rcount_with_context": 10,
"rcount_with_image": 7
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp353RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 760674494497792,
"price": 212356000000,
"strikethrough_price": 290000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-27%",
"model_id": 252642535788,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 290000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 88,
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_display_sold_count": 88,
"display_sold_count_text": "88"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp353RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ART_ELEKTRONIK YOGYAKARTA",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
97,
88,
1000,
1000,
4
]
},
"itemid": 29114190892,
"shopid": 98367883,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m1fgu7sksvfi29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1012865,1013217,1400095067,1400285005,1428713,1718087960,844931064601283,1718093079,1015914,700190087,1918643,1000031,1400285055,1049141,700005513,822059908662278,2018619,2023641,298893311,2048660,2048661,825465608497696,298463379,700765096,700750053,700830032,844931086908638,1400025118,298933384,298888358,298938357,2108629,298938368,997921049,2098629,1718088045,298468389,1718093085,1718088046,2098630,2103632,2108637,2098628,700585042,997921050],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":633,\"model_id\":252642535788,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,97,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m1fgu7sksvfi29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1012865,1013217,1400095067,1400285005,1428713,1718087960,844931064601283,1718093079,1015914,700190087,1918643,1000031,1400285055,1049141,700005513,822059908662278,2018619,2023641,298893311,2048660,2048661,825465608497696,298463379,700765096,700750053,700830032,844931086908638,1400025118,298933384,298888358,298938357,2108629,298938368,997921049,2098629,1718088045,298468389,1718093085,1718088046,2098630,2103632,2108637,2098628,700585042,997921050],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":633,\"model_id\":252642535788,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,97,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29114190892",
"debug_info": null
},
{
"item_basic": {
"itemid": 26132561544,
"shopid": 84058015,
"name": "AC Window REIWA 0501 Standard 0,5 PK - AC Reiwa 1/2PK Low Watt - AC Window bisa pasang sendiri",
"label_ids": [
844931064601283,
1718093065,
1213641,
1015914,
700190087,
1400285055,
2018619,
2023641,
1718093079,
298893311,
1718087960,
1428713,
298463379,
700765096,
1049116,
1049117,
822059908662278,
822120592853526,
825465608499232,
825465608497696,
2048660,
2048661,
298933384,
298623321,
1993623,
998091078,
2108629,
1718088044,
298458398,
298468390,
298468389,
298458396,
1718088045,
1718093084
],
"image": "id-11134207-7rbkb-ma1bwbhgsn6m4b",
"images": [
"id-11134207-7rbkb-ma1bwbhgsn6m4b",
"id-11134207-7rbk0-ma1bwbh7e4ml4a",
"id-11134207-7rbk8-m8bvua2sz5d99c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1744112167,
"sold": 1,
"historical_sold": 50,
"liked": false,
"liked_count": 59,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 31,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Packing",
"options": [
"Packing kayu",
"Packing kardus"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.935483870967742,
"rating_count": [
31,
0,
0,
1,
0,
30
],
"rcount_with_context": 9,
"rcount_with_image": 6
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 324,
"promotion_id": 10000016340,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 186014881893,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 50,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 50,
"display_sold_count_text": "50"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Elektronic New Palapa",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
0,
1000
]
},
"itemid": 26132561544,
"shopid": 84058015,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-ma1bwbhgsn6m4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093065,1213641,1015914,700190087,1400285055,2018619,2023641,1718093079,298893311,1718087960,1428713,298463379,700765096,1049116,1049117,822059908662278,822120592853526,825465608499232,825465608497696,2048660,2048661,298933384,298623321,1993623,998091078,2108629,1718088044,298458398,298468390,298468389,298458396,1718088045,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":795,\"model_id\":186014881893,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-ma1bwbhgsn6m4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093065,1213641,1015914,700190087,1400285055,2018619,2023641,1718093079,298893311,1718087960,1428713,298463379,700765096,1049116,1049117,822059908662278,822120592853526,825465608499232,825465608497696,2048660,2048661,298933384,298623321,1993623,998091078,2108629,1718088044,298458398,298468390,298468389,298458396,1718088045,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":795,\"model_id\":186014881893,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26132561544",
"debug_info": null
},
{
"item_basic": {
"itemid": 29222420845,
"shopid": 10681204,
"name": "REIWA AC Window 1pk CW-0901RA CW 0901 RA CW0901RA 1 pk 1pk MURAH DINGIN - UNIT ONLY",
"label_ids": [
844931064601283,
2018619,
1059152,
1049124,
822059908662278,
1400066568,
822120592853526,
825465608497696,
1718093079,
2023641,
298933384,
834403089593352,
1400025118,
298463379,
1015914,
700190087,
298623321,
1993623,
998091078,
1400285055,
1718088046,
700585042,
1718088045,
997921049,
298468389,
1718093085,
997921050
],
"image": "id-11134207-7rasg-m4iqlqwbko0a1a",
"images": [
"id-11134207-7rasg-m4iqlqwbko0a1a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1735809964,
"sold": 2,
"historical_sold": 9,
"liked": false,
"liked_count": 25,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 4,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 237699900000,
"price_min": 237699900000,
"price_max": 237699900000,
"price_min_before_discount": 241300000000,
"price_max_before_discount": 241300000000,
"hidden_price_display": null,
"price_before_discount": 241300000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-1%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.75,
"rating_count": [
4,
0,
0,
0,
1,
3
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 324,
"promotion_id": 10000019090,
"price": 237699900000,
"strikethrough_price": 241300000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-1%",
"model_id": 242389716079,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 241300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 9,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 9,
"display_sold_count_text": "9"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "FLOREN Official Store",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
0,
1000,
88,
1000,
1000,
4
]
},
"itemid": 29222420845,
"shopid": 10681204,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m4iqlqwbko0a1a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1059152,1049124,822059908662278,1400066568,822120592853526,825465608497696,1718093079,2023641,298933384,834403089593352,1400025118,298463379,1015914,700190087,298623321,1993623,998091078,1400285055,1718088046,700585042,1718088045,997921049,298468389,1718093085,997921050],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":1134,\"model_id\":242389716079,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m4iqlqwbko0a1a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1059152,1049124,822059908662278,1400066568,822120592853526,825465608497696,1718093079,2023641,298933384,834403089593352,1400025118,298463379,1015914,700190087,298623321,1993623,998091078,1400285055,1718088046,700585042,1718088045,997921049,298468389,1718093085,997921050],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":1134,\"model_id\":242389716079,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29222420845",
"debug_info": null
},
{
"item_basic": {
"itemid": 24370098887,
"shopid": 480194694,
"name": "AC WINDOW REIWA 1/2 PK - FREE SELANG DRINASE 2 METER",
"label_ids": [
1400066568,
1049112,
1049136,
822059908662278,
822120592853526,
1000031,
1918643,
1400285055,
2018619,
700700063,
825465608497696,
1213641,
298463379,
844931086908638,
2048660,
2048661,
700765096,
1015914,
700190087,
834403089593352,
2108629,
1718093079,
2023641,
1718093084,
298468390,
1718088045,
298458398,
1718088044,
298458396,
298468389
],
"image": "id-11134207-8224v-mjfbsqgcub5ve8",
"images": [
"id-11134207-8224v-mjfbsqgcub5ve8",
"id-11134207-7r992-lt4sm8j76892fa",
"id-11134207-7r98x-lyrga5doysed9e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1710994117,
"sold": 4,
"historical_sold": 37,
"liked": false,
"liked_count": 110,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 16,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
18,
0,
0,
0,
0,
18
],
"rcount_with_context": 6,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Depok",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 197386351545,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 37,
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_display_sold_count": 37,
"display_sold_count_text": "37"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "PT Sumber Multi Sejahtera",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
88,
97
]
},
"itemid": 24370098887,
"shopid": 480194694,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mjfbsqgcub5ve8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1049112,1049136,822059908662278,822120592853526,1000031,1918643,1400285055,2018619,700700063,825465608497696,1213641,298463379,844931086908638,2048660,2048661,700765096,1015914,700190087,834403089593352,2108629,1718093079,2023641,1718093084,298468390,1718088045,298458398,1718088044,298458396,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":1200,\"model_id\":197386351545,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mjfbsqgcub5ve8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1049112,1049136,822059908662278,822120592853526,1000031,1918643,1400285055,2018619,700700063,825465608497696,1213641,298463379,844931086908638,2048660,2048661,700765096,1015914,700190087,834403089593352,2108629,1718093079,2023641,1718093084,298468390,1718088045,298458398,1718088044,298458396,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":1200,\"model_id\":197386351545,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24370098887",
"debug_info": null
},
{
"item_basic": {
"itemid": 26153855018,
"shopid": 141663723,
"name": "REIWA CW-0501RA / CW0501RA AC Window 1/2PK 0.5PK",
"label_ids": [
844931064601283,
1400066568,
298458395,
1049116,
1049117,
822059908662278,
834403089593352,
822120592853526,
1213641,
1000031,
1015914,
700190087,
1400285055,
1428713,
1718087960,
2018619,
298893311,
825465608497696,
2108629,
298463379,
1718093079,
2153644,
700830032,
2048660,
2048661,
700765096,
700810080,
2018618,
2213652,
1718093084,
298468389,
1718088045,
298468390,
1718088044,
298458396,
298458398
],
"image": "id-11134207-7ra0p-mdicew96nvo256",
"images": [
"id-11134207-7ra0p-mdicew96nvo256",
"id-11134207-7ra0s-mdbh11r95agsc2",
"id-11134207-7ra0j-mdg6n03lea44fb",
"id-11134207-7ra0t-mdg6n03lfook38",
"id-11134207-7ra0h-mdg6n03lh390a0",
"id-11134207-7ra0m-mdbd6cdsjevr5b",
"id-11134207-7ra0i-mdbd6cdsdslz67"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1719462244,
"sold": 3,
"historical_sold": 185,
"liked": false,
"liked_count": 149,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 92,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke19-m0y1xidpaneh65.16000081728019702.mp4",
"thumb_url": "id-11110105-7rash-m0y1xmnf22aq11",
"duration": 57,
"version": 2,
"vid": "id-11110105-6ke19-m0y1xidpaneh65",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke19-m0y1xidpaneh65.16000081728019702.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m0y1xidpaneh65.16000081728019702.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m0y1xidpaneh65.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "BubbleWrap",
"options": [
"TIDAK",
"IYA",
"+KAYU +BUBBLEWRAP",
"AMBIL SENDIRI OUTLET"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8478260869565215,
"rating_count": [
92,
2,
0,
1,
4,
85
],
"rcount_with_context": 23,
"rcount_with_image": 14
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 251900639379,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 185,
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_display_sold_count": 185,
"display_sold_count_text": "185"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "MIAMI Official Store",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
88,
97,
4
]
},
"itemid": 26153855018,
"shopid": 141663723,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mdicew96nvo256\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,298458395,1049116,1049117,822059908662278,834403089593352,822120592853526,1213641,1000031,1015914,700190087,1400285055,1428713,1718087960,2018619,298893311,825465608497696,2108629,298463379,1718093079,2153644,700830032,2048660,2048661,700765096,700810080,2018618,2213652,1718093084,298468389,1718088045,298468390,1718088044,298458396,298458398],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":832,\"model_id\":251900639379,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mdicew96nvo256\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,298458395,1049116,1049117,822059908662278,834403089593352,822120592853526,1213641,1000031,1015914,700190087,1400285055,1428713,1718087960,2018619,298893311,825465608497696,2108629,298463379,1718093079,2153644,700830032,2048660,2048661,700765096,700810080,2018618,2213652,1718093084,298468389,1718088045,298468390,1718088044,298458396,298458398],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":832,\"model_id\":251900639379,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26153855018",
"debug_info": null
},
{
"item_basic": {
"itemid": 28562933982,
"shopid": 201251035,
"name": "REIWA CW-0501RA 0,5 PK AC Window 1/2 PK",
"label_ids": [
1000167,
1428713,
1718087960,
844931064601283,
1400066568,
1015914,
700190087,
1400285055,
1000031,
1213641,
2018619,
2023641,
1049112,
1059151,
822059908662278,
825465608492064,
837860934119952,
834403089593352,
298893311,
825465608497696,
298463379,
298933384,
1718093079,
700830032,
2048660,
2048661,
2068629,
298938357,
700810080,
298458396,
298938368,
2098628,
298458398,
298468390,
1718088045,
298468389,
1718088044,
1718093084,
2098629
],
"image": "id-11134201-7rase-m0vpzc0ehunya4",
"images": [
"id-11134201-7rase-m0vpzc0ehunya4",
"id-11134201-7rasd-m0vpzcd5z68710",
"id-11134201-7rasg-m0vpzdhybh9cbf",
"id-11134201-7ras8-m0vpzeld59l8e0",
"id-11134201-7ras9-m0vpzeq2iwwc1a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1727879142,
"sold": 2,
"historical_sold": 390,
"liked": false,
"liked_count": 1594,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 215,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke14-m14d7faclkuq59.16000081728401869.mp4",
"thumb_url": "id-11110105-7rasb-m14d7jw9zbwl36",
"duration": 15,
"version": 2,
"vid": "id-11110105-6ke14-m14d7faclkuq59",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke14-m14d7faclkuq59.16003251730655329.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m14d7faclkuq59.16003251730655329.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m14d7faclkuq59.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "PACKING",
"options": [
"DUS BAWAAN",
"PACKING KAYU",
"KURIR OJOL DUS",
"BUBBLE",
"KURIR OJOL BUBBLE"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.934883720930233,
"rating_count": [
215,
1,
0,
0,
10,
204
],
"rcount_with_context": 88,
"rcount_with_image": 65
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp649RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 29535746387,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 390,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 390,
"display_sold_count_text": "390"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp649RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Diamond Electronics",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
91,
88
]
},
"itemid": 28562933982,
"shopid": 201251035,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7rase-m0vpzc0ehunya4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1428713,1718087960,844931064601283,1400066568,1015914,700190087,1400285055,1000031,1213641,2018619,2023641,1049112,1059151,822059908662278,825465608492064,837860934119952,834403089593352,298893311,825465608497696,298463379,298933384,1718093079,700830032,2048660,2048661,2068629,298938357,700810080,298458396,298938368,2098628,298458398,298468390,1718088045,298468389,1718088044,1718093084,2098629],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":722,\"model_id\":29535746387,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,91,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7rase-m0vpzc0ehunya4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1428713,1718087960,844931064601283,1400066568,1015914,700190087,1400285055,1000031,1213641,2018619,2023641,1049112,1059151,822059908662278,825465608492064,837860934119952,834403089593352,298893311,825465608497696,298463379,298933384,1718093079,700830032,2048660,2048661,2068629,298938357,700810080,298458396,298938368,2098628,298458398,298468390,1718088045,298468389,1718088044,1718093084,2098629],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":722,\"model_id\":29535746387,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,91,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28562933982",
"debug_info": null
},
{
"item_basic": {
"itemid": 26863510440,
"shopid": 27092381,
"name": "REIWA AC PORTABLE WINDOW REIWA CW 0501 RA / CW0501RA 1/2 PK 0.5 PK AIR CONDITIONER PORTABEL",
"label_ids": [
844931064601283,
1015914,
700190087,
1918643,
1000031,
1213641,
1400285055,
1059156,
700005499,
822059908662278,
825465608492064,
834403089593352,
2018619,
298893311,
825465608497696,
2108629,
298463379,
298933384,
822120592853526,
2048660,
2048661,
1718093079,
298938356,
1718088044,
298458396,
298458398,
298468390,
1718093084,
1718088045,
298468389
],
"image": "id-11134207-8224w-mivif26nuosk85",
"images": [
"id-11134207-8224w-mivif26nuosk85",
"id-11134207-7rasj-m13jxtdatyvp6d",
"id-11134207-7ras8-m13jxtdar5qt02",
"id-11134207-7rasf-m13jxtdaiptt8e",
"id-11134207-7rasi-m13jxtdahb9d0d",
"id-11134207-7rash-m13jxtdaskb945"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1728379742,
"sold": 21,
"historical_sold": 376,
"liked": false,
"liked_count": 921,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 181,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199000000000,
"price_min": 199000000000,
"price_max": 199000000000,
"price_min_before_discount": 205000000000,
"price_max_before_discount": 205000000000,
"hidden_price_display": null,
"price_before_discount": 205000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-3%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1a-m13zygg0360552.16000101728379591.mp4",
"thumb_url": "id-11110105-7rasa-m13zym01xd5c13",
"duration": 50,
"version": 2,
"vid": "id-11110105-6ke1a-m13zygg0360552",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1a-m13zygg0360552.default.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m13zygg0360552.default.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m13zygg0360552.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "VARIAN",
"options": [
"REIWA CW 0501 RA",
"REIWA 0.5PK + BUBEL",
"REIWA BLACK SERIES"
],
"images": [
"id-11134207-8224y-mivif26np2is69",
"id-11134207-8224q-mivif26nqh385a",
"id-11134207-8224w-mivif26nta8458"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.939226519337017,
"rating_count": [
181,
0,
0,
0,
11,
170
],
"rcount_with_context": 56,
"rcount_with_image": 51
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 819103196053504,
"price": 199000000000,
"strikethrough_price": 205000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-3%",
"model_id": 246739225315,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 205000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 376,
"rounded_local_monthly_sold_count": 21,
"local_monthly_sold_count_text": "21",
"rounded_display_sold_count": 376,
"display_sold_count_text": "376"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Toko Elektronik Semarang",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
1000,
97,
88,
4
]
},
"itemid": 26863510440,
"shopid": 27092381,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mivif26nuosk85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1015914,700190087,1918643,1000031,1213641,1400285055,1059156,700005499,822059908662278,825465608492064,834403089593352,2018619,298893311,825465608497696,2108629,298463379,298933384,822120592853526,2048660,2048661,1718093079,298938356,1718088044,298458396,298458398,298468390,1718093084,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":193,\"model_id\":246739225315,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mivif26nuosk85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1015914,700190087,1918643,1000031,1213641,1400285055,1059156,700005499,822059908662278,825465608492064,834403089593352,2018619,298893311,825465608497696,2108629,298463379,298933384,822120592853526,2048660,2048661,1718093079,298938356,1718088044,298458396,298458398,298468390,1718093084,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":193,\"model_id\":246739225315,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26863510440",
"debug_info": null
},
{
"item_basic": {
"itemid": 27951147380,
"shopid": 1267387125,
"name": "FREE PASANG + AKSESORIS AC Sharp 1/2 PK A5BEY STANDARD Grosir Elektronik Bekasi",
"label_ids": [
700005512,
1049112,
822059908662278,
1428713,
1718087960,
298463379,
822120592853526,
1400285055,
1015914,
700190087,
837860934119952,
1718093079,
2018619,
825465608497696,
2023641,
1718088045,
298468389
],
"image": "id-11134207-8224y-mh5rdr1rydjhb5",
"images": [
"id-11134207-8224y-mh5rdr1rydjhb5",
"id-11134207-8224r-mh5rdr1xc7wo54",
"id-11134207-7r98x-lw5ol3dqfatm8c",
"id-11134207-7r98s-lw5ol3dqgpe2d2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1716875971,
"sold": 11,
"historical_sold": 67,
"liked": false,
"liked_count": 109,
"view_count": null,
"catid": 100010,
"brand": "Sharp",
"cmt_count": 27,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 259300000000,
"price_min": 259300000000,
"price_max": 259300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Pembelian",
"options": [
"Unit Only",
"Unit Only + Material",
"+Pasang",
"+Pasang Tradein"
],
"images": [
"id-11134207-8224z-mh5rdr1xf11kb0",
"id-11134207-8224p-mh5rdr1xgfm0d5",
"id-11134207-8224x-mh5rdr1xdmh451",
"id-11134207-8224s-mh5rdr1xhu6gfe"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.766666666666667,
"rating_count": [
30,
1,
0,
0,
3,
26
],
"rcount_with_context": 11,
"rcount_with_image": 9
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 259300000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 222837815447,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 259300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 67,
"rounded_local_monthly_sold_count": 11,
"local_monthly_sold_count_text": "11",
"rounded_display_sold_count": 67,
"display_sold_count_text": "67"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Grosir Elektronik Bekasi",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 367871819,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT4DSphOX53k52mpe7TZRN1JeU8fjm1xXAGtv/POCHXn7MPojyPjFtgrIzFPIkWacGSdpjVXlsGrsg5PwivTRTz01kPBkanTO1J1wQu+tAOsk9mogLwv1dcvJzIwMj++dyDGstBvsrYiRawMVr1jbmr1Yw4ZaYm29P9UOAKYUE6MnH89AQ2mqKMYlA3hOf++NCv7BDIavmnZq4hfbjxI89Iw1YwEsr1Ew6NLYn2k+Jj6N2n3HYoHa6QlCDVYXNTjML3rpimEi5Z21PQBRUipaP1ay/jZxsgVxV/RvcJZQSsW9eYW9bzFgNaav8SffboEf7uDM4PSrMH7zehe6LH5OF/kYHHPWfhQ0LD5zvYogr+e67hL/ebTA9YXw8B8C09HX1tSHXpAExWutZtPl3brDTbxANH2uKJeQ5DB7WNSnKzpp1qi6mGiL9GvPcjPtgidFwyJEc5Yg7qlSteMQS9gEcdahqGOC2zRDwBGIbLRX0iXgLdZi7RKgv653nWwz8u30MA==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYwMDQwNnw1NDc3ODR8NjE4Mzc2fDYyNzY2N3w1ODA3ODJ8NjM1NzkwfDYxOTk1N3w1NDQ1NjF8NjMwNzc0fDU1NDc5Nnw1Mjc0Mjl8NTA1NzkwfDU0NDU1MXw1Nzg4Nzd8NjIwOTc5fDYwMzMzMXw2MTM0MjJ8NTM0MTc4fDU5Njc1NHw1NjkwNDB8NTI2NTA4fDYwODk5OXw2MDkyODh8NTAwNTM1fDUzODc1NHw2MDkzMDR8NjIzNTAzfDUzMjM2MHw2MjAyMTN8NTk3MDk4fDYxMzg1OXw2MzQ3NTB8NjA1NDY3fDU1NjYwN3w2MzU3NTJ8NTcwNDY2fDU4MDc4M3w2MDkxMzl8NDQyNjM3fDYzMTU0OXw1NTQwMDB8NjI5NDYwfDYwMjkyM3w2MzQ3MjF8NTQ0NTA0fDU5Nzg4M3w1OTM2Mjd8EMuOta8BGI2U640BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNERTcGhPWDUzazUybXBlN1RaUk4xSmVVOGZqbTF4WEFHdHYvUE9DSFhuN01Qb2p5UGpGdGdySXpGUElrV2FjR1NkcGpWWGxzR3JzZzVQd2l2VFJUejAxa1BCa2FuVE8xSjF3UXUrdEFPc2s5bW9nTHd2MWRjdkp6SXdNaisrZHlER3N0QnZzcllpUmF3TVZyMWpibXIxWXc0WmFZbTI5UDlVT0FLWVVFNk1uSDg5QVEybXFLTVlsQTNoT2YrK05DdjdCRElhdm1uWnE0aGZianhJODlJdzFZd0VzcjFFdzZOTFluMmsrSmo2TjJuM0hZb0hhNlFsQ0RWWVhOVGpNTDNycGltRWk1WjIxUFFCUlVpcGFQMWF5L2paeHNnVnhWL1J2Y0paUVNzVzllWVc5YnpGZ05hYXY4U2ZmYm9FZjd1RE00UFNyTUg3emVoZTZMSDVPRi9rWUhIUFdmaFEwTEQ1enZZb2dyK2U2N2hML2ViVEE5WVh3OEI4QzA5SFgxdFNIWHBBRXhXdXRadFBsM2JyRFRieEFOSDJ1S0plUTVEQjdXTlNuS3pwcDFxaTZtR2lMOUd2UGNqUHRnaWRGd3lKRWM1WWc3cWxTdGVNUVM5Z0VjZGFocUdPQzJ6UkR3QkdJYkxSWDBpWGdMZFppN1JLZ3Y2NTNuV3d6OHUzME1BPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwN3EAAAAAABByP3knMQisHEpxP4IBCWFjIHdpbmRvd5ABp7udywa4AQHgAZn/j8aYBekBAAAA4JUl8T/xAQAAAECNzv0/yAwP4AwB6QwAAACgG0zRP4kNexSuR+F6lD+RDQAAHE+9JClBoQ0AAACcv0WmQbkN2+aHSENHU0D4DYCAuNL2CLAOw6agzwbiDgyqjQbHjQbVjgbwkAa5DzEIrBxaLHQ/wQ9JcVaQ2zkBP8gPFOIZ/ApFb1VCTUM0NU9UYzVNaXd0TVN3dE1Td3RNU3d0TVN3eExqQXdOems1T1RrNU9UazVPVGs1T1Rnc01Td3dMakV6TURZNU9UazRNekEyT0RJeU16Y3lMREF1T1N3d0xqZ3dNalk0TkRJNU9ETXpORFF4T0Rjc01TNHdNREF3TVRJekxEY3lNQzR6TnpJeE9EYzJORGt4T1RVNExERXlMakF6T1RneE5ETTBPVFUyTVRJMU5Dd3RNUjNaWTBaTklNMi9pMWt0cjNkL1B6VUFBSUEvT1VqRTZPVzlaVWxDUVZFNTVzWGU5bkpDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJTRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBY1FBQUFNQXhPbDQvZVFBQUFFQXVzU1EvZ1FFQUFBQ0FOYWpDUVlrQkFBQUFBQll4aUVHUkFRQUFBT0JHSzhSQm1RRUFBQUNnemVYRVFhRUJBQUFBUUZWVWtFR3BBUUFBQUVoWThNWkI2QUVCZ0FLVUE0b0NQakF1TURBeE9UZ3hMREV1TURBd01EQXdMREV1TURReU5UUXdMREV1TWpRM01qVXpMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUpUNDZXYnhDRHdQNkVDQUFBQVNGand4a0c1QWtIdmpTRUF1T0Uvd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnREZnZ3pnd0tOQjRRSUF1S2swZ2VodFFla0NtQnNPUHpDQ3FVR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkEwakU2T1c5WlVsQ29RTlJPZWJGM3ZaeVFya0Rac0J1MGtqODV6L0JBMUpMekxoZmtPay95UVBXVzJoaFluM3JQOUVEcXdWdEdtTVU3ei82QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQVA2QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBWUVFQUFBQWdGbnRXVCtKQkFBQUFDQUR3Vlkva0FTYkE1Z0VsTFhiei9zMm9BU3gvcXV1cFFTNEJQVFhqK09iQk1BRXBkYTdrY0VJeVFRQUFBQUFBQkJ5UCtFRUFBQUFBQUFRY2ovcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFDQ0FPV0Evb1FVQUFBQUFBQUR3UDZrRkFBQUFBRDZ1OEQreEJRQUFBSUMvOVBNL3VRVUFBQURBek16MFA4RUZBQUFBWUdabTlqL0pCUUFBQUFBQUFQZy/qGQS6TcRN+hn4BQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQltwPMkt0SmQQoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI3OTUxMTQ3MzgwCg0KB2lzX3Zza3USAigAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACucBChNlbmdpbmVlcmluZ19tZXRyaWNzEs8BIswBeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjQxLCJhcGkyX2xhdGVuY3lfbXMiOjU4LCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI5LCJhcGkwX2Fkc19jb3VudCI6MjgwLCJhcGkxX2Fkc19jb3VudCI6MTUwOSwiYXBpMl9hZHNfY291bnQiOjMwOCwiYXBpM19hZHNfY291bnQiOjF9CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJOiy3wJIjKUEKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmewH4CDgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAABIWPDGQdklOQzO7PJGU0DpJcou+wiMBUlA8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
97
]
},
"itemid": 27951147380,
"shopid": 1267387125,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":186834894,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mh5rdr1rydjhb5\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[700005512,1049112,822059908662278,1428713,1718087960,298463379,822120592853526,1400285055,1015914,700190087,837860934119952,1718093079,2018619,825465608497696,2023641,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":1543,\"model_id\":222837815447,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":186834894,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mh5rdr1rydjhb5\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[700005512,1049112,822059908662278,1428713,1718087960,298463379,822120592853526,1400285055,1015914,700190087,837860934119952,1718093079,2018619,825465608497696,2023641,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":1543,\"model_id\":222837815447,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYwMDQwNnw1NDc3ODR8NjE4Mzc2fDYyNzY2N3w1ODA3ODJ8NjM1NzkwfDYxOTk1N3w1NDQ1NjF8NjMwNzc0fDU1NDc5Nnw1Mjc0Mjl8NTA1NzkwfDU0NDU1MXw1Nzg4Nzd8NjIwOTc5fDYwMzMzMXw2MTM0MjJ8NTM0MTc4fDU5Njc1NHw1NjkwNDB8NTI2NTA4fDYwODk5OXw2MDkyODh8NTAwNTM1fDUzODc1NHw2MDkzMDR8NjIzNTAzfDUzMjM2MHw2MjAyMTN8NTk3MDk4fDYxMzg1OXw2MzQ3NTB8NjA1NDY3fDU1NjYwN3w2MzU3NTJ8NTcwNDY2fDU4MDc4M3w2MDkxMzl8NDQyNjM3fDYzMTU0OXw1NTQwMDB8NjI5NDYwfDYwMjkyM3w2MzQ3MjF8NTQ0NTA0fDU5Nzg4M3w1OTM2Mjd8EMuOta8BGI2U640BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNERTcGhPWDUzazUybXBlN1RaUk4xSmVVOGZqbTF4WEFHdHYvUE9DSFhuN01Qb2p5UGpGdGdySXpGUElrV2FjR1NkcGpWWGxzR3JzZzVQd2l2VFJUejAxa1BCa2FuVE8xSjF3UXUrdEFPc2s5bW9nTHd2MWRjdkp6SXdNaisrZHlER3N0QnZzcllpUmF3TVZyMWpibXIxWXc0WmFZbTI5UDlVT0FLWVVFNk1uSDg5QVEybXFLTVlsQTNoT2YrK05DdjdCRElhdm1uWnE0aGZianhJODlJdzFZd0VzcjFFdzZOTFluMmsrSmo2TjJuM0hZb0hhNlFsQ0RWWVhOVGpNTDNycGltRWk1WjIxUFFCUlVpcGFQMWF5L2paeHNnVnhWL1J2Y0paUVNzVzllWVc5YnpGZ05hYXY4U2ZmYm9FZjd1RE00UFNyTUg3emVoZTZMSDVPRi9rWUhIUFdmaFEwTEQ1enZZb2dyK2U2N2hML2ViVEE5WVh3OEI4QzA5SFgxdFNIWHBBRXhXdXRadFBsM2JyRFRieEFOSDJ1S0plUTVEQjdXTlNuS3pwcDFxaTZtR2lMOUd2UGNqUHRnaWRGd3lKRWM1WWc3cWxTdGVNUVM5Z0VjZGFocUdPQzJ6UkR3QkdJYkxSWDBpWGdMZFppN1JLZ3Y2NTNuV3d6OHUzME1BPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwN3EAAAAAABByP3knMQisHEpxP4IBCWFjIHdpbmRvd5ABp7udywa4AQHgAZn/j8aYBekBAAAA4JUl8T/xAQAAAECNzv0/yAwP4AwB6QwAAACgG0zRP4kNexSuR+F6lD+RDQAAHE+9JClBoQ0AAACcv0WmQbkN2+aHSENHU0D4DYCAuNL2CLAOw6agzwbiDgyqjQbHjQbVjgbwkAa5DzEIrBxaLHQ/wQ9JcVaQ2zkBP8gPFOIZ/ApFb1VCTUM0NU9UYzVNaXd0TVN3dE1Td3RNU3d0TVN3eExqQXdOems1T1RrNU9UazVPVGs1T1Rnc01Td3dMakV6TURZNU9UazRNekEyT0RJeU16Y3lMREF1T1N3d0xqZ3dNalk0TkRJNU9ETXpORFF4T0Rjc01TNHdNREF3TVRJekxEY3lNQzR6TnpJeE9EYzJORGt4T1RVNExERXlMakF6T1RneE5ETTBPVFUyTVRJMU5Dd3RNUjNaWTBaTklNMi9pMWt0cjNkL1B6VUFBSUEvT1VqRTZPVzlaVWxDUVZFNTVzWGU5bkpDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJTRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFHSU9DS3J6bGdNUkFBQUFBQUFBOEQ5aURnaXM4NVlERVFBQUFBQUFBQUFBY1FBQUFNQXhPbDQvZVFBQUFFQXVzU1EvZ1FFQUFBQ0FOYWpDUVlrQkFBQUFBQll4aUVHUkFRQUFBT0JHSzhSQm1RRUFBQUNnemVYRVFhRUJBQUFBUUZWVWtFR3BBUUFBQUVoWThNWkI2QUVCZ0FLVUE0b0NQakF1TURBeE9UZ3hMREV1TURBd01EQXdMREV1TURReU5UUXdMREV1TWpRM01qVXpMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUpUNDZXYnhDRHdQNkVDQUFBQVNGand4a0c1QWtIdmpTRUF1T0Uvd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnREZnZ3pnd0tOQjRRSUF1S2swZ2VodFFla0NtQnNPUHpDQ3FVR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkEwakU2T1c5WlVsQ29RTlJPZWJGM3ZaeVFya0Rac0J1MGtqODV6L0JBMUpMekxoZmtPay95UVBXVzJoaFluM3JQOUVEcXdWdEdtTVU3ei82QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQVA2QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBWUVFQUFBQWdGbnRXVCtKQkFBQUFDQUR3Vlkva0FTYkE1Z0VsTFhiei9zMm9BU3gvcXV1cFFTNEJQVFhqK09iQk1BRXBkYTdrY0VJeVFRQUFBQUFBQkJ5UCtFRUFBQUFBQUFRY2ovcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFDQ0FPV0Evb1FVQUFBQUFBQUR3UDZrRkFBQUFBRDZ1OEQreEJRQUFBSUMvOVBNL3VRVUFBQURBek16MFA4RUZBQUFBWUdabTlqL0pCUUFBQUFBQUFQZy/qGQS6TcRN+hn4BQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKEgoMdm91Y2hlcl9sZW5zEgIQAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQltwPMkt0SmQQoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI3OTUxMTQ3MzgwCg0KB2lzX3Zza3USAigAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigACucBChNlbmdpbmVlcmluZ19tZXRyaWNzEs8BIswBeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjQxLCJhcGkyX2xhdGVuY3lfbXMiOjU4LCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjI5LCJhcGkwX2Fkc19jb3VudCI6MjgwLCJhcGkxX2Fkc19jb3VudCI6MTUwOSwiYXBpMl9hZHNfY291bnQiOjMwOCwiYXBpM19hZHNfY291bnQiOjF9CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJOiy3wJIjKUEKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmewH4CDgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAABIWPDGQdklOQzO7PJGU0DpJcou+wiMBUlA8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27951147380",
"debug_info": null
},
{
"item_basic": {
"itemid": 29835948726,
"shopid": 2448775,
"name": "Reiwa AC Window 1/2PK 1PK Low Watt CW 0501RA 0901RA AC 0,5PK Langsung Pasang Tanpa Instalasi",
"label_ids": [
13,
38,
47,
39,
1000204,
1000167,
2023641,
2018619,
844931086908638,
1718087960,
1428713,
844931064601283,
1718093079,
1213641,
1400285055,
1015914,
700190087,
298893311,
1718093065,
1049116,
1049117,
822059908662278,
825465608492064,
825465608499232,
834403089593352,
825465608497696,
840990690654214,
840955085144628,
2108629,
298463379,
700830032,
1400025118,
298933384,
2048660,
2048661,
700810080,
1718093085,
298468390,
1718093084,
298458396,
1718088046,
700585042,
1718088044,
298458398,
997921050,
298468389,
997921049,
298838363,
1718088045
],
"image": "id-11134207-7rbk9-m9cjw28x8h6j70",
"images": [
"id-11134207-7rbk9-m9cjw28x8h6j70",
"id-11134207-7rbkc-m9coehoirrz2c7",
"id-11134207-7rbk9-m9coehoit6ji86",
"id-11134207-7rbkc-m9cqb6n7f4nycc",
"id-11134207-7rbk8-m9coehoiul3y77",
"id-11134207-7rbk2-m9coehoixe8ubb",
"id-11134207-7rbk1-m9cqb6n79ie63d",
"id-11134207-7rbka-m9cqb6n7gj8e32",
"id-11134207-7rbk7-m9cqb6n7awym11"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1746341586,
"sold": 4,
"historical_sold": 62,
"liked": false,
"liked_count": 64,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 40,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 197000000000,
"price_min": 197000000000,
"price_max": 197000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6knai-ma86t4vxcj84ca.16000091748246418.mp4",
"thumb_url": "id-11110107-6knai-ma86t4vxcj84ca_cover",
"duration": 60,
"version": 2,
"vid": "id-11110107-6knai-ma86t4vxcj84ca",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6knai-ma86t4vxcj84ca.16000091748246418.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6knai-ma86t4vxcj84ca.16000091748246418.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6knai-ma86t4vxcj84ca.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Ukuran",
"options": [
"CW-0501RA 1/2PK",
"CW-0901RA 1PK"
],
"images": [
"id-11134207-7rbka-m9cqb6n7cbj2ef",
"id-11134207-7rbka-m9cqb6n7dq3id5"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.95,
"rating_count": [
40,
0,
0,
0,
2,
38
],
"rcount_with_context": 7,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 197000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 237792720127,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 197000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 62,
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_display_sold_count": 62,
"display_sold_count_text": "62"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ELMART OFFICIAL SHOP",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
91,
97,
88,
4
]
},
"itemid": 29835948726,
"shopid": 2448775,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m9cjw28x8h6j70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,47,39,1000204,1000167,2023641,2018619,844931086908638,1718087960,1428713,844931064601283,1718093079,1213641,1400285055,1015914,700190087,298893311,1718093065,1049116,1049117,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,840990690654214,840955085144628,2108629,298463379,700830032,1400025118,298933384,2048660,2048661,700810080,1718093085,298468390,1718093084,298458396,1718088046,700585042,1718088044,298458398,997921050,298468389,997921049,298838363,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":553,\"model_id\":237792720127,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,91,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m9cjw28x8h6j70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,47,39,1000204,1000167,2023641,2018619,844931086908638,1718087960,1428713,844931064601283,1718093079,1213641,1400285055,1015914,700190087,298893311,1718093065,1049116,1049117,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,840990690654214,840955085144628,2108629,298463379,700830032,1400025118,298933384,2048660,2048661,700810080,1718093085,298468390,1718093084,298458396,1718088046,700585042,1718088044,298458398,997921050,298468389,997921049,298838363,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":553,\"model_id\":237792720127,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,91,97,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29835948726",
"debug_info": null
},
{
"item_basic": {
"itemid": 28456060337,
"shopid": 257396949,
"name": "AC WINDOW 1/2 PK REIWA CW-0501RA CW 0501RA",
"label_ids": [
844931064601283,
1213641,
1718093079,
2018619,
1015914,
700190087,
1049112,
1049127,
822059908662278,
825465608499232,
298463379,
844931086908638,
2048661,
2048660,
700765096,
700810080,
825465608497696,
822120592853526,
298468390,
1718088044,
298458396,
298458398,
1718093084,
298468389,
1718088045
],
"image": "id-11134207-7r98y-ly313tcoj7ak93",
"images": [
"id-11134207-7r98y-ly313tcoj7ak93",
"id-11134207-7r98t-ly313tcoklv064"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1721783925,
"sold": 0,
"historical_sold": 18,
"liked": false,
"liked_count": 24,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 5,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 215000000000,
"price_min": 215000000000,
"price_max": 215000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 2,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 215000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 178321793710,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 215000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 18,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 18,
"display_sold_count_text": "18"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "grosirelektronik1",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 28456060337,
"shopid": 257396949,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-ly313tcoj7ak93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1718093079,2018619,1015914,700190087,1049112,1049127,822059908662278,825465608499232,298463379,844931086908638,2048661,2048660,700765096,700810080,825465608497696,822120592853526,298468390,1718088044,298458396,298458398,1718093084,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4043,\"model_id\":178321793710,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-ly313tcoj7ak93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1718093079,2018619,1015914,700190087,1049112,1049127,822059908662278,825465608499232,298463379,844931086908638,2048661,2048660,700765096,700810080,825465608497696,822120592853526,298468390,1718088044,298458396,298458398,1718093084,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4043,\"model_id\":178321793710,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28456060337",
"debug_info": null
},
{
"item_basic": {
"itemid": 26312848718,
"shopid": 198666921,
"name": "AC Reiwa 0.5 PK Window Low Watt CW 0501 RA Air Conditioner 0,5 1/2PK 1/2 CW0501 CW 0501RA",
"label_ids": [
844931064601283,
298463379,
1718093079,
844931086908638,
1015914,
700190087,
1000031,
1400285055,
1213641,
2018619,
2023641,
298893311,
1049141,
700005513,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
825465608494624,
700750053,
1400025118,
822120592853526,
298933384,
2068629,
298938357,
2108629,
700765096,
298938356,
1400066568,
2098630,
2098628,
298458398,
1718093084,
298938368,
2108637,
997921049,
2098629,
1718088046,
1718093085,
997921050,
298838363,
2103632,
700585042,
1718088045,
298468389,
1718088044,
298468390,
298458396
],
"image": "id-11134207-7rasm-m0v4gy4ofryfda",
"images": [
"id-11134207-7rasm-m0v4gy4ofryfda",
"id-11134207-7rasc-m0ttolvs7c644d",
"id-11134207-7rasm-m1xw9nagi27t49",
"id-11134207-7rase-m1xw9na6ph7j03",
"id-11134207-7rasg-m1xw9na6qw9b48",
"id-11134207-7rasi-m1xw9na6mojac4",
"id-11134207-7rash-m0v4gy4oeddzbb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1727763786,
"sold": 14,
"historical_sold": 165,
"liked": false,
"liked_count": 197,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 83,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 209500000000,
"price_min": 209500000000,
"price_max": 209500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.16000091729329324.mp4",
"thumb_url": "id-11110107-7rasj-m1jorppop1nb63",
"duration": 16,
"version": 2,
"vid": "id-11110107-6ke1d-m1jornmhqqi915",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
"width": 360,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
"width": 360,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.9397590361445785,
"rating_count": [
83,
1,
0,
0,
1,
81
],
"rcount_with_context": 22,
"rcount_with_image": 15
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bantul",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp698RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 158814627422,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 165,
"rounded_local_monthly_sold_count": 14,
"local_monthly_sold_count_text": "14",
"rounded_display_sold_count": 165,
"display_sold_count_text": "165"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp698RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Lentera Star",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
97,
88,
0,
1000,
4
]
},
"itemid": 26312848718,
"shopid": 198666921,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0v4gy4ofryfda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,844931086908638,1015914,700190087,1000031,1400285055,1213641,2018619,2023641,298893311,1049141,700005513,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,700750053,1400025118,822120592853526,298933384,2068629,298938357,2108629,700765096,298938356,1400066568,2098630,2098628,298458398,1718093084,298938368,2108637,997921049,2098629,1718088046,1718093085,997921050,298838363,2103632,700585042,1718088045,298468389,1718088044,298468390,298458396],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":225,\"model_id\":158814627422,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,97,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0v4gy4ofryfda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,844931086908638,1015914,700190087,1000031,1400285055,1213641,2018619,2023641,298893311,1049141,700005513,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,700750053,1400025118,822120592853526,298933384,2068629,298938357,2108629,700765096,298938356,1400066568,2098630,2098628,298458398,1718093084,298938368,2108637,997921049,2098629,1718088046,1718093085,997921050,298838363,2103632,700585042,1718088045,298468389,1718088044,298468390,298458396],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":225,\"model_id\":158814627422,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,97,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26312848718",
"debug_info": null
},
{
"item_basic": {
"itemid": 27603070417,
"shopid": 134200929,
"name": "REIWA AC WINDOW PORTABLE REIWA CW-0501RA CW 0501RA CW 0501 RA 1/2 Air Conditioner 0.5 1 PK AC Window 0.5PK 370 WATT LOW WATT, AWET, MURAH, PENDINGIN CEPAT GARANSI RESMI",
"label_ids": [
1400095067,
1400285005,
844931064601283,
1213641,
1000031,
1718093079,
2018619,
2023641,
1015914,
700190087,
700765096,
1400285055,
1049112,
1049127,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
822120592853526,
834403089593352,
298933384,
2108629,
298458396,
1718093084
],
"image": "id-11134207-7r98r-lwmnw2litnsc91",
"images": [
"id-11134207-7r98r-lwmnw2litnsc91",
"id-11134207-7r98r-lwmnw2liv2csad",
"id-11134207-7r98s-lwmnw2lixvhobe",
"id-11134207-7r98p-lwmnw2liwgx884",
"id-11134207-7r98o-lwmnw2lil8fxd1",
"id-11134207-7r98y-lwmnw2lio1kte9",
"id-11134207-7r992-lwmnw2limn0d1f",
"id-11134207-7ra0g-mdmxqxn1if4i16"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1718619221,
"sold": 1,
"historical_sold": 20,
"liked": false,
"liked_count": 30,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 9,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": 224900000000,
"price_max_before_discount": 224900000000,
"hidden_price_display": null,
"price_before_discount": 224900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-13%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PACKING",
"options": [
"0501RA",
"0501RA // KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
9,
0,
0,
0,
0,
9
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 828934317457408,
"price": 194900000000,
"strikethrough_price": 224900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-13%",
"model_id": 286163165193,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 224900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 20,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 20,
"display_sold_count_text": "20"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Cipta Agung Electronics",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
1000,
1000,
1000,
97,
0,
1000
]
},
"itemid": 27603070417,
"shopid": 134200929,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lwmnw2litnsc91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,844931064601283,1213641,1000031,1718093079,2018619,2023641,1015914,700190087,700765096,1400285055,1049112,1049127,822059908662278,825465608499232,825465608497696,2048660,2048661,822120592853526,834403089593352,298933384,2108629,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":1503,\"model_id\":286163165193,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,1000,97,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lwmnw2litnsc91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,844931064601283,1213641,1000031,1718093079,2018619,2023641,1015914,700190087,700765096,1400285055,1049112,1049127,822059908662278,825465608499232,825465608497696,2048660,2048661,822120592853526,834403089593352,298933384,2108629,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":1503,\"model_id\":286163165193,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,1000,97,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27603070417",
"debug_info": null
},
{
"item_basic": {
"itemid": 27413936114,
"shopid": 234197686,
"name": "REIWA Ac Window 1/2PK - AC0501RA - 100% ORI",
"label_ids": [
1428713,
1718087960,
844931064601283,
844931086908638,
1718093079,
1015914,
700190087,
1000031,
1213641,
1400285055,
2018619,
2023641,
1059152,
700005489,
822059908662278,
834403089593352,
825465608497696,
840990690654214,
837860934119952,
840955085144628,
825465608492064,
827380695406658,
825465608499232,
700830032,
2048660,
2048661,
298463379,
2108629,
298458398,
1718093084,
1718088045,
298468390,
298468389,
298458396,
1718088044
],
"image": "id-11134207-7rash-m1c87lep361i3a",
"images": [
"id-11134207-7rash-m1c87lep361i3a",
"id-11134207-7ras8-m1c87lep35r7f3",
"id-11134207-7rasd-m1c87lep4kdw23",
"id-11134207-7rasl-m1c87lep35rb1f",
"id-11134207-7rask-m1c87lep35lqd5",
"id-11134207-7rasb-m1c87lep364v5b",
"id-11134207-7ras9-m1c87lep363p7e",
"id-11134207-7rasb-m1c87lep368jbb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1728877852,
"sold": 1,
"historical_sold": 41,
"liked": false,
"liked_count": 33,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 18,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.666666666666667,
"rating_count": [
18,
0,
0,
1,
4,
13
],
"rcount_with_context": 5,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 128075158198,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 41,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 41,
"display_sold_count_text": "41"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ReeSeLL",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
1000,
1000,
0,
1000
]
},
"itemid": 27413936114,
"shopid": 234197686,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m1c87lep361i3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1718093079,1015914,700190087,1000031,1213641,1400285055,2018619,2023641,1059152,700005489,822059908662278,834403089593352,825465608497696,840990690654214,837860934119952,840955085144628,825465608492064,827380695406658,825465608499232,700830032,2048660,2048661,298463379,2108629,298458398,1718093084,1718088045,298468390,298468389,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2363,\"model_id\":128075158198,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m1c87lep361i3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1718093079,1015914,700190087,1000031,1213641,1400285055,2018619,2023641,1059152,700005489,822059908662278,834403089593352,825465608497696,840990690654214,837860934119952,840955085144628,825465608492064,827380695406658,825465608499232,700830032,2048660,2048661,298463379,2108629,298458398,1718093084,1718088045,298468390,298468389,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2363,\"model_id\":128075158198,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27413936114",
"debug_info": null
},
{
"item_basic": {
"itemid": 28376871832,
"shopid": 1111286142,
"name": "[ GARANSI RESMI ] REIWA AC WINDOW 1 PK CW-0901RA praktis bisa pasang sendiri pendingin low watt",
"label_ids": [
844931064601283,
1718093079,
1015914,
700190087,
1718087960,
1428713,
2018619,
298463379,
298888358,
298938357,
1400285055,
2023641,
1049116,
1049117,
822059908662278,
825465608499232,
825465608497696,
1400025118,
2108629,
298933384,
298938368,
2098629,
2098630,
1718093085,
997921049,
1718088046,
1718088045,
2103632,
2108637,
2098628,
298468389,
997921050,
700585042
],
"image": "id-11134207-7rbk8-m6hpx5z8mi7h46",
"images": [
"id-11134207-7rbk8-m6hpx5z8mi7h46",
"id-11134207-7rbkd-m6hpx5z8pbg429",
"id-11134207-7rbk9-m6hpx5z8qq0k24",
"id-11134207-7rbk6-m6hpx5z8uxpwaf",
"id-11134207-7rbk3-m6hpx5z8tj5g9b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1740106609,
"sold": 3,
"historical_sold": 9,
"liked": false,
"liked_count": 8,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 245000000000,
"price_min": 245000000000,
"price_max": 245000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvm-mfxplk4xtsso43.16000081760687580.mp4",
"thumb_url": "id-11110105-6vdvm-mfxplk4xtsso43_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6vdvm-mfxplk4xtsso43",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvm-mfxplk4xtsso43.16000081760687580.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mfxplk4xtsso43.16000081760687580.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mfxplk4xtsso43.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 245000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 247686917796,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 245000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 9,
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_display_sold_count": 9,
"display_sold_count_text": "9"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Pionier Electronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
97
]
},
"itemid": 28376871832,
"shopid": 1111286142,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6hpx5z8mi7h46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1718087960,1428713,2018619,298463379,298888358,298938357,1400285055,2023641,1049116,1049117,822059908662278,825465608499232,825465608497696,1400025118,2108629,298933384,298938368,2098629,2098630,1718093085,997921049,1718088046,1718088045,2103632,2108637,2098628,298468389,997921050,700585042],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":1776,\"model_id\":247686917796,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6hpx5z8mi7h46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1718087960,1428713,2018619,298463379,298888358,298938357,1400285055,2023641,1049116,1049117,822059908662278,825465608499232,825465608497696,1400025118,2108629,298933384,298938368,2098629,2098630,1718093085,997921049,1718088046,1718088045,2103632,2108637,2098628,298468389,997921050,700585042],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":1776,\"model_id\":247686917796,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28376871832",
"debug_info": null
},
{
"item_basic": {
"itemid": 45403668474,
"shopid": 1709284149,
"name": "REIWA CW-0501RA / CW0501RA WINDOW AIR CONDITIONER 1/2 PK",
"label_ids": [
844931064601283,
844931086908638,
1049128,
700005504,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
825465608493600,
1718596,
1718093079,
1718087960,
1428713,
298488495,
299033477,
2213765
],
"image": "sg-11134201-81zw6-mio1nj0emvpg19",
"images": [
"sg-11134201-81zw6-mio1nj0emvpg19",
"sg-11134201-81ztn-mio1njfywg771f",
"sg-11134201-81zvm-mio1njyqkyyu65",
"sg-11134201-81zwc-mio1nkes696v83",
"sg-11134201-81ztg-mio1nks9vgua87"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766640213,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 79628000000,
"price_min": 79628000000,
"price_max": 79628000000,
"price_min_before_discount": 199070000000,
"price_max_before_discount": 199070000000,
"hidden_price_display": null,
"price_before_discount": 199070000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-60%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 825842343673856,
"price": 79628000000,
"strikethrough_price": 199070000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-60%",
"model_id": 320348511914,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199070000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "s_nb6ntsb6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000
]
},
"itemid": 45403668474,
"shopid": 1709284149,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw6-mio1nj0emvpg19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049128,700005504,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1718596,1718093079,1718087960,1428713,298488495,299033477,2213765],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2478,\"model_id\":320348511914,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zw6-mio1nj0emvpg19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049128,700005504,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1718596,1718093079,1718087960,1428713,298488495,299033477,2213765],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2478,\"model_id\":320348511914,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45403668474",
"debug_info": null
},
{
"item_basic": {
"itemid": 29678473845,
"shopid": 45564062,
"name": "AC Jendela REIWA 1/2 PK CW-0501RA 0,5 PK",
"label_ids": [
1718087960,
1428713,
844931064601283,
298463379,
1213641,
2018619,
2023641,
298893311,
1400285055,
1015914,
700190087,
1718093079,
2108629,
2068629,
298938357,
1049112,
1049147,
822059908662278,
825465608492064,
834403089593352,
298468389,
1718088045,
298468390,
1718088044,
298458396,
298458398,
2098628,
1718093084,
298938368,
2098629
],
"image": "id-11134207-7rbk7-m6z8b10iqikc2d",
"images": [
"id-11134207-7rbk7-m6z8b10iqikc2d",
"id-11134207-7rbk2-m6z8b10iqip6e2",
"id-11134207-7rbkb-m6z8b10iqijlb3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1741166527,
"sold": 1,
"historical_sold": 10,
"liked": false,
"liked_count": 5,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 8,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 209000000000,
"price_min": 209000000000,
"price_max": 209000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
8,
0,
0,
0,
0,
8
],
"rcount_with_context": 5,
"rcount_with_image": 6
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp696RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 198276041924,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 10,
"display_sold_count_text": "10"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp696RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "digitalniagamakmur",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 29678473845,
"shopid": 45564062,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-m6z8b10iqikc2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1213641,2018619,2023641,298893311,1400285055,1015914,700190087,1718093079,2108629,2068629,298938357,1049112,1049147,822059908662278,825465608492064,834403089593352,298468389,1718088045,298468390,1718088044,298458396,298458398,2098628,1718093084,298938368,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4131,\"model_id\":198276041924,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-m6z8b10iqikc2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1213641,2018619,2023641,298893311,1400285055,1015914,700190087,1718093079,2108629,2068629,298938357,1049112,1049147,822059908662278,825465608492064,834403089593352,298468389,1718088045,298468390,1718088044,298458396,298458398,2098628,1718093084,298938368,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4131,\"model_id\":198276041924,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29678473845",
"debug_info": null
},
{
"item_basic": {
"itemid": 29820370972,
"shopid": 78317889,
"name": "AC Window Reiwa 1/2 PK CW-0501RA Direct Cooling",
"label_ids": [
700025282,
298463379,
1400066568,
1718093079,
1213641,
1000031,
1015914,
700190087,
2018619,
1400285055,
844931086908638,
700765096,
700005495,
700005490,
2048660,
2048661,
822059908662278,
825465608499232,
834403089593352,
825465608497696,
837860934119952,
825465608492064,
2108629,
298468389,
1718088045,
298468390,
1718088044,
298458396,
298458398,
1718093084
],
"image": "id-11134207-7rasj-m3nb5aq7qso03b",
"images": [
"id-11134207-7rasj-m3nb5aq7qso03b",
"id-11134207-7rask-m3nb5aq7xti81d",
"id-11134207-7rasi-m3nb5aq7z82odb",
"id-11134207-7rasb-m3nb5aq80mn42e",
"id-11134207-7rasa-m3nb5aq83fs0ec",
"id-11134207-7rasa-m3nb5aq7s78gad",
"id-11134207-7rasc-m3nb5aq7tlsw6b",
"id-11134207-7rasm-m3nb5aq7v0dcd9",
"id-11134207-7rasa-m3nb5aq7wexse1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1733907340,
"sold": 0,
"historical_sold": 2,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 237137359337,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "EVEREST ELECTRONIC",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000
]
},
"itemid": 29820370972,
"shopid": 78317889,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m3nb5aq7qso03b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,298463379,1400066568,1718093079,1213641,1000031,1015914,700190087,2018619,1400285055,844931086908638,700765096,700005495,700005490,2048660,2048661,822059908662278,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,2108629,298468389,1718088045,298468390,1718088044,298458396,298458398,1718093084],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2044,\"model_id\":237137359337,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m3nb5aq7qso03b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,298463379,1400066568,1718093079,1213641,1000031,1015914,700190087,2018619,1400285055,844931086908638,700765096,700005495,700005490,2048660,2048661,822059908662278,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,2108629,298468389,1718088045,298468390,1718088044,298458396,298458398,1718093084],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2044,\"model_id\":237137359337,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29820370972",
"debug_info": null
},
{
"item_basic": {
"itemid": 27032983103,
"shopid": 36168193,
"name": "AC WIDOW REIWA 1/2 Pk Tanpa Pipa / AC Pakai Freon R32 / AC REIWA Window 1/2 / AC PORTABLE / AC MOBILE / PENDINGIN RUANGAN",
"label_ids": [
2023641,
2018619,
844931064601283,
1049112,
700005512,
822059908662278,
825465608492064,
834403089593352,
1213641,
825465608499232,
1015914,
700190087,
298893311,
825465608497696,
1718093079,
298463379,
2048660,
2048661,
298933384,
2108629,
298468390,
1718088045,
298468389,
298458398,
1718093084,
1718088044,
298458396
],
"image": "sg-11134201-7rdxt-mbt5r5caguq50c",
"images": [
"sg-11134201-7rdxt-mbt5r5caguq50c",
"sg-11134201-7rdxu-mbt5r5km4ms69b",
"sg-11134201-7rdyf-mbt5r5rjt2d572",
"sg-11134201-7rdy1-mbt5r5xxl6kt0c",
"sg-11134201-7rdxa-mbt5r65f8ri18d",
"sg-11134201-7rdyk-mbt5r6f4ukba01",
"sg-11134201-7rdy7-mbt5r6limm9l22",
"sg-11134201-7rdwk-mbt5r6r2ei07d1",
"sg-11134201-7rdya-mbt5r6y02zudfc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1744345151,
"sold": 1,
"historical_sold": 12,
"liked": false,
"liked_count": 62,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 6,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199207300000,
"price_min": 199207300000,
"price_max": 199207300000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.833333333333333,
"rating_count": [
6,
0,
0,
0,
1,
5
],
"rcount_with_context": 2,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199207300000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 258147261918,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199207300000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 12,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 12,
"display_sold_count_text": "12"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Zhuper Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMjQzLjExOF97YjExYmEzYWY0ODU1N2NjMjFiZGEwOGVmNTg3Y2M5MDA6MDIwMDAwYTY4YThkZmI3NTowMTAwMDFmY2E1MDNkYTk4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MjU1NzQ2ODkwNw==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
1000,
91,
97
]
},
"itemid": 27032983103,
"shopid": 36168193,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxt-mbt5r5caguq50c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,825465608499232,1015914,700190087,298893311,825465608497696,1718093079,298463379,2048660,2048661,298933384,2108629,298468390,1718088045,298468389,298458398,1718093084,1718088044,298458396],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":389,\"model_id\":258147261918,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxt-mbt5r5caguq50c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,825465608499232,1015914,700190087,298893311,825465608497696,1718093079,298463379,2048660,2048661,298933384,2108629,298468390,1718088045,298468389,298458398,1718093084,1718088044,298458396],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":389,\"model_id\":258147261918,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27032983103",
"debug_info": null
},
{
"item_basic": {
"itemid": 27032983103,
"shopid": 36168193,
"name": "AC WIDOW REIWA 1/2 Pk Tanpa Pipa / AC Pakai Freon R32 / AC REIWA Window 1/2 / AC PORTABLE / AC MOBILE / PENDINGIN RUANGAN",
"label_ids": [
2023641,
2018619,
844931064601283,
1049112,
700005512,
822059908662278,
825465608492064,
834403089593352,
1213641,
825465608499232,
1015914,
700190087,
298893311,
825465608497696,
1718093079,
298463379,
2048660,
2048661,
298933384,
2108629,
298468389,
1718088045,
298468390,
298458398,
1718093084,
298458396,
1718088044
],
"image": "sg-11134201-7rdxt-mbt5r5caguq50c",
"images": [
"sg-11134201-7rdxt-mbt5r5caguq50c",
"sg-11134201-7rdxu-mbt5r5km4ms69b",
"sg-11134201-7rdyf-mbt5r5rjt2d572",
"sg-11134201-7rdy1-mbt5r5xxl6kt0c",
"sg-11134201-7rdxa-mbt5r65f8ri18d",
"sg-11134201-7rdyk-mbt5r6f4ukba01",
"sg-11134201-7rdy7-mbt5r6limm9l22",
"sg-11134201-7rdwk-mbt5r6r2ei07d1",
"sg-11134201-7rdya-mbt5r6y02zudfc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1744345151,
"sold": 1,
"historical_sold": 12,
"liked": false,
"liked_count": 62,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 6,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199207300000,
"price_min": 199207300000,
"price_max": 199207300000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.833333333333333,
"rating_count": [
6,
0,
0,
0,
1,
5
],
"rcount_with_context": 2,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199207300000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 258147261918,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199207300000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 12,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 12,
"display_sold_count_text": "12"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Zhuper Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
1000,
91,
97
]
},
"itemid": 27032983103,
"shopid": 36168193,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxt-mbt5r5caguq50c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,825465608499232,1015914,700190087,298893311,825465608497696,1718093079,298463379,2048660,2048661,298933384,2108629,298468389,1718088045,298468390,298458398,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":388,\"model_id\":258147261918,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxt-mbt5r5caguq50c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,825465608499232,1015914,700190087,298893311,825465608497696,1718093079,298463379,2048660,2048661,298933384,2108629,298468389,1718088045,298468390,298458398,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":388,\"model_id\":258147261918,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27032983103",
"debug_info": null
},
{
"item_basic": {
"itemid": 25789043770,
"shopid": 286912607,
"name": "REIWA AC Window 1/2 PK CW-0501RA 0,5 PK",
"label_ids": [
1428713,
1718087960,
844931064601283,
298463379,
1059152,
1059154,
822059908662278,
825465608492064,
822120592853526,
1015914,
700190087,
1213641,
1000031,
1718093079,
2018619,
2023641,
1400066568,
1400285055,
825465608497696,
700830032,
834403089593352,
2048661,
2048660,
2108629,
1718088044,
1718088045,
298458398,
298468389,
298458396,
1718093084,
298468390
],
"image": "id-11134207-7ra0o-md479viz7gis6e",
"images": [
"id-11134207-7ra0o-md479viz7gis6e",
"id-11134207-7ra0t-md479vip7v2wda",
"id-11134207-7ra0r-md479viz8v382e",
"id-11134207-7ra0u-md479vip7v0582",
"id-11134207-7ra0k-md479vip7uws20",
"id-11134207-7ra0r-md479vjthh7oc8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1733217423,
"sold": 3,
"historical_sold": 13,
"liked": false,
"liked_count": 17,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 9,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "VARIASI",
"options": [
"CW-05 1/2 PK UNIT",
"CW-05 1/2PK PASANG",
"CW-09 1 PK UNIT SAJA",
"CW-09 1 PK PASANG"
],
"images": [
"id-11134207-7ra0t-md479vjtivs4fa",
"id-11134207-7ra0l-md479vjtkack68",
"id-11134207-7ra0s-md479vjtlox02c",
"id-11134207-7ra0s-md479vjtn3hg1f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
9,
0,
0,
0,
0,
9
],
"rcount_with_context": 3,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 178656124641,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 13,
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_display_sold_count": 13,
"display_sold_count_text": "13"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SILENGKAP ELECTRONIC",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
0,
1000
]
},
"itemid": 25789043770,
"shopid": 286912607,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0o-md479viz7gis6e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608492064,822120592853526,1015914,700190087,1213641,1000031,1718093079,2018619,2023641,1400066568,1400285055,825465608497696,700830032,834403089593352,2048661,2048660,2108629,1718088044,1718088045,298458398,298468389,298458396,1718093084,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2536,\"model_id\":178656124641,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0o-md479viz7gis6e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1059152,1059154,822059908662278,825465608492064,822120592853526,1015914,700190087,1213641,1000031,1718093079,2018619,2023641,1400066568,1400285055,825465608497696,700830032,834403089593352,2048661,2048660,2108629,1718088044,1718088045,298458398,298468389,298458396,1718093084,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2536,\"model_id\":178656124641,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25789043770",
"debug_info": null
},
{
"item_basic": {
"itemid": 43826147496,
"shopid": 65941629,
"name": "AC WINDOW REIWA 1/2PK CW0501RA/AC REIWA 0,5PK CW0501RA NEW SERIES",
"label_ids": [
2018619,
700700063,
700025282,
2023641,
298463379,
844931086908638,
1718093079,
1049112,
700000515,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
2048660,
2048661,
822120592853526,
700765096,
298933384,
2098621,
1718087960,
1428713,
1015914,
700190087,
2108629,
1718088045,
298468389
],
"image": "id-11134207-82251-mgoti46qpczxe6",
"images": [
"id-11134207-82251-mgoti46qpczxe6",
"id-11134207-82250-mgoti46qwdu5a2",
"id-11134207-8224s-mgoti46qs64td8",
"id-11134207-82251-mgoti46quz9p16",
"id-11134207-8224t-mgoti46qqrkd5b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1762330939,
"sold": 2,
"historical_sold": 2,
"liked": false,
"liked_count": 6,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 200355000000,
"price_min": 200355000000,
"price_max": 200355000000,
"price_min_before_discount": 210900000000,
"price_max_before_discount": 210900000000,
"hidden_price_display": null,
"price_before_discount": 210900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-5%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vemy-mgvits6361hn2c.16000081762734353.mp4",
"thumb_url": "id-11110105-6vemy-mgvits6361hn2c_cover",
"duration": 33,
"version": 2,
"vid": "id-11110105-6vemy-mgvits6361hn2c",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vemy-mgvits6361hn2c.16000081762734353.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mgvits6361hn2c.16000081762734353.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mgvits6361hn2c.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "TIPE",
"options": [
"RIEWA CW0501RA"
],
"images": [
"id-11134207-8224x-mgoti46r0ljhca"
],
"properties": [],
"type": 0
},
{
"name": "PACKING",
"options": [
"DUS BAWAAN PABRIK",
"PLASTIK WRAPP 1LAPIS",
"PLASTIK WRAPP 2LAPIS",
"BUBBLE WRAPPING"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Karawang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 780398284570624,
"price": 200355000000,
"strikethrough_price": 210900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-5%",
"model_id": 350076970325,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 210900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "TOP JAYA ELECTRONIK",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
4
]
},
"itemid": 43826147496,
"shopid": 65941629,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mgoti46qpczxe6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,700025282,2023641,298463379,844931086908638,1718093079,1049112,700000515,822059908662278,825465608494624,825465608499232,825465608497696,2048660,2048661,822120592853526,700765096,298933384,2098621,1718087960,1428713,1015914,700190087,2108629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2947,\"model_id\":350076970325,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mgoti46qpczxe6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,700025282,2023641,298463379,844931086908638,1718093079,1049112,700000515,822059908662278,825465608494624,825465608499232,825465608497696,2048660,2048661,822120592853526,700765096,298933384,2098621,1718087960,1428713,1015914,700190087,2108629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2947,\"model_id\":350076970325,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43826147496",
"debug_info": null
},
{
"item_basic": {
"itemid": 24670225827,
"shopid": 93761626,
"name": "AC WINDOW REIWA 1/2PK CW-0501RA 370WATT LOWWATT 0,5PK",
"label_ids": [
298463379,
1213641,
1015914,
700190087,
1400285055,
1718093079,
2018619,
298893311,
2108629,
700765096,
2023641,
2068629,
298938357,
1049112,
1049136,
822059908662278,
2048661,
834403089593352,
825465608497696,
2048660,
298468390,
2098628,
1718088045,
2098629,
298468389,
298458396,
1718088044,
1718093084,
298458398,
298938368
],
"image": "id-11134207-7r98o-lt54jvn6xfzbef",
"images": [
"id-11134207-7r98o-lt54jvn6xfzbef",
"id-11134207-7r98y-lt54jvlt7wst07",
"id-11134207-7r991-lt54jvlt0vyl6f",
"id-11134207-7r990-lt54jvlszhe535",
"id-11134207-7r98u-lt54jvmwxunxe2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1711014280,
"sold": 1,
"historical_sold": 75,
"liked": false,
"liked_count": 59,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 29,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 203500000000,
"price_min": 203500000000,
"price_max": 203500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "JASA KIRIM",
"options": [
"INSTANT",
"KARGO"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.909090909090909,
"rating_count": [
33,
0,
1,
0,
0,
32
],
"rcount_with_context": 11,
"rcount_with_image": 6
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Depok",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp678RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 203500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 306666181934,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 203500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 75,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 75,
"display_sold_count_text": "75"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp678RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "METRO ELEKTRONIK DEPOK",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
88
]
},
"itemid": 24670225827,
"shopid": 93761626,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98o-lt54jvn6xfzbef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,1213641,1015914,700190087,1400285055,1718093079,2018619,298893311,2108629,700765096,2023641,2068629,298938357,1049112,1049136,822059908662278,2048661,834403089593352,825465608497696,2048660,298468390,2098628,1718088045,2098629,298468389,298458396,1718088044,1718093084,298458398,298938368],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4202,\"model_id\":306666181934,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98o-lt54jvn6xfzbef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,1213641,1015914,700190087,1400285055,1718093079,2018619,298893311,2108629,700765096,2023641,2068629,298938357,1049112,1049136,822059908662278,2048661,834403089593352,825465608497696,2048660,298468390,2098628,1718088045,2098629,298468389,298458396,1718088044,1718093084,298458398,298938368],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4202,\"model_id\":306666181934,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24670225827",
"debug_info": null
},
{
"item_basic": {
"itemid": 26416605488,
"shopid": 198666921,
"name": "AC Window Reiwa 1 PK CW 0901 Air Conditioner 1PK CW0901RA CW0901 RA 0901RA / 1/2 0,5 PK CW0501RA",
"label_ids": [
298463379,
844931064601283,
844931086908638,
700005513,
1049141,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
1718093079,
1015914,
700190087,
1213641,
1000031,
1400285055,
2018619,
2023641,
2048660,
2048661,
700750053,
298933384,
1400025118,
2068629,
298938357,
2108629,
822120592853526,
700765096,
1400066568,
2103632,
298458398,
1718088046,
298838363,
1718093084,
298468390,
2098628,
2108637,
2098629,
700585042,
298938368,
1718088044,
298458396,
1718088045,
1718093085,
997921049,
2098630,
997921050,
298468389
],
"image": "id-11134207-7ras8-m27yx6y0x58j24",
"images": [
"id-11134207-7ras8-m27yx6y0x58j24",
"id-11134207-7rase-m27t85dpkk8231",
"id-11134207-7rasi-m27t85dplysi44",
"id-11134207-7ras8-m27t85dpndcyb5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730798897,
"sold": 1,
"historical_sold": 38,
"liked": false,
"liked_count": 32,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 18,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 209500000000,
"price_min": 209500000000,
"price_max": 209500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1a-m27yxwgfml1511.16000101730799258.mp4",
"thumb_url": "id-11110105-7rasc-m27yxz81l5lj79",
"duration": 16,
"version": 2,
"vid": "id-11110105-6ke1a-m27yxwgfml1511",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1a-m27yxwgfml1511.16000101730799258.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m27yxwgfml1511.16000101730799258.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m27yxwgfml1511.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Kurir",
"options": [
"1 PK Express Instant",
"1 PK Paket Packing",
"1/2 PK"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.944444444444445,
"rating_count": [
18,
0,
0,
0,
1,
17
],
"rcount_with_context": 9,
"rcount_with_image": 7
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bantul",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp698RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 227069390611,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 38,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 38,
"display_sold_count_text": "38"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp698RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Lentera Star",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
0,
1000,
1000,
1000
]
},
"itemid": 26416605488,
"shopid": 198666921,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m27yx6y0x58j24\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,844931086908638,700005513,1049141,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1015914,700190087,1213641,1000031,1400285055,2018619,2023641,2048660,2048661,700750053,298933384,1400025118,2068629,298938357,2108629,822120592853526,700765096,1400066568,2103632,298458398,1718088046,298838363,1718093084,298468390,2098628,2108637,2098629,700585042,298938368,1718088044,298458396,1718088045,1718093085,997921049,2098630,997921050,298468389],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1570,\"model_id\":227069390611,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m27yx6y0x58j24\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,844931086908638,700005513,1049141,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1015914,700190087,1213641,1000031,1400285055,2018619,2023641,2048660,2048661,700750053,298933384,1400025118,2068629,298938357,2108629,822120592853526,700765096,1400066568,2103632,298458398,1718088046,298838363,1718093084,298468390,2098628,2108637,2098629,700585042,298938368,1718088044,298458396,1718088045,1718093085,997921049,2098630,997921050,298468389],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1570,\"model_id\":227069390611,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26416605488",
"debug_info": null
},
{
"item_basic": {
"itemid": 29815581897,
"shopid": 1389114260,
"name": "AC Reiwa Window 1/2 PK CW-0501RA 0,5 PK 370 watt",
"label_ids": [
844931064601283,
1718093079,
1213641,
2023641,
2018619,
298893311,
1400285055,
2108629,
298463379,
1015914,
700190087,
700765096,
844931086908638,
700005507,
1049126,
822059908662278,
2048660,
2048661,
825465608492064,
825465608499232,
825465608497696,
298468390,
1718088045,
298458396,
1718093084,
1718088044,
298468389,
298458398
],
"image": "id-11134207-7rasd-m1tekc36q2lta4",
"images": [
"id-11134207-7rasd-m1tekc36q2lta4",
"id-11134207-7rase-m1tekc36uab579",
"id-11134207-7rasc-m1tekc36vovld3",
"id-11134207-7ras9-m1tekc36svqpc3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1729917712,
"sold": 13,
"historical_sold": 145,
"liked": false,
"liked_count": 90,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 68,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": 199900000000,
"price_max_before_discount": 199900000000,
"hidden_price_display": null,
"price_before_discount": 199900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-3%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6knaz-m4psiwbeosqy01.16000081736236568.mp4",
"thumb_url": "id-11110107-6knaz-m4psiwbeosqy01_cover",
"duration": 11,
"version": 2,
"vid": "id-11110107-6knaz-m4psiwbeosqy01",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6knaz-m4psiwbeosqy01.16000081736236568.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6knaz-m4psiwbeosqy01.16000081736236568.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6knaz-m4psiwbeosqy01.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.970588235294118,
"rating_count": [
68,
0,
0,
0,
2,
66
],
"rcount_with_context": 14,
"rcount_with_image": 11
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Denpasar",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 797729777844224,
"price": 194900000000,
"strikethrough_price": 199900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-3%",
"model_id": 29532831855,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 145,
"rounded_local_monthly_sold_count": 13,
"local_monthly_sold_count_text": "13",
"rounded_display_sold_count": 145,
"display_sold_count_text": "145"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Gudangย ACย Bali",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
88,
4,
0,
1000
]
},
"itemid": 29815581897,
"shopid": 1389114260,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m1tekc36q2lta4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1213641,2023641,2018619,298893311,1400285055,2108629,298463379,1015914,700190087,700765096,844931086908638,700005507,1049126,822059908662278,2048660,2048661,825465608492064,825465608499232,825465608497696,298468390,1718088045,298458396,1718093084,1718088044,298468389,298458398],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":158,\"model_id\":29532831855,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,4,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m1tekc36q2lta4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1213641,2023641,2018619,298893311,1400285055,2108629,298463379,1015914,700190087,700765096,844931086908638,700005507,1049126,822059908662278,2048660,2048661,825465608492064,825465608499232,825465608497696,298468390,1718088045,298458396,1718093084,1718088044,298468389,298458398],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":158,\"model_id\":29532831855,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,4,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29815581897",
"debug_info": null
},
{
"item_basic": {
"itemid": 24722700869,
"shopid": 779492034,
"name": "AC WINDOW 1/2 PK REIWA CW-0501RA 0,5 PK",
"label_ids": [
1015914,
700190087,
1918643,
1049112,
1049136,
822059908662278,
822120592853526,
2018619,
2023641,
825465608492064,
1213641,
298463379,
298933384,
2068629,
298938357,
700810080,
2108629,
1718093079,
825465608497696,
1718093084,
298458398,
1718088045,
2098629,
2098628,
298458396,
1718088044,
298938368,
298468389,
298468390
],
"image": "id-11134207-8224u-mhd76an3h7nx55",
"images": [
"id-11134207-8224u-mhd76an3h7nx55"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1712463549,
"sold": 2,
"historical_sold": 8,
"liked": false,
"liked_count": 19,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Depok",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp666RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 215013197584,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 8,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 8,
"display_sold_count_text": "8"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp666RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Multi Elektonik CInere",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
97
]
},
"itemid": 24722700869,
"shopid": 779492034,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhd76an3h7nx55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1918643,1049112,1049136,822059908662278,822120592853526,2018619,2023641,825465608492064,1213641,298463379,298933384,2068629,298938357,700810080,2108629,1718093079,825465608497696,1718093084,298458398,1718088045,2098629,2098628,298458396,1718088044,298938368,298468389,298468390],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":3265,\"model_id\":215013197584,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mhd76an3h7nx55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1918643,1049112,1049136,822059908662278,822120592853526,2018619,2023641,825465608492064,1213641,298463379,298933384,2068629,298938357,700810080,2108629,1718093079,825465608497696,1718093084,298458398,1718088045,2098629,2098628,298458396,1718088044,298938368,298468389,298468390],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":3265,\"model_id\":215013197584,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24722700869",
"debug_info": null
},
{
"item_basic": {
"itemid": 26416325811,
"shopid": 1370746238,
"name": "PROMO Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK | 1 PK CW-0901RA",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608497696,
1400285055,
1015914,
700190087,
1000031,
2018619,
825465608499232,
298463379,
825465608493600,
2048660,
2048661,
825465608494624,
700765096,
298933384,
844931086908638,
700810080,
2108629,
1428713,
1718087960,
298468389
],
"image": "id-11134207-7rbk8-m8sh2yh3oqa95d",
"images": [
"id-11134207-7rbk8-m8sh2yh3oqa95d",
"id-11134207-7rasm-m2abl9f1s0v7d2",
"id-11134207-7rase-m5f506clujdp15",
"id-11134207-7rasg-m5f506clvxy585",
"id-11134207-7rasj-m5f506clt4t9d9",
"id-11134207-7rask-m5f506clrq8t67"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730533385,
"sold": 1,
"historical_sold": 61,
"liked": false,
"liked_count": 84,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 28,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 194300000000,
"price_min": 194300000000,
"price_max": 194300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Daya",
"options": [
"1/2 PK CW-0501RA",
"1 PK CW-0901RA"
],
"images": [
"id-11134207-8224v-mimgivfcohs460",
"id-11134207-8224q-mimgivfmphqc87"
],
"properties": [],
"type": 0
},
{
"name": "Packing",
"options": [
"Dus Polos",
"Wrapping",
"Packing Kayu",
"Kurir Toko"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.964285714285714,
"rating_count": [
28,
0,
0,
0,
1,
27
],
"rcount_with_context": 5,
"rcount_with_image": 4
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194300000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 195527447801,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 61,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 61,
"display_sold_count_text": "61"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "AL88 STORE",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26416325811,
"shopid": 1370746238,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m8sh2yh3oqa95d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,1400285055,1015914,700190087,1000031,2018619,825465608499232,298463379,825465608493600,2048660,2048661,825465608494624,700765096,298933384,844931086908638,700810080,2108629,1428713,1718087960,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4260,\"model_id\":195527447801,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m8sh2yh3oqa95d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,1400285055,1015914,700190087,1000031,2018619,825465608499232,298463379,825465608493600,2048660,2048661,825465608494624,700765096,298933384,844931086908638,700810080,2108629,1428713,1718087960,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4260,\"model_id\":195527447801,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26416325811",
"debug_info": null
},
{
"item_basic": {
"itemid": 27710602973,
"shopid": 49540448,
"name": "(Instant) Ac Window Reiwa 370 Watt CW-0501RA 1/2 Pk",
"label_ids": [
47,
844931064601283,
1059152,
1049124,
822059908662278,
834403089593352,
1015914,
700190087,
825465608492064,
1213641,
822120592853526,
2018619,
2023641,
298463379,
2048661,
2048660,
700765096,
298933384,
2108629,
298458396,
298468390,
298458398,
298468389
],
"image": "id-11134207-7r992-lzx3l5xwpjhke3",
"images": [
"id-11134207-7r992-lzx3l5xwpjhke3",
"id-11134207-7r98r-lzx3l5xwqy20af",
"id-11134207-7r98s-lzx3l5xwscmg8b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1725783789,
"sold": 1,
"historical_sold": 6,
"liked": false,
"liked_count": 10,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 207238400000,
"price_min": 207238400000,
"price_max": 207238400000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1e-lzx47vwnlkio49.16000081725783778.mp4",
"thumb_url": "id-11110105-7r98t-lzx482b8e45acb",
"duration": 19,
"version": 2,
"vid": "id-11110105-6ke1e-lzx47vwnlkio49",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1e-lzx47vwnlkio49.16000081725783778.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-lzx47vwnlkio49.16000081725783778.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-lzx47vwnlkio49.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "PRODUK",
"options": [
"CW-0501RA"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "LAINNYA",
"options": [
"STD UNIT",
"STD UNIT+BUBBLE WRAP",
"STD UNIT+PROTEKSI",
"PAKET PASANG"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 415140512284889,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 207238400000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 215375671246,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 207238400000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 6,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 6,
"display_sold_count_text": "6"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "myelectronic1",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
88,
97
]
},
"itemid": 27710602973,
"shopid": 49540448,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-lzx3l5xwpjhke3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,844931064601283,1059152,1049124,822059908662278,834403089593352,1015914,700190087,825465608492064,1213641,822120592853526,2018619,2023641,298463379,2048661,2048660,700765096,298933384,2108629,298458396,298468390,298458398,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":2882,\"model_id\":215375671246,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-lzx3l5xwpjhke3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,844931064601283,1059152,1049124,822059908662278,834403089593352,1015914,700190087,825465608492064,1213641,822120592853526,2018619,2023641,298463379,2048661,2048660,700765096,298933384,2108629,298458396,298468390,298458398,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":2882,\"model_id\":215375671246,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27710602973",
"debug_info": null
},
{
"item_basic": {
"itemid": 28652374734,
"shopid": 1168077,
"name": "REIWA AC Window CW-0501RA 1/2 PK / CW-0901RA 1 PK AC Low Watt",
"label_ids": [
844931064601283,
1400285055,
1718093079,
1400066568,
1015914,
700190087,
1000031,
822059908662278,
834403089593352,
1428713,
1718087960,
2018619,
822120592853526,
1049122,
1059152,
700005490,
825465608497696,
700005495,
825465608492064,
2048660,
2048661,
700765096,
844931086908638,
298933384,
2068629,
298938357,
298463379,
2108629,
1049120,
2098628,
298938368,
2098629,
1718088045,
298468389
],
"image": "id-11134207-7r98q-lwdrcia1qh6y68",
"images": [
"id-11134207-7r98q-lwdrcia1qh6y68",
"id-11134207-7r98s-lwdrcia1tabuab",
"id-11134207-7r98p-lwdrcia1rvre4a",
"sg-11134201-7rd4s-lwdrb5w4jka14f",
"sg-11134201-7rd6y-lwdramef2f5n03",
"sg-11134201-7rd46-lwdrammqq8rs3b",
"sg-11134201-7rd4c-lwdran4s19erc3",
"sg-11134201-7rd72-lwdrannda2d81c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1718074200,
"sold": 4,
"historical_sold": 16,
"liked": false,
"liked_count": 18,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 7,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 200900000000,
"price_min": 200900000000,
"price_max": 200900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Ukuran",
"options": [
"0.5 PK",
"1 PK"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "Varian",
"options": [
"Unit Saja",
"+Jasa Pasang"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.875,
"rating_count": [
8,
0,
0,
0,
1,
7
],
"rcount_with_context": 5,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp669RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 200900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 276250356626,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 200900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 16,
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_display_sold_count": 16,
"display_sold_count_text": "16"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp669RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sajun Electronic Serpong",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
4
]
},
"itemid": 28652374734,
"shopid": 1168077,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwdrcia1qh6y68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1718093079,1400066568,1015914,700190087,1000031,822059908662278,834403089593352,1428713,1718087960,2018619,822120592853526,1049122,1059152,700005490,825465608497696,700005495,825465608492064,2048660,2048661,700765096,844931086908638,298933384,2068629,298938357,298463379,2108629,1049120,2098628,298938368,2098629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":3004,\"model_id\":276250356626,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwdrcia1qh6y68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1718093079,1400066568,1015914,700190087,1000031,822059908662278,834403089593352,1428713,1718087960,2018619,822120592853526,1049122,1059152,700005490,825465608497696,700005495,825465608492064,2048660,2048661,700765096,844931086908638,298933384,2068629,298938357,298463379,2108629,1049120,2098628,298938368,2098629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":3004,\"model_id\":276250356626,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28652374734",
"debug_info": null
},
{
"item_basic": {
"itemid": 24888111095,
"shopid": 52467334,
"name": "AC REIWA 1 PK CW-0901RA CW0901 RA 0901RA 1 PK STANDARD LOW WATT AC WINDOW REIWA - MURAH",
"label_ids": [
1428713,
1718087960,
844931064601283,
844931086908638,
1059152,
700005487,
822059908662278,
825465608499232,
825465608497696,
840990690654214,
840955085144628,
825465608494624,
1718093079,
1213641,
1000031,
1015914,
700190087,
2018619,
2023641,
1400285055,
298463379,
700830032,
298933384,
2048661,
2048660,
700765096,
2068629,
298938357,
298458396,
298458398,
298468389,
298938368,
1718088045,
2098629,
1718093084,
2098628,
1718088044,
298468390
],
"image": "id-11134207-7rasf-m2bych6emvs29c",
"images": [
"id-11134207-7rasf-m2bych6emvs29c",
"id-11134207-7rasd-m2bych6emvs39f",
"id-11134207-7rasg-m2bych6emw6sec",
"id-11134207-7rash-m2bych7io2tq6a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1731040587,
"sold": 0,
"historical_sold": 10,
"liked": false,
"liked_count": 14,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 4,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 264000000000,
"price_min": 264000000000,
"price_max": 264000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1c-m2bycr1u6rg47b.16000081731040407.mp4",
"thumb_url": "id-11110105-7ras8-m2bycst3mjin9e",
"duration": 15,
"version": 2,
"vid": "id-11110105-6ke1c-m2bycr1u6rg47b",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1c-m2bycr1u6rg47b.16000081731040407.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m2bycr1u6rg47b.16000081731040407.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m2bycr1u6rg47b.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
4,
0,
0,
0,
0,
4
],
"rcount_with_context": 2,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp880RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 264000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 246980552969,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 264000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 10,
"display_sold_count_text": "10"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp880RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Silf electric",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
88
]
},
"itemid": 24888111095,
"shopid": 52467334,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m2bych6emvs29c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1059152,700005487,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608494624,1718093079,1213641,1000031,1015914,700190087,2018619,2023641,1400285055,298463379,700830032,298933384,2048661,2048660,700765096,2068629,298938357,298458396,298458398,298468389,298938368,1718088045,2098629,1718093084,2098628,1718088044,298468390],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":2207,\"model_id\":246980552969,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m2bych6emvs29c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1059152,700005487,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608494624,1718093079,1213641,1000031,1015914,700190087,2018619,2023641,1400285055,298463379,700830032,298933384,2048661,2048660,700765096,2068629,298938357,298458396,298458398,298468389,298938368,1718088045,2098629,1718093084,2098628,1718088044,298468390],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":2207,\"model_id\":246980552969,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24888111095",
"debug_info": null
},
{
"item_basic": {
"itemid": 44204281134,
"shopid": 1533021916,
"name": "WINDOW AC 1/2 PK REIWA CW0501RA / TANPA PIPA AC / WINDOW AIR CONDITIONER 0,5 PK PALEMBANG",
"label_ids": [
2018619,
1718087960,
1428713,
844931064601283,
1049128,
700005504,
822059908662278,
825465608492064,
834403089593352,
1213641,
1718093065,
1015914,
700190087,
1400066568,
822120592853526,
825465608497696,
700830032,
2048661,
2048660,
1718093079,
298463379,
1400285055,
844931086908638,
2068629,
298938357,
298933384,
1400025118,
700810080,
1718088045,
997921049,
2103632,
298468389,
2098630,
1718093085,
1718088044,
997921050,
2098629,
298458398,
298938368,
1718088046,
2098628,
298468390,
700585042,
298838363,
1718093084,
298458396,
2108637
],
"image": "sg-11134201-7rau8-mawk5690gbnn9a",
"images": [
"sg-11134201-7rau8-mawk5690gbnn9a",
"sg-11134201-7rats-mawk56gi5cznee",
"sg-11134201-7ratm-mawk56mvw28zb3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1749721656,
"sold": 1,
"historical_sold": 22,
"liked": false,
"liked_count": 35,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 12,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 224700000000,
"price_min": 224700000000,
"price_max": 224700000000,
"price_min_before_discount": 440000000000,
"price_max_before_discount": 440000000000,
"hidden_price_display": null,
"price_before_discount": 440000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-49%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110106/mms/sg-11110106-6kiq0-mawk15q9zazmd6.16000101749721473.mp4",
"thumb_url": "sg-11110106-6kiq0-mawk15q9zazmd6_cover",
"duration": 60,
"version": 2,
"vid": "sg-11110106-6kiq0-mawk15q9zazmd6",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110106/mms/sg-11110106-6kiq0-mawk15q9zazmd6.16000101749721473.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiq0-mawk15q9zazmd6.16000101749721473.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kiq0-mawk15q9zazmd6.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.916666666666667,
"rating_count": [
12,
0,
0,
0,
1,
11
],
"rcount_with_context": 4,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 754487376004096,
"price": 224700000000,
"strikethrough_price": 440000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-49%",
"model_id": 280362647232,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 440000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 22,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 22,
"display_sold_count_text": "22"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Mandiri Sukses 98 Elektronik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
88
]
},
"itemid": 44204281134,
"shopid": 1533021916,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rau8-mawk5690gbnn9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,1049128,700005504,822059908662278,825465608492064,834403089593352,1213641,1718093065,1015914,700190087,1400066568,822120592853526,825465608497696,700830032,2048661,2048660,1718093079,298463379,1400285055,844931086908638,2068629,298938357,298933384,1400025118,700810080,1718088045,997921049,2103632,298468389,2098630,1718093085,1718088044,997921050,2098629,298458398,298938368,1718088046,2098628,298468390,700585042,298838363,1718093084,298458396,2108637],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":530,\"model_id\":280362647232,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rau8-mawk5690gbnn9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,1049128,700005504,822059908662278,825465608492064,834403089593352,1213641,1718093065,1015914,700190087,1400066568,822120592853526,825465608497696,700830032,2048661,2048660,1718093079,298463379,1400285055,844931086908638,2068629,298938357,298933384,1400025118,700810080,1718088045,997921049,2103632,298468389,2098630,1718093085,1718088044,997921050,2098629,298458398,298938368,1718088046,2098628,298468390,700585042,298838363,1718093084,298458396,2108637],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":530,\"model_id\":280362647232,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44204281134",
"debug_info": null
},
{
"item_basic": {
"itemid": 25526998281,
"shopid": 53792276,
"name": "AC Window 1/2pk Low Watt Reiwa CW-0501RA | 0,5pk 0.5 pk 1/2 remote",
"label_ids": [
1059156,
700000521,
822059908662278,
825465608499232,
825465608497696,
1213641,
1400285055,
1000031,
2018619,
1015914,
700190087,
2048661,
2048660,
700765096,
298933384,
1718093079,
298463379,
2108629,
298458396,
1718088045,
298468389,
298468390,
1718093084,
1718088044,
298458398
],
"image": "id-11134207-7r98y-lulz20gqjj6896",
"images": [
"id-11134207-7r98y-lulz20gqjj6896",
"id-11134207-7rasa-m4x1339atiu5d5",
"id-11134207-7r98s-lulz20gqkxqo91",
"id-11134207-7r991-lulz20gqmcb445",
"id-11134207-7r98x-lulz20gqnqvkc5",
"id-11134207-7r990-lulz20gqp5g055"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1714214224,
"sold": 2,
"historical_sold": 14,
"liked": false,
"liked_count": 26,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 9,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 203900000000,
"price_min": 203900000000,
"price_max": 203900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.888888888888889,
"rating_count": [
9,
0,
0,
0,
1,
8
],
"rcount_with_context": 5,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Cilacap",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 203900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 185063148275,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 203900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 14,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 14,
"display_sold_count_text": "14"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "kita_shopping",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
0,
1000,
1000,
1000
]
},
"itemid": 25526998281,
"shopid": 53792276,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lulz20gqjj6896\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059156,700000521,822059908662278,825465608499232,825465608497696,1213641,1400285055,1000031,2018619,1015914,700190087,2048661,2048660,700765096,298933384,1718093079,298463379,2108629,298458396,1718088045,298468389,298468390,1718093084,1718088044,298458398],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":662,\"model_id\":185063148275,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lulz20gqjj6896\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059156,700000521,822059908662278,825465608499232,825465608497696,1213641,1400285055,1000031,2018619,1015914,700190087,2048661,2048660,700765096,298933384,1718093079,298463379,2108629,298458396,1718088045,298468389,298468390,1718093084,1718088044,298458398],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":662,\"model_id\":185063148275,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25526998281",
"debug_info": null
},
{
"item_basic": {
"itemid": 25820335510,
"shopid": 85961994,
"name": "REIWA AC Window 1/2 PK CW-0501RA AC Low Watt 0,5 PK AC Window Reiwa 1/2 PK FREE PACKING KAYU KARGO",
"label_ids": [
13,
38,
39,
47,
1000501,
1000509,
1400095067,
1400285005,
844931064601283,
1400066568,
1015914,
700190087,
1400285055,
1718093079,
1000031,
1918643,
822059908662278,
822120592853526,
825465608494624,
825465608499232,
834403089593352,
1428713,
1718087960,
2018618,
2018619,
700005490,
1012729,
298893311,
825465608497696,
700005495,
2153644,
700830032,
2213652,
298463379,
1049120,
1059152,
1049122,
2008656,
298468389,
1718088045
],
"image": "id-11134207-81ztg-meo7b9jiy1373b",
"images": [
"id-11134207-81ztg-meo7b9jiy1373b",
"sg-11134201-7rccz-lt69j4bqsxzjba",
"id-11134207-7r98y-lvcm24ntd1fsa5",
"sg-11134201-7rcdk-lt69j5p4solt65",
"id-11134207-7r98u-lvcm24ntbmvc8f",
"sg-11134201-7rced-lt69j40n975y44",
"sg-11134201-7rcel-lt69j4mkd3qq6c",
"sg-11134201-7rcci-lt69j4s44zs327",
"sg-11134201-7rce9-lt69j52dpyis1f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1711082832,
"sold": 13,
"historical_sold": 159,
"liked": false,
"liked_count": 1896,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 71,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 214900000000,
"price_min": 214900000000,
"price_max": 214900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1l-m2c072y5sdqi30.16000081731043508.mp4",
"thumb_url": "id-11110105-7rasa-m2c076zjvyuq02",
"duration": 55,
"version": 2,
"vid": "id-11110105-6ke1l-m2c072y5sdqi30",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1l-m2c072y5sdqi30.16000081731043508.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1l-m2c072y5sdqi30.16000081731043508.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1l-m2c072y5sdqi30.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Ukuran",
"options": [
"0.5 PK",
"1 PK"
],
"images": [
"id-11134207-7rash-m27uagbz3fj714",
"id-11134207-7rash-m27uagbz20yr38"
],
"properties": [],
"type": 0
},
{
"name": "Jasa Instalasi",
"options": [
"Tanpa Pasang",
"Plus Pasang"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
75,
0,
0,
0,
0,
75
],
"rcount_with_context": 32,
"rcount_with_image": 24
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 214900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 266250642955,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 214900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 159,
"rounded_local_monthly_sold_count": 13,
"local_monthly_sold_count_text": "13",
"rounded_display_sold_count": 159,
"display_sold_count_text": "159"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": " Sajun Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
88,
97,
4
]
},
"itemid": 25820335510,
"shopid": 85961994,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztg-meo7b9jiy1373b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1015914,700190087,1400285055,1718093079,1000031,1918643,822059908662278,822120592853526,825465608494624,825465608499232,834403089593352,1428713,1718087960,2018618,2018619,700005490,1012729,298893311,825465608497696,700005495,2153644,700830032,2213652,298463379,1049120,1059152,1049122,2008656,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":3326,\"model_id\":266250642955,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztg-meo7b9jiy1373b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[13,38,39,47,1000501,1000509,1400095067,1400285005,844931064601283,1400066568,1015914,700190087,1400285055,1718093079,1000031,1918643,822059908662278,822120592853526,825465608494624,825465608499232,834403089593352,1428713,1718087960,2018618,2018619,700005490,1012729,298893311,825465608497696,700005495,2153644,700830032,2213652,298463379,1049120,1059152,1049122,2008656,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":3326,\"model_id\":266250642955,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25820335510",
"debug_info": null
},
{
"item_basic": {
"itemid": 28535862331,
"shopid": 302036739,
"name": "COD - REIWA AC WINDOW CW-0501RA Pendingin Ruangan 0.5 PK Auto Voltage Garansi Resmi",
"label_ids": [
1002164,
2018618,
1428713,
1718087960,
844931064601283,
844931086908638,
298463379,
1718093079,
1213641,
1718093065,
1015914,
700190087,
298893311,
1400285055,
2108629,
2153644,
700830032,
2068629,
298938357,
700765096,
1400066568,
700000501,
1049112,
822059908662278,
822120592853526,
825465608494624,
825465608499232,
825465608497696,
2048660,
2048661,
2213652,
2008656,
1718088045,
1718093084,
298938368,
2098629,
1718088044,
298468390,
298468389,
298458398,
298458396,
2098628
],
"image": "id-11134207-81ztc-mf20n5o3c6q180",
"images": [
"id-11134207-81ztc-mf20n5o3c6q180",
"id-11134207-7rbk5-m9b9cdwqiqhed1",
"id-11134207-7rbk7-m9b9cdyohb1934",
"id-11134207-7rbk9-m9b9cdwqy6qaa7",
"id-11134207-7rbk5-m9b9cdwqiqsdf9",
"id-11134207-7rbk1-m9b9cdyoiplp21",
"id-11134207-7rbk1-m9b9cdyofwgtd2",
"id-11134207-7rbk8-m9b9cdyok465e2",
"id-11134207-7rbk4-m9b9cdyoliqlef"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1746253599,
"sold": 4,
"historical_sold": 219,
"liked": false,
"liked_count": 324,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 99,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 197500000000,
"price_min": 197500000000,
"price_max": 197500000000,
"price_min_before_discount": 517500000000,
"price_max_before_discount": 517500000000,
"hidden_price_display": null,
"price_before_discount": 517500000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-62%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vemz-mey0v5ay1nnobf.16000081758527276.mp4",
"thumb_url": "id-11110105-6vemz-mey0v5ay1nnobf_cover",
"duration": 33,
"version": 2,
"vid": "id-11110105-6vemz-mey0v5ay1nnobf",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vemz-mey0v5ay1nnobf.16000081758527276.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mey0v5ay1nnobf.16000081758527276.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mey0v5ay1nnobf.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.91919191919192,
"rating_count": [
99,
0,
1,
0,
5,
93
],
"rcount_with_context": 37,
"rcount_with_image": 20
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-81ztc-mf20n5o3c6q180",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp658RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 754217682272256,
"price": 197500000000,
"strikethrough_price": 517500000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-62%",
"model_id": 243366128658,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 517500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 0,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 219,
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_display_sold_count": 219,
"display_sold_count_text": "219"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp658RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "OXO Warehouse Official Shop",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91,
97,
0,
1000,
88,
1000,
1000,
4
]
},
"itemid": 28535862331,
"shopid": 302036739,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mf20n5o3c6q180\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1213641,1718093065,1015914,700190087,298893311,1400285055,2108629,2153644,700830032,2068629,298938357,700765096,1400066568,700000501,1049112,822059908662278,822120592853526,825465608494624,825465608499232,825465608497696,2048660,2048661,2213652,2008656,1718088045,1718093084,298938368,2098629,1718088044,298468390,298468389,298458398,298458396,2098628],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":304,\"model_id\":243366128658,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97,0,1000,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mf20n5o3c6q180\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1213641,1718093065,1015914,700190087,298893311,1400285055,2108629,2153644,700830032,2068629,298938357,700765096,1400066568,700000501,1049112,822059908662278,822120592853526,825465608494624,825465608499232,825465608497696,2048660,2048661,2213652,2008656,1718088045,1718093084,298938368,2098629,1718088044,298468390,298468389,298458398,298458396,2098628],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":304,\"model_id\":243366128658,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97,0,1000,88,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28535862331",
"debug_info": null
},
{
"item_basic": {
"itemid": 28609010869,
"shopid": 62356570,
"name": "AC Window REIWA CW-0501RA CW 0501RA 0.5 PK 1/2 PK",
"label_ids": [
844931064601283,
1400066568,
1718093079,
1015914,
700190087,
1000031,
1400285055,
2018619,
2023641,
298893311,
298463379,
844931086908638,
700005542,
1049116,
822059908662278,
825465608497696,
1400025118,
2108629,
2103651,
2143613,
997921049,
1718088045,
997921050,
298468389,
1718088046,
700585042,
1718093085
],
"image": "id-11134207-7r990-lzbp0kmohnsdf1",
"images": [
"id-11134207-7r990-lzbp0kmohnsdf1",
"id-11134207-7r98w-lzbp0kmohnoo59",
"id-11134207-7r98o-lzbp0kmohnb9d9",
"id-11134207-7r992-lzbp0kmoj2cte2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1724487179,
"sold": 5,
"historical_sold": 73,
"liked": false,
"liked_count": 111,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 26,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 214500000000,
"price_min": 214500000000,
"price_max": 214500000000,
"price_min_before_discount": 239900000000,
"price_max_before_discount": 239900000000,
"hidden_price_display": null,
"price_before_discount": 239900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-11%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.888888888888889,
"rating_count": [
27,
0,
0,
0,
3,
24
],
"rcount_with_context": 10,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Ponorogo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 769422671790080,
"price": 214500000000,
"strikethrough_price": 239900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-11%",
"model_id": 251454170849,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 239900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 73,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 73,
"display_sold_count_text": "73"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SAMITECH by SAMIJAYA",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
0,
1000,
1000,
1000,
4
]
},
"itemid": 28609010869,
"shopid": 62356570,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lzbp0kmohnsdf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1718093079,1015914,700190087,1000031,1400285055,2018619,2023641,298893311,298463379,844931086908638,700005542,1049116,822059908662278,825465608497696,1400025118,2108629,2103651,2143613,997921049,1718088045,997921050,298468389,1718088046,700585042,1718093085],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":438,\"model_id\":251454170849,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lzbp0kmohnsdf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1718093079,1015914,700190087,1000031,1400285055,2018619,2023641,298893311,298463379,844931086908638,700005542,1049116,822059908662278,825465608497696,1400025118,2108629,2103651,2143613,997921049,1718088045,997921050,298468389,1718088046,700585042,1718093085],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":438,\"model_id\":251454170849,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28609010869",
"debug_info": null
},
{
"item_basic": {
"itemid": 26230156258,
"shopid": 232291937,
"name": "AC REIWA AC WINDOW REIWA 1PK CW-0901RA - Hemat Listrik 770W",
"label_ids": [
2018619,
1400066568,
1718087960,
1428713,
844931064601283,
844931086908638,
1718093079,
1213641,
2023641,
298463379,
1015914,
700190087,
700830032,
700765096,
2068629,
298938357,
1059152,
700005487,
822059908662278,
2048661,
825465608499232,
2048660,
834403089593352,
825465608497696,
298468390,
2098629,
298458398,
2098628,
298468389,
1718088045,
1718088044,
1718093084,
298458396,
298938368
],
"image": "id-11134207-7rbkc-m7j638qg1ii4d2",
"images": [
"id-11134207-7rbkc-m7j638qg1ii4d2",
"id-11134207-7rbkc-m7j638qg2x2k1a",
"id-11134207-7rbke-m7j638qg4bn090",
"id-11134207-7rbk4-m7j638qg74rw1a",
"id-11134207-7rbke-m7j638qg5q7g98"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1742374592,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 30,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 257900000000,
"price_min": 257900000000,
"price_max": 257900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmj0-m7j6s8ouvb4u3b.16000101742374524.mp4",
"thumb_url": "id-11110105-6kmj0-m7j6s8ouvb4u3b_cover",
"duration": 15,
"version": 2,
"vid": "id-11110105-6kmj0-m7j6s8ouvb4u3b",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj0-m7j6s8ouvb4u3b.16000101742374524.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m7j6s8ouvb4u3b.16000101742374524.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m7j6s8ouvb4u3b.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "PENGIRIMAN",
"options": [
"INSTANT JKT",
"CARGO/REGULER"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp859RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 257900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 252934375677,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 257900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp859RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Dapur-indonesia",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
88,
1000,
1000,
97
]
},
"itemid": 26230156258,
"shopid": 232291937,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m7j638qg1ii4d2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1400066568,1718087960,1428713,844931064601283,844931086908638,1718093079,1213641,2023641,298463379,1015914,700190087,700830032,700765096,2068629,298938357,1059152,700005487,822059908662278,2048661,825465608499232,2048660,834403089593352,825465608497696,298468390,2098629,298458398,2098628,298468389,1718088045,1718088044,1718093084,298458396,298938368],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":79,\"model_id\":252934375677,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,88,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m7j638qg1ii4d2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1400066568,1718087960,1428713,844931064601283,844931086908638,1718093079,1213641,2023641,298463379,1015914,700190087,700830032,700765096,2068629,298938357,1059152,700005487,822059908662278,2048661,825465608499232,2048660,834403089593352,825465608497696,298468390,2098629,298458398,2098628,298468389,1718088045,1718088044,1718093084,298458396,298938368],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":79,\"model_id\":252934375677,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,88,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26230156258",
"debug_info": null
},
{
"item_basic": {
"itemid": 43776904791,
"shopid": 15084889,
"name": "BESTLIFE AC Window 0.5 PK BWA 05PLD / BWA05PLD / BWA-05PLD 1/2 PK - Gold Fin",
"label_ids": [
1000016,
47,
1000167,
2018619,
700190019,
844931064601283,
844931086908638,
1059156,
1049157,
1718093079,
822059908662278,
825465608497696,
825465608494624,
825465608499232,
2023641
],
"image": "id-11134207-8224x-mhq62g4qubk432",
"images": [
"id-11134207-8224x-mhq62g4qubk432",
"id-11134207-8224s-mhq62g4ng45e03",
"id-11134207-8224v-mhq62g4vwxdt0b",
"id-11134207-8224s-mhq62g4xh43m65"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764589667,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "Bestlife",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 175000000000,
"price_min": 175000000000,
"price_max": 175000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Pemalang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 175000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 262217932823,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 175000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Nosh Pemalang",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
0,
1000
]
},
"itemid": 43776904791,
"shopid": 15084889,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mhq62g4qubk432\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,47,1000167,2018619,700190019,844931064601283,844931086908638,1059156,1049157,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,2023641],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":756,\"model_id\":262217932823,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mhq62g4qubk432\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,47,1000167,2018619,700190019,844931064601283,844931086908638,1059156,1049157,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,2023641],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":756,\"model_id\":262217932823,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43776904791",
"debug_info": null
},
{
"item_basic": {
"itemid": 27851722344,
"shopid": 53835082,
"name": "Reiwa CW-0501RA AC Window 0,5PK / 1 PK . Baru & Bergaransi",
"label_ids": [
1400095067,
1400285005,
822059908662278,
825465608492064,
834403089593352,
825465608497696,
1213641,
1000031,
1400285055,
1015914,
700190087,
1059152,
700005489,
825465608499232,
2018619,
2023641,
298463379,
1718093079,
2048660,
2048661,
700810080,
298458396,
1718088044,
298458398,
1718088045,
298468389,
1718093084,
298468390
],
"image": "id-11134207-81ztn-meh4mt7icirm43",
"images": [
"id-11134207-81ztn-meh4mt7icirm43",
"id-11134207-7r98w-lw40bojmgie686",
"id-11134207-7r98u-lw40bojmgikd82",
"id-11134207-7r98x-lw40bojwg3nu01",
"id-11134207-7r98s-lw40bojwg3la56",
"id-11134207-7r98v-lw40bok6fom37b",
"id-11134207-7r992-lw40bojmgi0a48",
"id-11134207-7r991-lw40bojmgii41d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1717484960,
"sold": 0,
"historical_sold": 133,
"liked": false,
"liked_count": 308,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 59,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 203999900000,
"price_min": 203999900000,
"price_max": 203999900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "SPEK",
"options": [
"1/2 PK",
"1 PK"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.930555555555555,
"rating_count": [
72,
0,
0,
0,
5,
67
],
"rcount_with_context": 25,
"rcount_with_image": 17
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 203999900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 233428104881,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 203999900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 133,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 133,
"display_sold_count_text": "133"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sinar Elektronik Jakarta",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000
]
},
"itemid": 27851722344,
"shopid": 53835082,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztn-meh4mt7icirm43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,822059908662278,825465608492064,834403089593352,825465608497696,1213641,1000031,1400285055,1015914,700190087,1059152,700005489,825465608499232,2018619,2023641,298463379,1718093079,2048660,2048661,700810080,298458396,1718088044,298458398,1718088045,298468389,1718093084,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3991,\"model_id\":233428104881,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztn-meh4mt7icirm43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,822059908662278,825465608492064,834403089593352,825465608497696,1213641,1000031,1400285055,1015914,700190087,1059152,700005489,825465608499232,2018619,2023641,298463379,1718093079,2048660,2048661,700810080,298458396,1718088044,298458398,1718088045,298468389,1718093084,298468390],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3991,\"model_id\":233428104881,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27851722344",
"debug_info": null
},
{
"item_basic": {
"itemid": 29813751384,
"shopid": 14141563,
"name": "Reiwa Ac Window 1/2PK Putih 5000BTU R32",
"label_ids": [
38,
39,
47,
1000167,
1400095067,
1400285005,
1428713,
1718087960,
844931064601283,
1718093079,
1015914,
700190087,
1000031,
1213641,
1400285055,
2018619,
2023641,
1059152,
700005489,
822059908662278,
834403089593352,
825465608497696,
837860934119952,
825465608499232,
825465608492064,
298933384,
298463379,
844931086908638,
298458396,
298468389,
1718088044,
1718093084,
298458398,
1718088045,
298468390
],
"image": "id-11134207-7rasb-m17ynpfvg9ub3a",
"images": [
"id-11134207-7rasb-m17ynpfvg9ub3a",
"id-11134207-7rasm-m17ynpfvaneqa5",
"id-11134207-7rasj-m17ynpfvanzzea",
"id-11134207-7rasj-m17ynpfvao3431",
"id-11134207-7rasb-m17ynpfvankiaf",
"id-11134207-7rasi-m17ynpfvanmtc1",
"id-11134207-7rasm-m17ynpfvgabm12",
"id-11134207-7rasf-m17ynpfvansa76"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1728619635,
"sold": 0,
"historical_sold": 37,
"liked": false,
"liked_count": 71,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 22,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
22,
0,
0,
0,
0,
22
],
"rcount_with_context": 7,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 223310534877,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 37,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 37,
"display_sold_count_text": "37"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Utama Electronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91
]
},
"itemid": 29813751384,
"shopid": 14141563,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m17ynpfvg9ub3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[38,39,47,1000167,1400095067,1400285005,1428713,1718087960,844931064601283,1718093079,1015914,700190087,1000031,1213641,1400285055,2018619,2023641,1059152,700005489,822059908662278,834403089593352,825465608497696,837860934119952,825465608499232,825465608492064,298933384,298463379,844931086908638,298458396,298468389,1718088044,1718093084,298458398,1718088045,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4338,\"model_id\":223310534877,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m17ynpfvg9ub3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[38,39,47,1000167,1400095067,1400285005,1428713,1718087960,844931064601283,1718093079,1015914,700190087,1000031,1213641,1400285055,2018619,2023641,1059152,700005489,822059908662278,834403089593352,825465608497696,837860934119952,825465608499232,825465608492064,298933384,298463379,844931086908638,298458396,298468389,1718088044,1718093084,298458398,1718088045,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4338,\"model_id\":223310534877,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29813751384",
"debug_info": null
},
{
"item_basic": {
"itemid": 26316943776,
"shopid": 373228675,
"name": "AC WINDOW REIWA 1 PK CW-0901RA CW0901 RA 0901RA 1 PK STANDARD LOW WATT AC WINDOW REIWA - TERMURAH",
"label_ids": [
844931064601283,
844931086908638,
1059152,
700005487,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
840990690654214,
840955085144628,
825465608492064,
1015914,
700190087,
1213641,
1000031,
2018619,
2023641,
1718093079,
1400285055,
298463379,
298933384,
2048660,
2048661,
700765096,
2068629,
298938357,
1718088045,
1718088044,
298458398,
298458396,
298468389,
2098628,
298938368,
1718093084,
2098629,
298468390
],
"image": "id-11134207-7rasb-m2bxllw27zp0e1",
"images": [
"id-11134207-7rasb-m2bxllw27zp0e1",
"id-11134207-7rasg-m2bxllw26l4k5a",
"id-11134207-7rask-m2bxllw256k40b",
"id-11134207-7rasa-m2bxllw2565e74"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1731039343,
"sold": 0,
"historical_sold": 7,
"liked": false,
"liked_count": 14,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 4,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 265000000000,
"price_min": 265000000000,
"price_max": 265000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke14-m2by00lz25xm16.16000081731039812.mp4",
"thumb_url": "id-11110105-7rasm-m2by026kroky9b",
"duration": 15,
"version": 2,
"vid": "id-11110105-6ke14-m2by00lz25xm16",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke14-m2by00lz25xm16.16000081731039812.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m2by00lz25xm16.16000081731039812.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m2by00lz25xm16.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
4,
0,
0,
0,
0,
4
],
"rcount_with_context": 1,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp883RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 265000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 226994274934,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 265000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 7,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 7,
"display_sold_count_text": "7"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp883RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Quella Electric",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26316943776,
"shopid": 373228675,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m2bxllw27zp0e1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,700005487,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,1015914,700190087,1213641,1000031,2018619,2023641,1718093079,1400285055,298463379,298933384,2048660,2048661,700765096,2068629,298938357,1718088045,1718088044,298458398,298458396,298468389,2098628,298938368,1718093084,2098629,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4377,\"model_id\":226994274934,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m2bxllw27zp0e1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,700005487,822059908662278,825465608494624,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,1015914,700190087,1213641,1000031,2018619,2023641,1718093079,1400285055,298463379,298933384,2048660,2048661,700765096,2068629,298938357,1718088045,1718088044,298458398,298458396,298468389,2098628,298938368,1718093084,2098629,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4377,\"model_id\":226994274934,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26316943776",
"debug_info": null
},
{
"item_basic": {
"itemid": 41750040429,
"shopid": 751913659,
"name": "REIWA AC Window 1/2 PK CW-0501RA 0,5 PK 370 watt Garansi Resmi",
"label_ids": [
2018619,
2023641,
844931064601283,
298463379,
700005490,
700005495,
822059908662278,
837860934119952,
822120592853526,
1718093079,
1718093065,
825465608497696,
1400285055,
2108629,
1015914,
700190087,
1718088045,
298468389
],
"image": "id-11134207-7ra0m-mcyljc8xhs51dd",
"images": [
"id-11134207-7ra0m-mcyljc8xhs51dd",
"id-11134207-7ra0j-md4jgsyjua6w15",
"id-11134207-7ra0s-mcyljcavexq451",
"id-11134207-7rbk0-m9fjnafzjoci57"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1746607512,
"sold": 0,
"historical_sold": 4,
"liked": false,
"liked_count": 9,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 3,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "VARIASI",
"options": [
"UNIT ONLY",
"UNIT+JASA PEMASANGAN"
],
"images": [
"id-11134207-7ra0t-md4jgsyjvorc2d",
"id-11134207-7ra0u-md4jgsyjx3bs28"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 99832540434,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 4,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 4,
"display_sold_count_text": "4"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GE Grosir Elektronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
0,
1000,
1000,
1000
]
},
"itemid": 41750040429,
"shopid": 751913659,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mcyljc8xhs51dd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,700005490,700005495,822059908662278,837860934119952,822120592853526,1718093079,1718093065,825465608497696,1400285055,2108629,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":2741,\"model_id\":99832540434,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mcyljc8xhs51dd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,700005490,700005495,822059908662278,837860934119952,822120592853526,1718093079,1718093065,825465608497696,1400285055,2108629,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":2741,\"model_id\":99832540434,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41750040429",
"debug_info": null
},
{
"item_basic": {
"itemid": 55053657420,
"shopid": 1709284149,
"name": "AC Window BestLife 0,5PK BWA05PLD/AC BestLife Window BWA05PLD 0,5PK New Series",
"label_ids": [
844931064601283,
844931086908638,
700005504,
1049128,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
1718596,
1718093079,
1718087960,
1428713,
298488495,
2213765,
298933384,
299033477
],
"image": "sg-11134201-81ztk-mio1oe553wg077",
"images": [
"sg-11134201-81ztk-mio1oe553wg077",
"sg-11134201-81zwk-mio1oee1x1q890",
"sg-11134201-81zws-mio1oen36dc3f3",
"sg-11134201-81zvt-mio1oewuytjbb1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766640252,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 75160000000,
"price_min": 75160000000,
"price_max": 75160000000,
"price_min_before_discount": 187900000000,
"price_max_before_discount": 187900000000,
"hidden_price_display": null,
"price_before_discount": 187900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-60%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Packing",
"options": [
"Wrapping 1 lapis",
"Dus bawaan pabrik",
"Bubble wrapping",
"Wrapping 2 lapis"
],
"images": [
"sg-11134201-81ztk-mio1oe553wg077",
"sg-11134201-81ztk-mio1oe553wg077",
"sg-11134201-81ztk-mio1oe553wg077",
"sg-11134201-81ztk-mio1oe553wg077"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 825842343673856,
"price": 75160000000,
"strikethrough_price": 187900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-60%",
"model_id": 244128151487,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 187900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "s_nb6ntsb6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
0,
1000
]
},
"itemid": 55053657420,
"shopid": 1709284149,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztk-mio1oe553wg077\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005504,1049128,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718596,1718093079,1718087960,1428713,298488495,2213765,298933384,299033477],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":2734,\"model_id\":244128151487,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztk-mio1oe553wg077\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005504,1049128,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718596,1718093079,1718087960,1428713,298488495,2213765,298933384,299033477],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":2734,\"model_id\":244128151487,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55053657420",
"debug_info": null
},
{
"item_basic": {
"itemid": 44311184889,
"shopid": 1580715481,
"name": "WINDOW AC 1 PK REIWA CW-0901RA /INSTALASI MUDAH/TANPA PIPA/ WINDOW AIR CONDITIONER 1PK",
"label_ids": [
2023641,
844931086908638,
844931064601283,
1049128,
700005504,
822059908662278,
834403089593352,
825465608497696,
825465608492064,
825465608499232,
1718093079,
298463379,
2018619,
1400285055,
1718093065,
2048660,
2048661,
298933384,
700765096,
2108629,
298468389,
1718088045
],
"image": "sg-11134201-7rdxe-mcw8hp7fr49g17",
"images": [
"sg-11134201-7rdxe-mcw8hp7fr49g17",
"sg-11134201-7rdx1-mcw8hpedfivi59",
"sg-11134201-7rdy4-mcw8hpjx7elz94",
"sg-11134201-7rdvl-mcw8hre8iewp93",
"sg-11134201-7rdx4-mcw8htexmtxcdb",
"sg-11134201-7rdya-mcw8hx6m2uaubd",
"sg-11134201-7rdwt-mcw8hyr7uups88",
"sg-11134201-7rdxj-mcw8i1jdo26836",
"sg-11134201-7rdws-mcw8i4cnl9asee"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1754060563,
"sold": 1,
"historical_sold": 3,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 289900000000,
"price_min": 289900000000,
"price_max": 289900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ven5-mep6ld8z3xms11.16000091757992103.mp4",
"thumb_url": "id-11110107-6ven5-mep6ld8z3xms11_cover",
"duration": 50,
"version": 2,
"vid": "id-11110107-6ven5-mep6ld8z3xms11",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ven5-mep6ld8z3xms11.16000091757992103.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven5-mep6ld8z3xms11.16000091757992103.mp4",
"width": 270,
"height": 480
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven5-mep6ld8z3xms11.default.mp4",
"width": 360,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 289700000000,
"strikethrough_price": 289900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1306322126520320,
"discount_text": null,
"model_id": 305939330145,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1306322126520320,
"voucher_code": "CIPTUFPIE",
"voucher_discount": 200000000,
"time_info": {
"start_time": 1765185015,
"end_time": 1768468080,
"valid_duration": null
},
"groups": [],
"min_spend": 5000000000
},
"recommended_platform_voucher_info": null,
"original_price": 289900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Toko Cipta jaya",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
97
]
},
"itemid": 44311184889,
"shopid": 1580715481,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxe-mcw8hp7fr49g17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931086908638,844931064601283,1049128,700005504,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1718093079,298463379,2018619,1400285055,1718093065,2048660,2048661,298933384,700765096,2108629,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":3494,\"model_id\":305939330145,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxe-mcw8hp7fr49g17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931086908638,844931064601283,1049128,700005504,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1718093079,298463379,2018619,1400285055,1718093065,2048660,2048661,298933384,700765096,2108629,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":3494,\"model_id\":305939330145,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44311184889",
"debug_info": null
},
{
"item_basic": {
"itemid": 28739510855,
"shopid": 1036364118,
"name": "BESTLIFE AC Window 0.5 PK BWA 05PLD / BWA05PLD / BWA-05PLD 1/2 PK - Gold Fin - Remote - Cepat Sejuk",
"label_ids": [
2018619,
2023641,
844931064601283,
1059152,
1059154,
298463379,
1718093079,
822059908662278,
825465608492064,
825465608494624,
825465608499232,
825465608497696,
822120592853526,
2048660,
2048661,
700765096,
844931086908638,
1718088045,
298468389
],
"image": "id-11134207-8224x-mi725n1q3awxc7",
"images": [
"id-11134207-8224x-mi725n1q3awxc7",
"id-11134207-7ra0m-md1g8dvl31b87a",
"id-11134207-7ra0h-md1g8dvl4fvof6",
"id-11134207-7ra0s-md1g8dvl5ug425",
"id-11134207-7ra0r-md1g8dvl790kb7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1754376529,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "Bestlife",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 189900000000,
"price_min": 189900000000,
"price_max": 189900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PACKING",
"options": [
"BUBBLE WRAP",
"PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "MERK",
"options": [
"REIWA BLUEFIN",
"BESTLIFE GOLDFIN"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 403941951287965,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 189900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 254117617793,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 189900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Mrย Hotย &ย Cool",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 28739510855,
"shopid": 1036364118,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mi725n1q3awxc7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,298463379,1718093079,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,822120592853526,2048660,2048661,700765096,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":3985,\"model_id\":254117617793,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mi725n1q3awxc7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1059152,1059154,298463379,1718093079,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,822120592853526,2048660,2048661,700765096,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":3985,\"model_id\":254117617793,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28739510855",
"debug_info": null
},
{
"item_basic": {
"itemid": 43066911643,
"shopid": 1497707910,
"name": "AC WINDOW 1/2 PK BESTLIFE BWA05PLD( COLOK LANGSUNG DINGIN )/GOLDFIN ANTI KARAT GARANSI 5 TAHUN",
"label_ids": [
844931064601283,
298463379,
1049142,
1049143,
1718093079,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
834403089593352,
700765096,
2018619,
298933384,
298468389,
1718088045
],
"image": "id-11134207-81ztm-me484xf5v7cx4c",
"images": [
"id-11134207-81ztm-me484xf5v7cx4c",
"id-11134207-81zth-me484xf5wlxdc2",
"id-11134207-81ztg-me484xf5y0ht9f",
"id-11134207-81ztl-me484xf5zf29ca"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756734049,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "Bestlife",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 234900000000,
"price_min": 234900000000,
"price_max": 234900000000,
"price_min_before_discount": 245000000000,
"price_max_before_discount": 245000000000,
"hidden_price_display": null,
"price_before_discount": 245000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-4%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pekanbaru",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 821101739966464,
"price": 234900000000,
"strikethrough_price": 245000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-4%",
"model_id": 306396300766,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 245000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "M.R elektronnik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
0,
1000
]
},
"itemid": 43066911643,
"shopid": 1497707910,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztm-me484xf5v7cx4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1049142,1049143,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,834403089593352,700765096,2018619,298933384,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":2383,\"model_id\":306396300766,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztm-me484xf5v7cx4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1049142,1049143,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,834403089593352,700765096,2018619,298933384,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":2383,\"model_id\":306396300766,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43066911643",
"debug_info": null
},
{
"item_basic": {
"itemid": 27252855162,
"shopid": 125401605,
"name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK",
"label_ids": [
1000167,
844931064601283,
1015914,
700190087,
1213641,
1400285055,
1718093079,
2018619,
2023641,
298893311,
2108629,
298463379,
298933384,
700765096,
1049116,
1049117,
822059908662278,
2048661,
822120592853526,
825465608499232,
834403089593352,
825465608497696,
2048660,
700810080,
298468389,
1718093084,
298458398,
298458396,
1718088045,
298468390,
1718088044
],
"image": "id-11134207-7rasd-m2l7mu837w8v14",
"images": [
"id-11134207-7rasd-m2l7mu837w8v14",
"id-11134207-7rase-m2l7mu839atb5f",
"id-11134207-7rasl-m2l7mu83c3y7f5",
"id-11134207-7rasc-m2l7mu83apdr9d",
"id-11134207-7r98y-lz5q2bvztfhpf3",
"id-11134207-7r98v-lwi9glz2co0ae0",
"id-11134207-7r992-lwi9glz2e2kq31"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1718347349,
"sold": 6,
"historical_sold": 237,
"liked": false,
"liked_count": 232,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 124,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "kapasitas",
"options": [
"1/2PK"
],
"images": [
"id-11134207-8224r-mi2m4fhholja2f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.896,
"rating_count": [
125,
1,
0,
2,
5,
117
],
"rcount_with_context": 48,
"rcount_with_image": 38
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 148885632391,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 237,
"rounded_local_monthly_sold_count": 6,
"local_monthly_sold_count_text": "6",
"rounded_display_sold_count": 237,
"display_sold_count_text": "237"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Multi Guna Selaras",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
88,
0,
1000,
4
]
},
"itemid": 27252855162,
"shopid": 125401605,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2l7mu837w8v14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1015914,700190087,1213641,1400285055,1718093079,2018619,2023641,298893311,2108629,298463379,298933384,700765096,1049116,1049117,822059908662278,2048661,822120592853526,825465608499232,834403089593352,825465608497696,2048660,700810080,298468389,1718093084,298458398,298458396,1718088045,298468390,1718088044],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":1660,\"model_id\":148885632391,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2l7mu837w8v14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1015914,700190087,1213641,1400285055,1718093079,2018619,2023641,298893311,2108629,298463379,298933384,700765096,1049116,1049117,822059908662278,2048661,822120592853526,825465608499232,834403089593352,825465608497696,2048660,700810080,298468389,1718093084,298458398,298458396,1718088045,298468390,1718088044],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":1660,\"model_id\":148885632391,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27252855162",
"debug_info": null
},
{
"item_basic": {
"itemid": 26316223937,
"shopid": 1111286142,
"name": "[ GARANSI RESMI ] REIWA AC WINDOW TIPE CW-0501RA 1/2 PK pendingin low watt praktis cooling",
"label_ids": [
844931064601283,
1718093079,
1049117,
1049116,
822059908662278,
825465608499232,
1400285055,
1000031,
1015914,
700190087,
1718087960,
1428713,
2018619,
825465608497696,
298463379,
298888358,
298938357,
2048660,
2048661,
700765096,
1400025118,
2023641,
298933384,
2143613,
2103651,
2108629,
2108637,
1718088046,
997921049,
2098628,
997921050,
1718093085,
1718088045,
700585042,
2098630,
2098629,
298468389,
298938368,
2103632
],
"image": "id-11134207-7rasi-m21yhmothxhb53",
"images": [
"id-11134207-7rasi-m21yhmothxhb53",
"id-11134207-7rasl-m21yhmotgiwvbf",
"id-11134207-7ras9-m21yhmotcb7j10",
"id-11134207-7rasa-m21yhmotjc1rf9",
"id-11134207-7ras8-m21yhmotdprz42"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730442132,
"sold": 1,
"historical_sold": 8,
"liked": false,
"liked_count": 67,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 5,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke19-m222golb070wf8.16000081730441980.mp4",
"thumb_url": "id-11110105-7rasd-m222gwijf5924a",
"duration": 57,
"version": 2,
"vid": "id-11110105-6ke19-m222golb070wf8",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke19-m222golb070wf8.16003251733898841.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m222golb070wf8.16003251733898841.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m222golb070wf8.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8,
"rating_count": [
5,
0,
0,
0,
1,
4
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 251927647362,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 8,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 8,
"display_sold_count_text": "8"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Pionier Electronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
0,
1000
]
},
"itemid": 26316223937,
"shopid": 1111286142,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m21yhmothxhb53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049117,1049116,822059908662278,825465608499232,1400285055,1000031,1015914,700190087,1718087960,1428713,2018619,825465608497696,298463379,298888358,298938357,2048660,2048661,700765096,1400025118,2023641,298933384,2143613,2103651,2108629,2108637,1718088046,997921049,2098628,997921050,1718093085,1718088045,700585042,2098630,2098629,298468389,298938368,2103632],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":1825,\"model_id\":251927647362,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m21yhmothxhb53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049117,1049116,822059908662278,825465608499232,1400285055,1000031,1015914,700190087,1718087960,1428713,2018619,825465608497696,298463379,298888358,298938357,2048660,2048661,700765096,1400025118,2023641,298933384,2143613,2103651,2108629,2108637,1718088046,997921049,2098628,997921050,1718093085,1718088045,700585042,2098630,2098629,298468389,298938368,2103632],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":1825,\"model_id\":251927647362,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26316223937",
"debug_info": null
},
{
"item_basic": {
"itemid": 41367117759,
"shopid": 1002016520,
"name": "Reiwa AC Window 1 PK CW-0901RA Direct Cooling",
"label_ids": [
2018619,
2023641,
844931064601283,
298463379,
1428713,
1718087960,
298933384,
1015914,
700190087,
1718093079,
1059156,
700005499,
822059908662278,
2048660,
2048661,
834403089593352,
825465608497696,
298468389,
1718088045
],
"image": "id-11134207-81zte-me5n1nacd6va98",
"images": [
"id-11134207-81zte-me5n1nacd6va98",
"id-11134207-81zte-me5n1nafg5qc46",
"id-11134207-81ztq-me5n1nafhkaseb",
"id-11134207-81ztf-me5n1naj474084"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756809444,
"sold": 0,
"historical_sold": 5,
"liked": false,
"liked_count": 18,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 247500000000,
"price_min": 247500000000,
"price_max": 247500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6venb-me5n9kw72ade7e.16000081756809442.mp4",
"thumb_url": "id-11110105-6venb-me5n9kw72ade7e_cover",
"duration": 15,
"version": 2,
"vid": "id-11110105-6venb-me5n9kw72ade7e",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6venb-me5n9kw72ade7e.16000081756809442.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-me5n9kw72ade7e.16000081756809442.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-me5n9kw72ade7e.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "PAKING",
"options": [
"INSTANT (DALAM KOTA)",
"BUBLE + PAKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 247500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 286413188565,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 247500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 5,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 5,
"display_sold_count_text": "5"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HERIMART ETC",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 41367117759,
"shopid": 1002016520,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-me5n1nacd6va98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1428713,1718087960,298933384,1015914,700190087,1718093079,1059156,700005499,822059908662278,2048660,2048661,834403089593352,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":914,\"model_id\":286413188565,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-me5n1nacd6va98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1428713,1718087960,298933384,1015914,700190087,1718093079,1059156,700005499,822059908662278,2048660,2048661,834403089593352,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":914,\"model_id\":286413188565,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41367117759",
"debug_info": null
},
{
"item_basic": {
"itemid": 24488459937,
"shopid": 300986529,
"name": "REIWA AC PORTABLE WINDOW REIWA CW 0501 RA / CW0501RA 1/2 PK 0.5 PK AIR CONDITIONER PORTABEL GARANSI RESMI",
"label_ids": [
1428713,
1718087960,
844931064601283,
1059156,
700005499,
822059908662278,
840955085144628,
825465608492064,
825465608499232,
834403089593352,
825465608497696,
840990690654214,
837860934119952,
1718093079,
1213641,
1000031,
1015914,
700190087,
2018619,
1400285055,
2048660,
2048661,
298933384,
844931086908638,
2068629,
298938357,
298463379,
2108629,
298623321,
1993623,
998091078,
1718088044,
1718093084,
298458396,
298938368,
298468390,
298458398,
2098629,
1718088045,
2098628,
298468389
],
"image": "id-11134207-7rasl-m2q3iumgpyo411",
"images": [
"id-11134207-7rasl-m2q3iumgpyo411",
"id-11134207-7rasg-m2q3iumgkcecbf",
"id-11134207-7rash-m2q3iumglqys14",
"id-11134207-7rasf-m2q3iumgn5j815",
"id-11134207-7rase-m2q3iumgok3o64"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1731919287,
"sold": 3,
"historical_sold": 14,
"liked": false,
"liked_count": 34,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 7,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 194899900000,
"price_min": 194899900000,
"price_max": 194899900000,
"price_min_before_discount": 214800000000,
"price_max_before_discount": 214800000000,
"hidden_price_display": null,
"price_before_discount": 214800000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-9%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1i-m2qgz7vd6pxfc0.16000101731919214.mp4",
"thumb_url": "id-11110105-7rasa-m2qgzg3568fmba",
"duration": 50,
"version": 2,
"vid": "id-11110105-6ke1i-m2qgz7vd6pxfc0",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1i-m2qgz7vd6pxfc0.16000101731919214.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1i-m2qgz7vd6pxfc0.16000101731919214.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1i-m2qgz7vd6pxfc0.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "VARIAN",
"options": [
"REIWA CW 0501 RA"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
7,
0,
0,
0,
0,
7
],
"rcount_with_context": 3,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp649RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 324,
"promotion_id": 10000019470,
"price": 194899900000,
"strikethrough_price": 214800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-9%",
"model_id": 195564792071,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 214800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 14,
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_display_sold_count": 14,
"display_sold_count_text": "14"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp649RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HANS SHOP INDONESIA",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2NlM2ZjMTA4ZDBkOGFkYWJjMDA6MDIwMDAwMGExMWQzYTU1ZjowMTAwMDE1ZTAyY2M1ZTBifV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
1000,
97
]
},
"itemid": 24488459937,
"shopid": 300986529,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2q3iumgpyo411\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059156,700005499,822059908662278,840955085144628,825465608492064,825465608499232,834403089593352,825465608497696,840990690654214,837860934119952,1718093079,1213641,1000031,1015914,700190087,2018619,1400285055,2048660,2048661,298933384,844931086908638,2068629,298938357,298463379,2108629,298623321,1993623,998091078,1718088044,1718093084,298458396,298938368,298468390,298458398,2098629,1718088045,2098628,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":357,\"model_id\":195564792071,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2q3iumgpyo411\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059156,700005499,822059908662278,840955085144628,825465608492064,825465608499232,834403089593352,825465608497696,840990690654214,837860934119952,1718093079,1213641,1000031,1015914,700190087,2018619,1400285055,2048660,2048661,298933384,844931086908638,2068629,298938357,298463379,2108629,298623321,1993623,998091078,1718088044,1718093084,298458396,298938368,298468390,298458398,2098629,1718088045,2098628,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":357,\"model_id\":195564792071,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24488459937",
"debug_info": null
},
{
"item_basic": {
"itemid": 4645983265,
"shopid": 289988321,
"name": "Kabel Power AC Cord Angka 8 Radio 1.8m Kabel",
"label_ids": [
1400095067,
1400285005,
35,
1001024,
1011751,
700005490,
700005495,
822059908662278,
844931064601283,
844931086908638,
1400285055,
700020158,
298458334,
1213641,
825465608492064,
825465608493600,
825465608494624,
825465608499232,
837860934119952,
840955085144628,
840990690654214,
1948020499712534,
1000031,
298458395,
1119699,
2018619,
2023641,
298893311,
825465608497696,
2048660,
2048661,
1718093079,
2108629,
1718093084,
298458396
],
"image": "9bfd1f19ea011eddbff8f42946072042",
"images": [
"9bfd1f19ea011eddbff8f42946072042",
"33ce3abdbe1c072b5781f6b7adb8989f",
"id-11134207-7ra0r-mducod6cywa6c1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1597116305,
"sold": 10,
"historical_sold": 1000,
"liked": false,
"liked_count": 22,
"view_count": null,
"catid": 100010,
"brand": "Tidak Ada Merek",
"cmt_count": 268,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 650000000,
"price_min": 650000000,
"price_max": 650000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.854014598540146,
"rating_count": [
274,
1,
0,
6,
24,
243
],
"rcount_with_context": 48,
"rcount_with_image": 45
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 650000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 60568552411,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 650000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 10,
"local_monthly_sold_count_text": "10",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HANABI_CCTV",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 4645983265,
"shopid": 289988321,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"9bfd1f19ea011eddbff8f42946072042\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,35,1001024,1011751,700005490,700005495,822059908662278,844931064601283,844931086908638,1400285055,700020158,298458334,1213641,825465608492064,825465608493600,825465608494624,825465608499232,837860934119952,840955085144628,840990690654214,1948020499712534,1000031,298458395,1119699,2018619,2023641,298893311,825465608497696,2048660,2048661,1718093079,2108629,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":32,\"model_id\":60568552411,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"9bfd1f19ea011eddbff8f42946072042\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,35,1001024,1011751,700005490,700005495,822059908662278,844931064601283,844931086908638,1400285055,700020158,298458334,1213641,825465608492064,825465608493600,825465608494624,825465608499232,837860934119952,840955085144628,840990690654214,1948020499712534,1000031,298458395,1119699,2018619,2023641,298893311,825465608497696,2048660,2048661,1718093079,2108629,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":32,\"model_id\":60568552411,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_4645983265",
"debug_info": null
},
{
"item_basic": {
"itemid": 1992684511,
"shopid": 47902232,
"name": "Power window limo vios gen2",
"label_ids": [
22,
844931046478970,
844931064601283,
844931026694327,
1400285055,
1213641,
1000031,
1119699,
2018619,
2023641,
1015914,
700190087,
298893311,
298888358,
298938357,
298933384,
1400066568,
1059152,
700005489,
822059908662278,
825465608499232,
825465608497696,
825465608494624,
298463379,
1718093079,
298623321,
1993623,
998091078,
298458396,
298458398,
298468389,
298938368,
1718088045,
2098629,
1718093084,
2098628,
1718088044,
298468390
],
"image": "sg-11134201-22110-9ejtjsw0shjv54",
"images": [
"sg-11134201-22110-9ejtjsw0shjv54",
"fee28af9f91e247af57c0d01c4cee5b8",
"ee77c1468aa5a9024cae746c2aa9ff33",
"68f355f8f60adc1c85a4083084b1c13f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1552344331,
"sold": 3,
"historical_sold": 365,
"liked": false,
"liked_count": 235,
"view_count": null,
"catid": 100640,
"brand": "Denso",
"cmt_count": 216,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 148499900000,
"price_min": 148499900000,
"price_max": 148499900000,
"price_min_before_discount": 165000000000,
"price_max_before_discount": 165000000000,
"hidden_price_display": null,
"price_before_discount": 165000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-10%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.820276497695852,
"rating_count": [
217,
1,
1,
4,
24,
187
],
"rcount_with_context": 89,
"rcount_with_image": 55
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp247RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 324,
"promotion_id": 10000017060,
"price": 148499900000,
"strikethrough_price": 165000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-10%",
"model_id": 62903842112,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 165000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 365,
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_display_sold_count": 365,
"display_sold_count_text": "365"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp247RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "restumotorjakarta",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88
]
},
"itemid": 1992684511,
"shopid": 47902232,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-22110-9ejtjsw0shjv54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[22,844931046478970,844931064601283,844931026694327,1400285055,1213641,1000031,1119699,2018619,2023641,1015914,700190087,298893311,298888358,298938357,298933384,1400066568,1059152,700005489,822059908662278,825465608499232,825465608497696,825465608494624,298463379,1718093079,298623321,1993623,998091078,298458396,298458398,298468389,298938368,1718088045,2098629,1718093084,2098628,1718088044,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":33,\"model_id\":62903842112,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-22110-9ejtjsw0shjv54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[22,844931046478970,844931064601283,844931026694327,1400285055,1213641,1000031,1119699,2018619,2023641,1015914,700190087,298893311,298888358,298938357,298933384,1400066568,1059152,700005489,822059908662278,825465608499232,825465608497696,825465608494624,298463379,1718093079,298623321,1993623,998091078,298458396,298458398,298468389,298938368,1718088045,2098629,1718093084,2098628,1718088044,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":33,\"model_id\":62903842112,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_1992684511",
"debug_info": null
},
{
"item_basic": {
"itemid": 29690876632,
"shopid": 935397801,
"name": "kipas turbo 100 Gear Wind hight-speed kipas angin Digital Display kipas tangan AC",
"label_ids": [
1718087960,
1428713,
844931064601283,
844931086908638,
298463379,
2018619,
2023641,
700005490,
1049120,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1015914,
700190087,
298888358,
298938357,
1400285055,
298933384,
298468389,
1718088045,
298938368,
2098629,
2098628
],
"image": "id-11134207-8224s-mje09u92du6cd2",
"images": [
"id-11134207-8224s-mje09u92du6cd2",
"sg-11134201-824i2-me39c17zvitfbd",
"sg-11134201-824h9-me39c1llzi836a",
"sg-11134201-824hm-me39c20u2v431f",
"sg-11134201-824g3-me39c2f5zabp5b",
"sg-11134201-824ie-me39c30lsxzb4e",
"sg-11134201-824ij-me39c3puqmtc1a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756664949,
"sold": 12,
"historical_sold": 41,
"liked": false,
"liked_count": 21,
"view_count": null,
"catid": 100010,
"brand": "Madia",
"cmt_count": 6,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 14799900000,
"price_min": 14799900000,
"price_max": 14799900000,
"price_min_before_discount": 60000000000,
"price_max_before_discount": 60000000000,
"hidden_price_display": null,
"price_before_discount": 60000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-75%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"S13 PURPLE",
"S13 GREY",
"S13 BEIGE"
],
"images": [
"sg-11134201-824jd-me39c4oobmrl44",
"sg-11134201-824jl-me39c5np36df4d",
"sg-11134201-824j8-me39c6kumebm91"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
6,
0,
0,
0,
0,
6
],
"rcount_with_context": 3,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp24RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227973722812416,
"price": 14699900000,
"strikethrough_price": 60000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1309792141328384,
"discount_text": "-75%",
"model_id": 276369102278,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1309792141328384,
"voucher_code": "THEO2222",
"voucher_discount": 100000000,
"time_info": {
"start_time": 1765599120,
"end_time": 1769836320,
"valid_duration": null
},
"groups": [],
"min_spend": 3000000000
},
"recommended_platform_voucher_info": null,
"original_price": 60000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 41,
"rounded_local_monthly_sold_count": 12,
"local_monthly_sold_count_text": "12",
"rounded_display_sold_count": 41,
"display_sold_count_text": "41"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp24RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "theone001",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 29690876632,
"shopid": 935397801,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mje09u92du6cd2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,2018619,2023641,700005490,1049120,1718093079,822059908662278,825465608497696,825465608499232,1015914,700190087,298888358,298938357,1400285055,298933384,298468389,1718088045,298938368,2098629,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":34,\"model_id\":276369102278,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mje09u92du6cd2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,298463379,2018619,2023641,700005490,1049120,1718093079,822059908662278,825465608497696,825465608499232,1015914,700190087,298888358,298938357,1400285055,298933384,298468389,1718088045,298938368,2098629,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":34,\"model_id\":276369102278,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29690876632",
"debug_info": null
},
{
"item_basic": {
"itemid": 3926320459,
"shopid": 154310435,
"name": "Motor fan ac extra grand Civic genio ferio cielo city z new city accord2004",
"label_ids": [
1001038,
1001026,
1011751,
1011747,
700020158,
844931064601283,
844931086908638,
1400285055,
298458334,
298463379,
1000031,
298458395,
1119699,
1718093079,
2018619,
2023641,
1059152,
1059154,
822059908662278,
837860934119952,
840955085144628,
825465608494624,
825465608499232,
825465608497696,
840990690654214,
1015914,
700190087,
298893311,
298933384,
1718088045,
298468389
],
"image": "id-11134207-7rbk1-m8n26dg6xam31c",
"images": [
"id-11134207-7rbk1-m8n26dg6xam31c",
"id-11134207-7qul0-ljnyr6ahcc9nd3",
"id-11134207-7rbk6-m8n26dg703qz5c",
"id-11134207-7rbkb-m8n26dg6yp6j6b",
"id-11134207-7ras8-m2uvyzcy1smzab",
"id-11134207-7rbkd-m8n26dg71ibfa6",
"id-11134207-7rasg-m2uvyzcy0e2j7b",
"id-11134207-7qul0-ljnyr6cp93k361",
"id-11134207-7rasj-m2uvyzcxyzi3b0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1586528338,
"sold": 8,
"historical_sold": 409,
"liked": false,
"liked_count": 103,
"view_count": null,
"catid": 100640,
"brand": "Honda",
"cmt_count": 185,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 23000000000,
"price_min": 23000000000,
"price_max": 23000000000,
"price_min_before_discount": 28000000000,
"price_max_before_discount": 28000000000,
"hidden_price_display": null,
"price_before_discount": 28000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-18%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.747311827956989,
"rating_count": [
186,
1,
2,
7,
23,
153
],
"rcount_with_context": 51,
"rcount_with_image": 22
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 792515561717760,
"price": 23000000000,
"strikethrough_price": 28000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-18%",
"model_id": 62846923396,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 28000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 409,
"rounded_local_monthly_sold_count": 8,
"local_monthly_sold_count_text": "8",
"rounded_display_sold_count": 409,
"display_sold_count_text": "409"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Marco sparepart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 3926320459,
"shopid": 154310435,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk1-m8n26dg6xam31c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001038,1001026,1011751,1011747,700020158,844931064601283,844931086908638,1400285055,298458334,298463379,1000031,298458395,1119699,1718093079,2018619,2023641,1059152,1059154,822059908662278,837860934119952,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1015914,700190087,298893311,298933384,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":35,\"model_id\":62846923396,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk1-m8n26dg6xam31c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001038,1001026,1011751,1011747,700020158,844931064601283,844931086908638,1400285055,298458334,298463379,1000031,298458395,1119699,1718093079,2018619,2023641,1059152,1059154,822059908662278,837860934119952,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1015914,700190087,298893311,298933384,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":35,\"model_id\":62846923396,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_3926320459",
"debug_info": null
},
{
"item_basic": {
"itemid": 3735719672,
"shopid": 229515338,
"name": "AZKO Kris Kipas Angin Berdiri 45 watt Standing Fan Penyejuk Ruangan Kipas Lantai Elektronik Rumah",
"label_ids": [
1000381,
1002164,
1011705,
700085047,
1400095067,
1400285005,
22,
1001024,
1015914,
700190087,
844931046478970,
844931064601283,
1400285055,
700585046,
997921070,
1718087960,
1428713,
1059152,
822059908662278,
825465608499232,
700005490,
1049122,
1049120,
1059156,
700000486,
1718093079,
1049117,
1049116,
1049112,
1049124,
700005487,
1059151,
700005510,
2018618,
1012763,
2013645,
1049136,
298893311,
825465608497696,
700005516,
298933384,
700830032,
834403089593352,
700005499,
2213652,
700005537,
1049123,
1049155,
1049147,
1049127,
1059154,
299103323,
700000553,
2008656,
1049154,
1049141,
1049132
],
"image": "sg-11134201-7ra1k-m4k8ofx4emtge2",
"images": [
"sg-11134201-7ra1k-m4k8ofx4emtge2",
"sg-11134201-7ra31-m4k8pe9874uq90",
"sg-11134201-7ra0s-m4k8psph616rc5",
"sg-11134201-7ra1i-m4k8qmqr3ii87d",
"sg-11134201-7ra41-m4k8qz9mqc9u9d",
"sg-11134201-7ra24-m4k8r15lyv1e78",
"sg-11134201-7rbkg-m5crqkm8l9bf7c",
"sg-11134201-7ra32-m4kbi7ymiy4h82"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1590728070,
"sold": 731,
"historical_sold": 10000,
"liked": false,
"liked_count": 47490,
"view_count": null,
"catid": 100010,
"brand": "Kris",
"cmt_count": 6654,
"flag": 655360,
"cb_option": 0,
"item_status": "normal",
"price": 53990000000,
"price_min": 53990000000,
"price_max": 53990000000,
"price_min_before_discount": 75590000000,
"price_max_before_discount": 75590000000,
"hidden_price_display": null,
"price_before_discount": 75590000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-29%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.91867966991748,
"rating_count": [
6665,
13,
17,
43,
353,
6239
],
"rcount_with_context": 1488,
"rcount_with_image": 1291
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 830755568156672,
"price": 53990000000,
"strikethrough_price": 75590000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-29%",
"model_id": 41564935963,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 75590000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10000,
"rounded_local_monthly_sold_count": 731,
"local_monthly_sold_count_text": "731",
"rounded_display_sold_count": 10000,
"display_sold_count_text": "10RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "AZKO Indonesia",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
91
]
},
"itemid": 3735719672,
"shopid": 229515338,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra1k-m4k8ofx4emtge2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000381,1002164,1011705,700085047,1400095067,1400285005,22,1001024,1015914,700190087,844931046478970,844931064601283,1400285055,700585046,997921070,1718087960,1428713,1059152,822059908662278,825465608499232,700005490,1049122,1049120,1059156,700000486,1718093079,1049117,1049116,1049112,1049124,700005487,1059151,700005510,2018618,1012763,2013645,1049136,298893311,825465608497696,700005516,298933384,700830032,834403089593352,700005499,2213652,700005537,1049123,1049155,1049147,1049127,1059154,299103323,700000553,2008656,1049154,1049141,1049132],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\"],\"merge_rank\":36,\"model_id\":41564935963,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra1k-m4k8ofx4emtge2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000381,1002164,1011705,700085047,1400095067,1400285005,22,1001024,1015914,700190087,844931046478970,844931064601283,1400285055,700585046,997921070,1718087960,1428713,1059152,822059908662278,825465608499232,700005490,1049122,1049120,1059156,700000486,1718093079,1049117,1049116,1049112,1049124,700005487,1059151,700005510,2018618,1012763,2013645,1049136,298893311,825465608497696,700005516,298933384,700830032,834403089593352,700005499,2213652,700005537,1049123,1049155,1049147,1049127,1059154,299103323,700000553,2008656,1049154,1049141,1049132],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\"],\"merge_rank\":36,\"model_id\":41564935963,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_3735719672",
"debug_info": null
},
{
"item_basic": {
"itemid": 25566795620,
"shopid": 17470865,
"name": "REIWA AC 0501RA Window 1/2 PK CW-0501RA",
"label_ids": [
844931064601283,
1400285055,
1015914,
700190087,
1000031,
1059154,
1059152,
822059908662278,
825465608497696,
822120592853526,
825465608499232,
834403089593352,
2018619,
2018618,
1918643,
700700063,
1012763,
298463379,
1718093079,
298893311,
825465608494624,
2153644,
2213652,
1428713,
1718087960,
2008656,
1718088045,
298468389
],
"image": "id-11134207-7rasg-m3uc9lmwv89rb1",
"images": [
"id-11134207-7rasg-m3uc9lmwv89rb1",
"id-11134207-7r98s-lw8awxz5brqm3d",
"id-11134207-7r98x-lw8awxzfbczxab",
"id-11134207-7r98z-lw8awxzfbcrf66",
"id-11134207-7r98y-lw8awxzpaykqc8",
"id-11134207-7r98y-lw8awxzpayay2c",
"id-11134207-7r98x-luolkqe9f3j16c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1709626186,
"sold": 101,
"historical_sold": 1000,
"liked": false,
"liked_count": 8122,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 889,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vene-mj0s8rkj6e4i3f.16000091767411340.mp4",
"thumb_url": "id-11110107-6vene-mj0s8rkj6e4i3f_cover",
"duration": 60,
"version": 2,
"vid": "id-11110107-6vene-mj0s8rkj6e4i3f",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vene-mj0s8rkj6e4i3f.16000091767411340.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vene-mj0s8rkj6e4i3f.16000091767411340.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vene-mj0s8rkj6e4i3f.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "TYPE",
"options": [
"REIWA 1/2",
"BESTLIFE 1/2"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "PACKING",
"options": [
"WRAPPING",
"PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.887063655030801,
"rating_count": [
974,
7,
1,
13,
53,
900
],
"rcount_with_context": 307,
"rcount_with_image": 222
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 408617195160464,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 157910580303,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 101,
"local_monthly_sold_count_text": "101",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "STARLYN Official Store",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
91,
88,
97,
0,
1000,
4
]
},
"itemid": 25566795620,
"shopid": 17470865,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m3uc9lmwv89rb1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1015914,700190087,1000031,1059154,1059152,822059908662278,825465608497696,822120592853526,825465608499232,834403089593352,2018619,2018618,1918643,700700063,1012763,298463379,1718093079,298893311,825465608494624,2153644,2213652,1428713,1718087960,2008656,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":37,\"model_id\":157910580303,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,91,88,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m3uc9lmwv89rb1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1015914,700190087,1000031,1059154,1059152,822059908662278,825465608497696,822120592853526,825465608499232,834403089593352,2018619,2018618,1918643,700700063,1012763,298463379,1718093079,298893311,825465608494624,2153644,2213652,1428713,1718087960,2008656,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":37,\"model_id\":157910580303,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,91,88,97,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25566795620",
"debug_info": null
},
{
"item_basic": {
"itemid": 27421902872,
"shopid": 426359637,
"name": "Pcb AC multi PG 01 / modul AC universal PG 01",
"label_ids": [
1718087960,
1428713,
844931064601283,
844931086908638,
1718093079,
1213641,
2018619,
2023641,
1015914,
700190087,
700830032,
700765096,
298463379,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
298458398,
1718088044,
1718088045,
298468390,
298458396,
1718093084,
298468389
],
"image": "id-11134207-82250-mgg4yy9njwuk2f",
"images": [
"id-11134207-82250-mgg4yy9njwuk2f",
"id-11134207-7rask-m49wut9hh8kj2a",
"id-11134207-7ras9-m49wut9hin4z4b",
"id-11134207-7ras9-m49wut9hk1pf5e",
"id-11134207-7rasl-m49wut9hlg9vcf"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1735280761,
"sold": 8,
"historical_sold": 36,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "One Cool",
"cmt_count": 14,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 13250000000,
"price_min": 13250000000,
"price_max": 13250000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ke1m-m4a00nbabkavef.16000091735280624.mp4",
"thumb_url": "id-11110107-6ke1m-m4a00nbabkavef_cover",
"duration": 25,
"version": 2,
"vid": "id-11110107-6ke1m-m4a00nbabkavef",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke1m-m4a00nbabkavef.16000091735280624.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1m-m4a00nbabkavef.16000091735280624.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1m-m4a00nbabkavef.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.928571428571429,
"rating_count": [
14,
0,
0,
0,
1,
13
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 13250000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 185678666796,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 13250000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 36,
"rounded_local_monthly_sold_count": 8,
"local_monthly_sold_count_text": "8",
"rounded_display_sold_count": 36,
"display_sold_count_text": "36"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "AA sparepats",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 672851191,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiZAg5MONSdVi5bPb0Hm16WdgZUhMe8i/nflHV2HmPbpsmLrrM5JqGhjJ0Of6KXoi2utGPrf9sUkDg+iGnCS1AvFsdy9aWG46b/3FNFvPJ794QtTrZnWzQlw8u0Axmz5uyotbEEmymAjTI0AxiyIsymKt5zfRyxlIX6aXxIql1jQ3eudZpe0sdOONV/bQRxv+M0Wvwd5CwDo+EAxWpO7xi6wXKgSrUOQO86/7PT6dcR/pG00atFzgRjS/eZkitZQc5nY4/4Nn3N67etxHQSQEjOPuj5+EPJhg0ZTshpb/2kSIYd2kzGYdAaktvZqSExlN1meu0+0NCHCZpOhy6EqnzD1I04w5t6SSxS0XJCAlGHGf/ywbyVCHFl81mHI/vCP7GDc0T9rfDWJqp5do4bv9MTEnEc0OiOWlChxO06KkSeVrpt7ikk51c84eCAXEYuTlgJUihDjxmrGzE+R2hegJuLNfAyuH/coFH8F0vyEhYn/Rw==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EPfJ68ACGNfQptcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWkFnNU1PTlNkVmk1YlBiMEhtMTZXZGdaVWhNZThpL25mbEhWMkhtUGJwc21McnJNNUpxR2hqSjBPZjZLWG9pMnV0R1ByZjlzVWtEZytpR25DUzFBdkZzZHk5YVdHNDZiLzNGTkZ2UEo3OTRRdFRyWm5XelFsdzh1MEF4bXo1dXlvdGJFRW15bUFqVEkwQXhpeUlzeW1LdDV6ZlJ5eGxJWDZhWHhJcWwxalEzZXVkWnBlMHNkT09OVi9iUVJ4ditNMFd2d2Q1Q3dEbytFQXhXcE83eGk2d1hLZ1NyVU9RTzg2LzdQVDZkY1IvcEcwMGF0RnpnUmpTL2Vaa2l0WlFjNW5ZNC80Tm4zTjY3ZXR4SFFTUUVqT1B1ajUrRVBKaGcwWlRzaHBiLzJrU0lZZDJrekdZZEFha3R2WnFTRXhsTjFtZXUwKzBOQ0hDWnBPaHk2RXFuekQxSTA0dzV0NlNTeFMwWEpDQWxHSEdmL3l3YnlWQ0hGbDgxbUhJL3ZDUDdHRGMwVDlyZkRXSnFwNWRvNGJ2OU1URW5FYzBPaU9XbENoeE8wNktrU2VWcnB0N2lrazUxYzg0ZUNBWEVZdVRsZ0pVaWhEanhtckd6RStSMmhlZ0p1TE5mQXl1SC9jb0ZIOEYwdnlFaFluL1J3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AGv+vnGR+kBAAAAoEtg8z/xAQAAAACzo/Y/yAwP4AwB6QwAAACA67PJP4kNexSuR+F6lD+RDQrXo3DBTiRBoQ0AAABADrt/QfgNgOjUgC+wDsDEoR3iDgyqjQbHjQbVjgbwkAbIDwfiGbwKRW1Nd0xqTTVOaXd0TVN3dE1Td3RNU3d0TVN3d0xqUXNNU3d4TGpZeE1qQTVOREl5TURRNE1UUTJORE1zTUM0NUxDMHhMREV1TURBd01ERXlNeXd6T0M0MU56a3hNekUzTXpNMU1EUTROaXd4TGpnd016WTVNVGN6TlRZMk5qVTVOVFlzTFRFZDdRK3lUQ0RqNGU0UExZUEF5ajQxQUFDQVB6bkNDWFBuaC9lNlFVRkt0Q3hJRkV2elFVb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQUJBdlhsTVAza0FBQUJBaVFnRVA0RUJBQUFBZ0dBQ2FVR0pBUUFBQUFDSHppOUJrUUVBQUFEd1NQOXFRWmtCQUFBQXdKcmhjRUdoQVFBQUFNQTBlRFZCcVFFQUFBQU1Iamx5UWVnQkFZQUNsQU9LQWo0d0xqQXdOamMyTlN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSXhORGszTVN3eExqSTFNemc0Tnl3eExqTTNORFV4TXl3eExqTTNORFV4TTVrQ21wbVptWm1aMlQraEFpMm1zNWovdGJ0QndRSUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJBQUFBQUFBQUFJRFpBZ0RGc1dNZ2cxVkI0UUlBVyswK3BUb2hRZWtDNUZmQWp3aXhxVUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBOElKYytlSDk3cEJvUU5LdEN4SUZFdnpRYmtEU0Z6QWlLaXo2RC9CQS9tVVdGZ3ArZW8veVFPQ0lvYmQxeDN1UDlFRCtqbnU2R0dVN2ovNkF3a0tCVWx6VGxCQ0VBRDZBd3NLQjFKdmFWUnBaWElRQWZvRERRb0pUM0prWlhKVWFXVnlFQVA2QXhFS0RVbDBaVzFRY21salpWUnBaWElRQTRFRUFBQUE0RE9qU3orSkJBQUFBR0JJNzBZL2tBU2JBNWdFOFBQVHlkY0VvQVNsaGFPMkFiZ0VxTVhyMVFqQUJNM0tqb3dLeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFBQjh0WHMvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBR0NGY1BNL3VRVUFBQUNnNncvMFA4RUZBQUFBZ0FIKzlUL0pCUUFBQUlBQi92VS/qGQS6TcNN+hmMBgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDb3JnCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI3NDIxOTAyODcyCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChIKDHZvdWNoZXJfbGVucxICEAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoALAfgICAgICAgKCAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJS2ms5j/tbtB8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 27421902872,
"shopid": 426359637,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":33272036,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgg4yy9njwuk2f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,1213641,2018619,2023641,1015914,700190087,700830032,700765096,298463379,700005490,1049120,822059908662278,825465608499232,825465608497696,2048660,2048661,298458398,1718088044,1718088045,298468390,298458396,1718093084,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":38,\"model_id\":185678666796,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":33272036,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mgg4yy9njwuk2f\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,1213641,2018619,2023641,1015914,700190087,700830032,700765096,298463379,700005490,1049120,822059908662278,825465608499232,825465608497696,2048660,2048661,298458398,1718088044,1718088045,298468390,298458396,1718093084,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":38,\"model_id\":185678666796,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EPfJ68ACGNfQptcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpWkFnNU1PTlNkVmk1YlBiMEhtMTZXZGdaVWhNZThpL25mbEhWMkhtUGJwc21McnJNNUpxR2hqSjBPZjZLWG9pMnV0R1ByZjlzVWtEZytpR25DUzFBdkZzZHk5YVdHNDZiLzNGTkZ2UEo3OTRRdFRyWm5XelFsdzh1MEF4bXo1dXlvdGJFRW15bUFqVEkwQXhpeUlzeW1LdDV6ZlJ5eGxJWDZhWHhJcWwxalEzZXVkWnBlMHNkT09OVi9iUVJ4ditNMFd2d2Q1Q3dEbytFQXhXcE83eGk2d1hLZ1NyVU9RTzg2LzdQVDZkY1IvcEcwMGF0RnpnUmpTL2Vaa2l0WlFjNW5ZNC80Tm4zTjY3ZXR4SFFTUUVqT1B1ajUrRVBKaGcwWlRzaHBiLzJrU0lZZDJrekdZZEFha3R2WnFTRXhsTjFtZXUwKzBOQ0hDWnBPaHk2RXFuekQxSTA0dzV0NlNTeFMwWEpDQWxHSEdmL3l3YnlWQ0hGbDgxbUhJL3ZDUDdHRGMwVDlyZkRXSnFwNWRvNGJ2OU1URW5FYzBPaU9XbENoeE8wNktrU2VWcnB0N2lrazUxYzg0ZUNBWEVZdVRsZ0pVaWhEanhtckd6RStSMmhlZ0p1TE5mQXl1SC9jb0ZIOEYwdnlFaFluL1J3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AGv+vnGR+kBAAAAoEtg8z/xAQAAAACzo/Y/yAwP4AwB6QwAAACA67PJP4kNexSuR+F6lD+RDQrXo3DBTiRBoQ0AAABADrt/QfgNgOjUgC+wDsDEoR3iDgyqjQbHjQbVjgbwkAbIDwfiGbwKRW1Nd0xqTTVOaXd0TVN3dE1Td3RNU3d0TVN3d0xqUXNNU3d4TGpZeE1qQTVOREl5TURRNE1UUTJORE1zTUM0NUxDMHhMREV1TURBd01ERXlNeXd6T0M0MU56a3hNekUzTXpNMU1EUTROaXd4TGpnd016WTVNVGN6TlRZMk5qVTVOVFlzTFRFZDdRK3lUQ0RqNGU0UExZUEF5ajQxQUFDQVB6bkNDWFBuaC9lNlFVRkt0Q3hJRkV2elFVb09DSno2NFFRUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQUJBdlhsTVAza0FBQUJBaVFnRVA0RUJBQUFBZ0dBQ2FVR0pBUUFBQUFDSHppOUJrUUVBQUFEd1NQOXFRWmtCQUFBQXdKcmhjRUdoQVFBQUFNQTBlRFZCcVFFQUFBQU1Iamx5UWVnQkFZQUNsQU9LQWo0d0xqQXdOamMyTlN3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSXhORGszTVN3eExqSTFNemc0Tnl3eExqTTNORFV4TXl3eExqTTNORFV4TTVrQ21wbVptWm1aMlQraEFpMm1zNWovdGJ0QndRSUFBQUFBQUFBQWdNb0NDd2dCRVFBQUFBQUFBQUFBeWdJTENBSVJBQUFBQUFBQUFJRFpBZ0RGc1dNZ2cxVkI0UUlBVyswK3BUb2hRZWtDNUZmQWp3aXhxVUdLQXpBQUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEK1pBOElKYytlSDk3cEJvUU5LdEN4SUZFdnpRYmtEU0Z6QWlLaXo2RC9CQS9tVVdGZ3ArZW8veVFPQ0lvYmQxeDN1UDlFRCtqbnU2R0dVN2ovNkF3a0tCVWx6VGxCQ0VBRDZBd3NLQjFKdmFWUnBaWElRQWZvRERRb0pUM0prWlhKVWFXVnlFQVA2QXhFS0RVbDBaVzFRY21salpWUnBaWElRQTRFRUFBQUE0RE9qU3orSkJBQUFBR0JJNzBZL2tBU2JBNWdFOFBQVHlkY0VvQVNsaGFPMkFiZ0VxTVhyMVFqQUJNM0tqb3dLeVFSN0ZLNUg0WHFVUCtFRWV4U3VSK0Y2bEQvcEJBQUFBQUFBQVBBLzhRUUFBQUFBQUFEd1Ava0VBQUFBQUFBQThEK0JCUUFBQUFBQUFQQS9pUVVBQUFBQUFBRHdQNUVGQUFBQUFBQUE4RCtaQlFBQUFBQjh0WHMvb1FVQUFBQUFBQUR3UDZrRkFBQUFBQUFBOEQreEJRQUFBR0NGY1BNL3VRVUFBQUNnNncvMFA4RUZBQUFBZ0FIKzlUL0pCUUFBQUlBQi92VS/qGQS6TcNN+hmMBgoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChYKDWJpel9xdWV1ZV9pZHMSBSIDb3JnCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI3NDIxOTAyODcyCmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChIKDHZvdWNoZXJfbGVucxICEAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoALAfgICAgICAgKCAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJS2ms5j/tbtB8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27421902872",
"debug_info": null
},
{
"item_basic": {
"itemid": 41309193304,
"shopid": 847554776,
"name": "Selang Hawa AC Mobil Universal 4 Pcs Kualitas Terbaik",
"label_ids": [
844931064601283,
1119699,
1718093079,
844931086908638,
2018619,
1400285055,
1718087960,
1428713,
700005489,
1059152,
822059908662278,
825465608497696,
825465608499232,
1015914,
700190087,
298933384,
2023641,
2068629,
298938357,
2098629
],
"image": "id-11134207-7ra0m-mceno4fv0yqm55",
"images": [
"id-11134207-7ra0m-mceno4fv0yqm55",
"id-11134207-7ra0t-mceno4fv2db201",
"id-11134207-7ra0u-mceno4fv3rvid5",
"id-11134207-7ra0h-mceno4fv56fy16"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1752997728,
"sold": 60,
"historical_sold": 446,
"liked": false,
"liked_count": 37,
"view_count": null,
"catid": 100640,
"brand": "",
"cmt_count": 155,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 2590000000,
"price_min": 2590000000,
"price_max": 2590000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.870967741935484,
"rating_count": [
155,
1,
0,
2,
12,
140
],
"rcount_with_context": 19,
"rcount_with_image": 18
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 2590000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 285770048569,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 2590000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 446,
"rounded_local_monthly_sold_count": 60,
"local_monthly_sold_count_text": "60",
"rounded_display_sold_count": 446,
"display_sold_count_text": "446"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "AC Part Mobilku",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 41309193304,
"shopid": 847554776,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mceno4fv0yqm55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1119699,1718093079,844931086908638,2018619,1400285055,1718087960,1428713,700005489,1059152,822059908662278,825465608497696,825465608499232,1015914,700190087,298933384,2023641,2068629,298938357,2098629],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":39,\"model_id\":285770048569,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mceno4fv0yqm55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1119699,1718093079,844931086908638,2018619,1400285055,1718087960,1428713,700005489,1059152,822059908662278,825465608497696,825465608499232,1015914,700190087,298933384,2023641,2068629,298938357,2098629],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":39,\"model_id\":285770048569,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41309193304",
"debug_info": null
},
{
"item_basic": {
"itemid": 40513139749,
"shopid": 1609946736,
"name": "ARTIC AIR COOLER AC Mini Portable Kipas Penyejuk Udara AC Mini Pendingin Portable Kipas Angin AC Mini Portable Cooling Ruangan",
"label_ids": [
844931064601283,
844931086908638,
1718093079,
2023641,
2018619,
1718093065,
1015914,
700190087,
1400285055,
298933384,
1059154,
1059152,
822059908662278,
825465608499232,
825465608497696
],
"image": "id-11134207-7ra0s-mdfmiad0luha65",
"images": [
"id-11134207-7ra0s-mdfmiad0luha65",
"id-11134207-7ra0n-mdfm48c3kzij51",
"id-11134207-7ra0o-mdfm48c3jky3ad",
"id-11134207-7ra0j-mdfm48c3nsnf5b",
"id-11134207-7ra0r-mdfm48c3i6dn76",
"id-11134207-7ra0k-mdfm48c3grt7bf"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1755235336,
"sold": 29,
"historical_sold": 51,
"liked": false,
"liked_count": 13,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 21,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 7720000000,
"price_min": 7720000000,
"price_max": 7720000000,
"price_min_before_discount": 10000000000,
"price_max_before_discount": 10000000000,
"hidden_price_display": null,
"price_before_discount": 10000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-23%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ko28-mdfmhqrz5damfe.16000041755234242.mp4",
"thumb_url": "id-11110105-6ko28-mdfmhqrz5damfe_cover",
"duration": 31,
"version": 2,
"vid": "id-11110105-6ko28-mdfmhqrz5damfe",
"formats": [
{
"format": 1600004,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ko28-mdfmhqrz5damfe.16000041755234242.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ko28-mdfmhqrz5damfe.16000041755234242.mp4",
"width": 636,
"height": 360
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ko28-mdfmhqrz5damfe.default.mp4",
"width": 636,
"height": 360
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.857142857142857,
"rating_count": [
21,
0,
0,
0,
3,
18
],
"rcount_with_context": 3,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 720817911037952,
"price": 7720000000,
"strikethrough_price": 10000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-23%",
"model_id": 243747249625,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 10000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 51,
"rounded_local_monthly_sold_count": 29,
"local_monthly_sold_count_text": "29",
"rounded_display_sold_count": 51,
"display_sold_count_text": "51"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Crown.store8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 40513139749,
"shopid": 1609946736,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mdfmiad0luha65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,2023641,2018619,1718093065,1015914,700190087,1400285055,298933384,1059154,1059152,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":40,\"model_id\":243747249625,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mdfmiad0luha65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,2023641,2018619,1718093065,1015914,700190087,1400285055,298933384,1059154,1059152,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":40,\"model_id\":243747249625,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40513139749",
"debug_info": null
},
{
"item_basic": {
"itemid": 40472531561,
"shopid": 1517647103,
"name": "Buy 3 Pepsodent Ultra White Fresh Shine 90g FREE Electric Fan",
"label_ids": [
2018618,
844931064601283,
844931086908638,
298933337,
814381247177222,
1718093079,
1015914,
700190087,
1400285055,
1428713,
1718087960,
2213652,
700005486,
1049112,
822059908662278,
825465608499232,
825465608497696,
840990690654214,
840955085144628,
825465608492064,
825465608493600,
822120592861206,
1049130,
700005503,
298463379,
1049126,
700005507,
1049135,
700005506,
299103323,
2008656,
1718088045,
298468389
],
"image": "id-11134201-82250-mhu59blv785eba",
"images": [
"id-11134201-82250-mhu59blv785eba",
"id-11134201-8224w-mhu59bvi5gck2e",
"id-11134201-82250-mhu59cexo9oj4c",
"id-11134201-8224q-mhu59d1yb4798a",
"id-11134201-8224w-mhu59dg314i063",
"id-11134201-8224q-mhu59drmayo6a8",
"id-11134201-8224u-mhu59dzxdr7p2f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1759303836,
"sold": 55,
"historical_sold": 922,
"liked": false,
"liked_count": 396,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 359,
"flag": 268634112,
"cb_option": 0,
"item_status": "normal",
"price": 17100000000,
"price_min": 17100000000,
"price_max": 17100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Model Name",
"options": [
"Package"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.927576601671309,
"rating_count": [
359,
3,
1,
0,
11,
344
],
"rcount_with_context": 52,
"rcount_with_image": 34
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 410530749887840,
"add_on_deal_label": "Free Gift",
"sub_type": 2,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": true,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 16300000000,
"strikethrough_price": 17100000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1324392621948936,
"discount_text": null,
"model_id": 261832986221,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1324392621948936,
"voucher_code": "ULIP1SU",
"voucher_discount": 800000000,
"time_info": {
"start_time": 1767632400,
"end_time": 1768928340,
"valid_duration": null
},
"groups": [],
"min_spend": 15000000000
},
"recommended_platform_voucher_info": null,
"original_price": 17100000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 922,
"rounded_local_monthly_sold_count": 55,
"local_monthly_sold_count_text": "55",
"rounded_display_sold_count": 922,
"display_sold_count_text": "922"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Unilever Personal Care Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 40472531561,
"shopid": 1517647103,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82250-mhu59blv785eba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,844931086908638,298933337,814381247177222,1718093079,1015914,700190087,1400285055,1428713,1718087960,2213652,700005486,1049112,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608493600,822120592861206,1049130,700005503,298463379,1049126,700005507,1049135,700005506,299103323,2008656,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":41,\"model_id\":261832986221,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82250-mhu59blv785eba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,844931064601283,844931086908638,298933337,814381247177222,1718093079,1015914,700190087,1400285055,1428713,1718087960,2213652,700005486,1049112,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608493600,822120592861206,1049130,700005503,298463379,1049126,700005507,1049135,700005506,299103323,2008656,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":41,\"model_id\":261832986221,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40472531561",
"debug_info": null
},
{
"item_basic": {
"itemid": 58151563107,
"shopid": 1659966682,
"name": "TERLARIS Peci Wadimor Full Ac | PECI SONGKOK HITAM WADIMOR | Kopiah Wadimor Anak Dewasa Tinggi 6 7 8 9 10Cm",
"label_ids": [
844931064601283,
844931086908638,
1049112,
1049139,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
1015914,
700190087,
2203670,
298463379,
1400285055,
1428713,
1718087960,
298933384,
2103651,
2143613,
1718088045,
298468389
],
"image": "sg-11134201-821eb-mh6h1gvv7mdl3a",
"images": [
"sg-11134201-821eb-mh6h1gvv7mdl3a",
"id-11134207-8224s-mhg7v2cnz4e8ce",
"sg-11134201-821fs-mh6h1h1hk7imb1",
"sg-11134201-821df-mh6h1h6ml2xa96",
"sg-11134201-821ew-mh6h1hbmp0cu2c",
"sg-11134201-821ec-mh6h1hh1sdfzd3",
"sg-11134201-821g2-mh6h1htbjz7y8c",
"sg-11134201-821g7-mh6h1hy4lnv18c",
"sg-11134201-821gc-mh6h1i2zzmkp35"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763397227,
"sold": 42,
"historical_sold": 47,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100014,
"brand": "WADIMOR",
"cmt_count": 10,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 6190000000,
"price_min": 6190000000,
"price_max": 6190000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vdv6-mhyuyrv6jx1f90.16000071765115610.mp4",
"thumb_url": "id-11110107-6vdv6-mhyuyrv6jx1f90_cover",
"duration": 34,
"version": 2,
"vid": "id-11110107-6vdv6-mhyuyrv6jx1f90",
"formats": [
{
"format": 1600007,
"defn": "V640P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vdv6-mhyuyrv6jx1f90.16000071765115610.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdv6-mhyuyrv6jx1f90.16000071765115610.mp4",
"width": 640,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdv6-mhyuyrv6jx1f90.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Tinggi 7 Cm Pendek",
"Tinggi 8 Cm Sedang",
"Tinggi 9 Cm Standar",
"Tinggi 10 Cm Tinggi"
],
"images": [
"sg-11134201-821fa-mh6h1if17lzi72",
"sg-11134201-821fx-mh6h1iltgrgp0e",
"sg-11134201-821dz-mh6h1ise41scf8",
"sg-11134201-821g0-mh6h1iyxmn7uc6"
],
"properties": [],
"type": 0
},
{
"name": "Ukuran",
"options": [
"No 2",
"No 3",
"No 4",
"No 5",
"No 6",
"No 7",
"No 8",
"No 9",
"No 10",
"Random Merek Lain"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8,
"rating_count": [
10,
0,
0,
0,
2,
8
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Garut",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 5190000000,
"strikethrough_price": 6190000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1328486506053632,
"discount_text": null,
"model_id": 167361349116,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1328486506053632,
"voucher_code": "SVC-1328486506053632",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1768323600,
"end_time": 1768409999,
"valid_duration": null
},
"groups": [],
"min_spend": 5500000000
},
"recommended_platform_voucher_info": null,
"original_price": 6190000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 0,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 47,
"rounded_local_monthly_sold_count": 42,
"local_monthly_sold_count_text": "42",
"rounded_display_sold_count": 47,
"display_sold_count_text": "47"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "AL RAFSAN",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 58151563107,
"shopid": 1659966682,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821eb-mh6h1gvv7mdl3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1049139,1718093079,822059908662278,825465608499232,825465608497696,1119699,1015914,700190087,2203670,298463379,1400285055,1428713,1718087960,298933384,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":42,\"model_id\":167361349116,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-821eb-mh6h1gvv7mdl3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1049139,1718093079,822059908662278,825465608499232,825465608497696,1119699,1015914,700190087,2203670,298463379,1400285055,1428713,1718087960,298933384,2103651,2143613,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":42,\"model_id\":167361349116,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_58151563107",
"debug_info": null
},
{
"item_basic": {
"itemid": 25832856993,
"shopid": 25007009,
"name": "PREON R22 1 CAN ISI 13.6 KG",
"label_ids": [
844931064601283,
1213641,
1015914,
700190087,
1000031,
1400285055,
2018619,
2023641,
1059151,
1049112,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
2048661,
2048660,
700765096,
298463379,
1718093079,
2108629,
1718093084,
1718088045,
298468389,
298458396,
1718088044,
298458398,
298468390
],
"image": "id-11134207-7r98s-lx3eairn6hiid3",
"images": [
"id-11134207-7r98s-lx3eairn6hiid3",
"id-11134207-7r98y-lyywxm5qgmawd9",
"id-11134207-7r98w-lyywxm5qf7qgd8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1719627564,
"sold": 1,
"historical_sold": 67,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "Refrigerant",
"cmt_count": 20,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 380460000000,
"price_min": 380460000000,
"price_max": 380460000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke14-lyyx79xhcgbx7a.16000081723713802.mp4",
"thumb_url": "id-11110105-7r98o-lyyx7cbhuxr436",
"duration": 16,
"version": 2,
"vid": "id-11110105-6ke14-lyyx79xhcgbx7a",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke14-lyyx79xhcgbx7a.16000081723713802.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lyyx79xhcgbx7a.16000081723713802.mp4",
"width": 478,
"height": 850
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lyyx79xhcgbx7a.default.mp4",
"width": 478,
"height": 850
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "r22",
"options": [
"1 TABUNG",
"2 TABUNG",
"3 TABUNG",
"4 TABUNG",
"5 TABUNG"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.95,
"rating_count": [
20,
0,
0,
0,
1,
19
],
"rcount_with_context": 4,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 380460000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 306251524567,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 380460000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 67,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 67,
"display_sold_count_text": "67"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "KT COOL",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 25832856993,
"shopid": 25007009,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lx3eairn6hiid3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1015914,700190087,1000031,1400285055,2018619,2023641,1059151,1049112,822059908662278,825465608494624,825465608499232,825465608497696,2048661,2048660,700765096,298463379,1718093079,2108629,1718093084,1718088045,298468389,298458396,1718088044,298458398,298468390],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":43,\"model_id\":306251524567,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lx3eairn6hiid3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1015914,700190087,1000031,1400285055,2018619,2023641,1059151,1049112,822059908662278,825465608494624,825465608499232,825465608497696,2048661,2048660,700765096,298463379,1718093079,2108629,1718093084,1718088045,298468389,298458396,1718088044,298458398,298468390],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":43,\"model_id\":306251524567,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25832856993",
"debug_info": null
},
{
"item_basic": {
"itemid": 26427029756,
"shopid": 139161747,
"name": "Paket Material Ac Baru 1/2 PK - 1 PK LENGKAP (Pipa Rme Pro 1/4 + 3/8)",
"label_ids": [
1718087960,
1428713,
844931064601283,
298463379,
1718093079,
1213641,
2018619,
2023641,
1400285055,
298893311,
1015914,
700190087,
1059152,
700005489,
822059908662278,
825465608493600,
825465608499232,
825465608497696,
298933384,
700830032,
2048660,
2048661,
700765096,
2068629,
298938357,
2098629,
298468389,
298938368,
1718088045,
2098628,
298458396,
298468390,
298458398,
1718088044,
1718093084
],
"image": "id-11134207-7rbk3-m7ix2hpqcszo3d",
"images": [
"id-11134207-7rbk3-m7ix2hpqcszo3d",
"id-11134207-7rbk2-m9e2jojzswf1e2",
"id-11134207-7rbk9-m9e2jojzuazh55"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1740204808,
"sold": 125,
"historical_sold": 724,
"liked": false,
"liked_count": 345,
"view_count": null,
"catid": 100010,
"brand": "Jembo Cable",
"cmt_count": 232,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 25300000000,
"price_min": 25300000000,
"price_max": 25300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmiq-m7ixhs22vjts07.16000081742358905.mp4",
"thumb_url": "id-11110105-6kmiq-m7ixhs22vjts07_cover",
"duration": 16,
"version": 2,
"vid": "id-11110105-6kmiq-m7ixhs22vjts07",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmiq-m7ixhs22vjts07.16000081742358905.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiq-m7ixhs22vjts07.16000081742358905.mp4",
"width": 720,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiq-m7ixhs22vjts07.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "PAKET RME PRO",
"options": [
"Material pipa 2mtr",
"Material pipa 3mtr",
"Material pipa 4mtr",
"Material pipa 5mtr",
"Material pipa 6mtr",
"Material pipa 7mtr",
"Material pipa 8mtr",
"Material pipa 9mtr",
"Material pipa 10mtr",
"Material pipa 11mtr",
"Material pipa 12mtr",
"Material pipa 13mtr",
"Material pipa 14mtr",
"Material pipa 15mtr"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "Material",
"options": [
"tanpaSteker &Bracket",
"Hanya tanpa Steker",
"Hanya tanpa Bracket",
"LENGKAP"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.866379310344827,
"rating_count": [
232,
1,
1,
5,
14,
211
],
"rcount_with_context": 48,
"rcount_with_image": 35
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp84RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 25300000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410102755493,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 25300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 724,
"rounded_local_monthly_sold_count": 125,
"local_monthly_sold_count_text": "125",
"rounded_display_sold_count": 724,
"display_sold_count_text": "724"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp84RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ioelectronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 26427029756,
"shopid": 139161747,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m7ix2hpqcszo3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1718093079,1213641,2018619,2023641,1400285055,298893311,1015914,700190087,1059152,700005489,822059908662278,825465608493600,825465608499232,825465608497696,298933384,700830032,2048660,2048661,700765096,2068629,298938357,2098629,298468389,298938368,1718088045,2098628,298458396,298468390,298458398,1718088044,1718093084],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\"],\"merge_rank\":44,\"model_id\":410102755493,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m7ix2hpqcszo3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1718093079,1213641,2018619,2023641,1400285055,298893311,1015914,700190087,1059152,700005489,822059908662278,825465608493600,825465608499232,825465608497696,298933384,700830032,2048660,2048661,700765096,2068629,298938357,2098629,298468389,298938368,1718088045,2098628,298458396,298468390,298458398,1718088044,1718093084],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\"],\"merge_rank\":44,\"model_id\":410102755493,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26427029756",
"debug_info": null
},
{
"item_basic": {
"itemid": 4769993640,
"shopid": 55624866,
"name": "RECEIVER MODUL SENSOR AC LG DUAL INVERTER SMART INVERTER E06SV3 E06SV4 E10SV3 E10SV4 T06EV3 ORIGINAL",
"label_ids": [
1001024,
1001036,
1011751,
1011747,
700020158,
844931064601283,
298458335,
298458334,
298463379,
1213641,
1400285055,
1000031,
298458395,
1718087960,
1428713,
1049126,
700005507,
822059908662278,
825465608492064,
825465608499232,
825465608497696,
837860934119952,
1718093079,
2018619,
1015914,
700190087,
298893311,
298933384,
700830032,
2048660,
2048661,
844931086908638,
2023641,
1718088045,
298468390,
298458398,
298458396,
1718093084,
298468389,
1718088044
],
"image": "id-11134207-7rasf-m5p8cdaywx8g59",
"images": [
"id-11134207-7rasf-m5p8cdaywx8g59",
"id-11134207-7rasj-m5p8cdaz2ji895",
"id-11134207-7rask-m5p8cdayybsw77",
"id-11134207-7rasc-m5p8cdaz14xs9a",
"id-11134207-7rbk2-m6v5zq88vm244b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1608312375,
"sold": 16,
"historical_sold": 198,
"liked": false,
"liked_count": 66,
"view_count": null,
"catid": 100010,
"brand": "LG",
"cmt_count": 95,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 12700000000,
"price_min": 12700000000,
"price_max": 12700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Model",
"options": [
"Kabel saja set",
"Sensor +kabel",
"Sensor+Cover+kabel",
"Sensor fullset"
],
"images": [
"id-11134207-7rbk9-m6v5zq88x0mkbb",
"id-11134207-7rbkd-m6v5zq88yf7069",
"id-11134207-7rbk2-m6v5zq88ztrg01",
"id-11134207-7rbkb-m6v5zq8918bw2c"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.729166666666667,
"rating_count": [
96,
2,
2,
2,
8,
82
],
"rcount_with_context": 19,
"rcount_with_image": 10
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Denpasar",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 12700000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 247772049913,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 12700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 198,
"rounded_local_monthly_sold_count": 16,
"local_monthly_sold_count_text": "16",
"rounded_display_sold_count": 198,
"display_sold_count_text": "198"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "KaryaTeknikAC",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 4769993640,
"shopid": 55624866,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m5p8cdaywx8g59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,1001036,1011751,1011747,700020158,844931064601283,298458335,298458334,298463379,1213641,1400285055,1000031,298458395,1718087960,1428713,1049126,700005507,822059908662278,825465608492064,825465608499232,825465608497696,837860934119952,1718093079,2018619,1015914,700190087,298893311,298933384,700830032,2048660,2048661,844931086908638,2023641,1718088045,298468390,298458398,298458396,1718093084,298468389,1718088044],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":45,\"model_id\":247772049913,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m5p8cdaywx8g59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,1001036,1011751,1011747,700020158,844931064601283,298458335,298458334,298463379,1213641,1400285055,1000031,298458395,1718087960,1428713,1049126,700005507,822059908662278,825465608492064,825465608499232,825465608497696,837860934119952,1718093079,2018619,1015914,700190087,298893311,298933384,700830032,2048660,2048661,844931086908638,2023641,1718088045,298468390,298458398,298458396,1718093084,298468389,1718088044],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":45,\"model_id\":247772049913,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_4769993640",
"debug_info": null
},
{
"item_basic": {
"itemid": 24070422485,
"shopid": 227074971,
"name": "TCL AC TAC 05 CSD/XBS 0.5 PK AC Low Watt [INDOOR + OUTDOOR ONLY] - 1/2 PK Mini Full Set - 1 2 PK Baru - Tersedia Pemasangan Jabodetabek",
"label_ids": [
1000381,
1000544,
1000549,
1011692,
1014815,
1016119,
1143625,
1518617,
1668726,
700085047,
1400095067,
1400285005,
1718072935,
1015914,
700190087,
844931086908638,
1400285055,
1718087960,
1428713,
298458395,
1718093079,
298463379,
822059908662278,
825465608497696,
1948020499688470,
822120592851990,
829846897364525,
825465608499232,
822120592903190,
822120592899094,
822120592904214,
1918643,
1049112,
700005486,
1000031,
1012763,
1988623,
1718162994,
2018618,
1400066568,
298893311,
814381247177222,
298933337,
2153644,
700830032,
1049116,
1049117,
2213652,
840960000382502,
298888358,
298938357,
299048391,
299048392,
700810080,
2008656,
1718088045,
2098628,
298938368,
298468389,
2098629
],
"image": "sg-11134201-825zt-mjf6jzpk4wzq93",
"images": [
"sg-11134201-825zt-mjf6jzpk4wzq93",
"id-11134207-82252-mh1cjj9rej9p98",
"id-11134207-8224q-mhixruogxmh2a1",
"id-11134201-7rbk1-majcwxj2q0im3a",
"id-11134201-7rbk9-majcwxjmnspq05",
"id-11134201-7rbk5-majcwxj2on5014",
"id-11134201-7rbk9-majcwxj2olg21a",
"id-11134201-7rbk2-majcwxj2olo87e",
"id-11134201-7ra0i-mc1zq135y9zz9e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1711102735,
"sold": 1000,
"historical_sold": 10000,
"liked": false,
"liked_count": 11113,
"view_count": null,
"catid": 100010,
"brand": "TCL",
"cmt_count": 4051,
"flag": 268500992,
"cb_option": 0,
"item_status": "normal",
"price": 259990000000,
"price_min": 259990000000,
"price_max": 259990000000,
"price_min_before_discount": 449900000000,
"price_max_before_discount": 449900000000,
"hidden_price_display": null,
"price_before_discount": 449900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-42%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16000081715825852.mp4",
"thumb_url": "id-11110105-7r991-lvcm7wa5dzi917",
"duration": 25,
"version": 2,
"vid": "id-11110105-6ke16-lvcm7sqsk07b93",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16003251716528598.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16003251716528598.mp4",
"width": 720,
"height": 720
},
{
"format": 1600324,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16003241716528598.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16003241716528598.mp4",
"width": 720,
"height": 720
},
{
"format": 1600558,
"defn": "V1080P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16005581716528598.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.16005581716528598.mp4",
"width": 1080,
"height": 1080
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-lvcm7sqsk07b93.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Variasi",
"options": [
"Unit Only",
"Instalasi + Material"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.883837181623423,
"rating_count": [
4201,
43,
6,
43,
212,
3897
],
"rcount_with_context": 1179,
"rcount_with_image": 1078
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "sg-11134201-81zuf-miwsotqi0ao4ef",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": true,
"spl_repayment_label_repayment": "Rp433RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 820161242775552,
"price": 259990000000,
"strikethrough_price": 449900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-42%",
"model_id": 232624174425,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 449900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 0,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10000,
"rounded_local_monthly_sold_count": 1000,
"local_monthly_sold_count_text": "1RB+",
"rounded_display_sold_count": 10000,
"display_sold_count_text": "10RB+"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp433RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "TCL Official Shop ",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
1000,
97,
1000,
4
]
},
"itemid": 24070422485,
"shopid": 227074971,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zt-mjf6jzpk4wzq93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000381,1000544,1000549,1011692,1014815,1016119,1143625,1518617,1668726,700085047,1400095067,1400285005,1718072935,1015914,700190087,844931086908638,1400285055,1718087960,1428713,298458395,1718093079,298463379,822059908662278,825465608497696,1948020499688470,822120592851990,829846897364525,825465608499232,822120592903190,822120592899094,822120592904214,1918643,1049112,700005486,1000031,1012763,1988623,1718162994,2018618,1400066568,298893311,814381247177222,298933337,2153644,700830032,1049116,1049117,2213652,840960000382502,298888358,298938357,299048391,299048392,700810080,2008656,1718088045,2098628,298938368,298468389,2098629],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":46,\"model_id\":232624174425,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[88,1000,97,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zt-mjf6jzpk4wzq93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000381,1000544,1000549,1011692,1014815,1016119,1143625,1518617,1668726,700085047,1400095067,1400285005,1718072935,1015914,700190087,844931086908638,1400285055,1718087960,1428713,298458395,1718093079,298463379,822059908662278,825465608497696,1948020499688470,822120592851990,829846897364525,825465608499232,822120592903190,822120592899094,822120592904214,1918643,1049112,700005486,1000031,1012763,1988623,1718162994,2018618,1400066568,298893311,814381247177222,298933337,2153644,700830032,1049116,1049117,2213652,840960000382502,298888358,298938357,299048391,299048392,700810080,2008656,1718088045,2098628,298938368,298468389,2098629],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":46,\"model_id\":232624174425,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[88,1000,97,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24070422485",
"debug_info": null
},
{
"item_basic": {
"itemid": 6456170359,
"shopid": 236632192,
"name": "Beliajadulu88 Kipas angin berdiri ( Stand fan ) 16inch",
"label_ids": [
1000895,
1001176,
1001024,
1001177,
22,
1000287,
1011751,
700020158,
700020015,
1015914,
1400085392,
1400066664,
700190087,
822059908662278,
844931064601283,
844931086908638,
1049120,
700005490,
1400285055,
1213641,
298458334,
825465608493600,
825465608497696,
825465608499232,
1000031,
298458395,
1718087960,
1428713,
1400025118,
2018619,
2023641,
1718093079,
298893311,
700830032,
2048661,
2048660,
700765096,
298623321,
1993623,
998091078,
700585042,
1718093085,
298838363,
1718093084,
298458396
],
"image": "id-11134207-7r98q-lo3i2wazz91ic3",
"images": [
"id-11134207-7r98q-lo3i2wazz91ic3",
"2fc89f27b5ec0aff3e9a9cd0102aeb3d",
"id-11134207-7r98t-lo3i2wb00nly41",
"sg-11134201-22100-ildnemy327iv23",
"4de7cbbfef1e5b2487b6dcfbced40249",
"id-11134207-7r98r-lueogarbh3e0dd",
"id-11134207-7r98v-lug5lbxtrnh985",
"id-11134207-7ra0u-mcsvrqic7upjcc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1602139775,
"sold": 27,
"historical_sold": 10000,
"liked": false,
"liked_count": 8134,
"view_count": null,
"catid": 100010,
"brand": "TD",
"cmt_count": 7048,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 11900000000,
"price_min": 11900000000,
"price_max": 11900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1b-lr404tv6kg8757.16000081706587495.mp4",
"thumb_url": "id-11110105-7r98r-lr4056b0j3am29",
"duration": 55,
"version": 2,
"vid": "id-11110105-6ke1b-lr404tv6kg8757",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1b-lr404tv6kg8757.16003251712328385.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-lr404tv6kg8757.16003251712328385.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-lr404tv6kg8757.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "variasi",
"options": [
"trisonik",
"kavolux",
"TD",
"trisonik 10inch",
"PROFAN GRANDE"
],
"images": [
"3db1573538c6f3d0e9af9665db7de177",
"028d24ac0c3db016755e2b88a54a2c1b",
"55bb85a6ec7fc3577a4ba7a398355ebe",
"sg-11134201-22100-tyn230m2iuiv4f",
"id-11134207-7r98r-lug5lbxtugm57d"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.457321403209772,
"rating_count": [
7051,
300,
166,
490,
1178,
4917
],
"rcount_with_context": 2648,
"rcount_with_image": 2035
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134601-7r990-lla7h9wegp185d",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 11850000000,
"strikethrough_price": 11900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1298885742706688,
"discount_text": null,
"model_id": 154414234564,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1298885742706688,
"voucher_code": "BELI500DE",
"voucher_discount": 50000000,
"time_info": {
"start_time": 1764298980,
"end_time": 1772297940,
"valid_duration": null
},
"groups": [],
"min_spend": 5999900000
},
"recommended_platform_voucher_info": null,
"original_price": 11900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10000,
"rounded_local_monthly_sold_count": 27,
"local_monthly_sold_count_text": "27",
"rounded_display_sold_count": 10000,
"display_sold_count_text": "10RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Beliajadulu88",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 6456170359,
"shopid": 236632192,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lo3i2wazz91ic3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000895,1001176,1001024,1001177,22,1000287,1011751,700020158,700020015,1015914,1400085392,1400066664,700190087,822059908662278,844931064601283,844931086908638,1049120,700005490,1400285055,1213641,298458334,825465608493600,825465608497696,825465608499232,1000031,298458395,1718087960,1428713,1400025118,2018619,2023641,1718093079,298893311,700830032,2048661,2048660,700765096,298623321,1993623,998091078,700585042,1718093085,298838363,1718093084,298458396],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":47,\"model_id\":154414234564,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lo3i2wazz91ic3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000895,1001176,1001024,1001177,22,1000287,1011751,700020158,700020015,1015914,1400085392,1400066664,700190087,822059908662278,844931064601283,844931086908638,1049120,700005490,1400285055,1213641,298458334,825465608493600,825465608497696,825465608499232,1000031,298458395,1718087960,1428713,1400025118,2018619,2023641,1718093079,298893311,700830032,2048661,2048660,700765096,298623321,1993623,998091078,700585042,1718093085,298838363,1718093084,298458396],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":47,\"model_id\":154414234564,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_6456170359",
"debug_info": null
},
{
"item_basic": {
"itemid": 41204602393,
"shopid": 1172279593,
"name": "FLARING SINGLE CT 195 + CUTTER MINI TUBE CUTTER CT128 TOOL FLARING AC",
"label_ids": [
2018619,
2023641,
844931086908638,
844931064601283,
1119699,
1213641,
1718093065,
1015914,
700190087,
1400285055,
298933384,
1049112,
1059151,
822059908662278,
2048660,
2048661,
825465608492064,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
837860934119952,
700810080,
1718093079,
1718093084,
298458396
],
"image": "id-11134207-7rbk7-mb12b9o45e5546",
"images": [
"id-11134207-7rbk7-mb12b9o45e5546",
"id-11134207-7rbk7-mb12b9o46splbd",
"id-11134207-7rbk7-mb12b9o487a12f",
"id-11134207-7rbk2-mb12b9o49luhcd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1749996020,
"sold": 67,
"historical_sold": 465,
"liked": false,
"liked_count": 69,
"view_count": null,
"catid": 100636,
"brand": "",
"cmt_count": 218,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 8524900000,
"price_min": 8524900000,
"price_max": 8524900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "variasi",
"options": [
"FLARING 195",
"FLARING + TUBE CUTER"
],
"images": [
"id-11134207-7rbk2-mb12b9o4b0exb2",
"id-11134207-7rbke-mb12b9o4cezdb0"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.839449541284404,
"rating_count": [
218,
4,
0,
2,
15,
197
],
"rcount_with_context": 24,
"rcount_with_image": 19
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 8524900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 275391014010,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 8524900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 465,
"rounded_local_monthly_sold_count": 67,
"local_monthly_sold_count_text": "67",
"rounded_display_sold_count": 465,
"display_sold_count_text": "465"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "RQ store bekasi",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 41204602393,
"shopid": 1172279593,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-mb12b9o45e5546\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1119699,1213641,1718093065,1015914,700190087,1400285055,298933384,1049112,1059151,822059908662278,2048660,2048661,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,837860934119952,700810080,1718093079,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":48,\"model_id\":275391014010,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-mb12b9o45e5546\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1119699,1213641,1718093065,1015914,700190087,1400285055,298933384,1049112,1059151,822059908662278,2048660,2048661,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,837860934119952,700810080,1718093079,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":48,\"model_id\":275391014010,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41204602393",
"debug_info": null
},
{
"item_basic": {
"itemid": 1305412651,
"shopid": 24694523,
"name": "Bos Kipas Angin Kuping 9โ / BOSSING KIPAS 9โ",
"label_ids": [
1000544,
1000245,
1001024,
1001036,
30,
35,
64,
71,
74,
22,
844931086908638,
844931064601283,
1400285055,
1213641,
298463379,
1015914,
700190087,
1718093079,
700005499,
1059156,
822059908662278,
840955085144628,
825465608493600,
825465608499232,
825465608497696,
840990690654214,
2018619,
2023641,
298893311,
2048660,
2048661,
1718088044,
1718088045,
298468389,
298458396,
298468390,
298458398,
1718093084
],
"image": "id-11134207-7rasi-m5hlkvh6ybuq2b",
"images": [
"id-11134207-7rasi-m5hlkvh6ybuq2b",
"a8bafc78634c8c0dd1b26f29c0e85d73",
"b51fd30d98e8e66c33cba470a6eaeb83"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1531073724,
"sold": 52,
"historical_sold": 1000,
"liked": false,
"liked_count": 128,
"view_count": null,
"catid": 100010,
"brand": "Maspion",
"cmt_count": 370,
"flag": 196610,
"cb_option": 0,
"item_status": "normal",
"price": 650000000,
"price_min": 650000000,
"price_max": 650000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "JOkCFkk7lwQix45T",
"thumb_url": "4a5237a3cd44a71e88a5d682829da2d4",
"duration": 6,
"version": 2,
"vid": "sg_6796f91a-7023-42a5-8ba1-9d951e0de841_000011",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/sg_6796f91a-7023-42a5-8ba1-9d951e0de841_000011.default.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/sg_6796f91a-7023-42a5-8ba1-9d951e0de841_000011.default.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/sg_6796f91a-7023-42a5-8ba1-9d951e0de841_000011.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "type",
"options": [
"body besar 9\""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.74934036939314,
"rating_count": [
379,
3,
2,
14,
49,
311
],
"rcount_with_context": 93,
"rcount_with_image": 68
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": true,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 650000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 166898464321,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 650000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 52,
"local_monthly_sold_count_text": "52",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "NINA ELECTRICAL",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 1305412651,
"shopid": 24694523,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m5hlkvh6ybuq2b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000544,1000245,1001024,1001036,30,35,64,71,74,22,844931086908638,844931064601283,1400285055,1213641,298463379,1015914,700190087,1718093079,700005499,1059156,822059908662278,840955085144628,825465608493600,825465608499232,825465608497696,840990690654214,2018619,2023641,298893311,2048660,2048661,1718088044,1718088045,298468389,298458396,298468390,298458398,1718093084],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":49,\"model_id\":166898464321,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m5hlkvh6ybuq2b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000544,1000245,1001024,1001036,30,35,64,71,74,22,844931086908638,844931064601283,1400285055,1213641,298463379,1015914,700190087,1718093079,700005499,1059156,822059908662278,840955085144628,825465608493600,825465608499232,825465608497696,840990690654214,2018619,2023641,298893311,2048660,2048661,1718088044,1718088045,298468389,298458396,298468390,298458398,1718093084],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":49,\"model_id\":166898464321,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_1305412651",
"debug_info": null
},
{
"item_basic": {
"itemid": 41601005370,
"shopid": 1006143313,
"name": "AW Air Cooler Tangki Besar 10L 3 Kecepatan Pendingin Kamar Di Rumah Kipas Angin Pendingin",
"label_ids": [
2018619,
1718087960,
1428713,
844931064601283,
844931086908638,
700005490,
1049120,
822059908662278,
825465608499232,
837860934119952,
1015914,
700190087,
825465608497696,
1718093079,
1400285055,
700830032,
834230400556567,
2023641,
2068629,
298938357,
2098629
],
"image": "id-11134207-82250-mj2s26t4mk8xd5",
"images": [
"id-11134207-82250-mj2s26t4mk8xd5",
"id-11134207-8224s-mi3xrwkeornk1c",
"id-11134207-8224u-mi3xrwkend3447",
"id-11134207-8224y-mi3xrwkeq680e6",
"id-11134207-8224x-mi3xrwkevshsd6",
"id-11134207-8224s-mi3xrwkex728e9",
"id-11134207-82252-mi3xrwkerksgb1",
"id-11134207-82250-mi3xrwkeszcw3f",
"id-11134207-82251-mi3xrwkeudxccc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1747300801,
"sold": 9,
"historical_sold": 173,
"liked": false,
"liked_count": 74,
"view_count": null,
"catid": 100010,
"brand": "Tixx",
"cmt_count": 58,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 48500000000,
"price_min": 48500000000,
"price_max": 48500000000,
"price_min_before_discount": 239800000000,
"price_max_before_discount": 239800000000,
"hidden_price_display": null,
"price_before_discount": 239800000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-80%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6venb-mipmu5ty34lf18.16000081766736374.mp4",
"thumb_url": "id-11110105-6venb-mipmu5ty34lf18_cover",
"duration": 55,
"version": 2,
"vid": "id-11110105-6venb-mipmu5ty34lf18",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6venb-mipmu5ty34lf18.16000081766736374.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mipmu5ty34lf18.16000081766736374.mp4",
"width": 720,
"height": 944
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mipmu5ty34lf18.default.mp4",
"width": 540,
"height": 708
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "color",
"options": [
"10L-Putih",
"10L-Putih+remote",
"40L-Hitam",
"40L-Hitam+remote"
],
"images": [
"id-11134207-8224u-mir3igzqyrya22",
"id-11134207-8224s-mir3igzli4g781",
"id-11134207-7ra0l-mdcxnbkxz61w96",
"id-11134207-7ra0p-mdcxgp1p5s2sc4"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.913793103448276,
"rating_count": [
58,
0,
0,
1,
3,
54
],
"rcount_with_context": 32,
"rcount_with_image": 24
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp160RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 776530070913024,
"price": 48000000000,
"strikethrough_price": 239800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1328585324773376,
"discount_text": "-80%",
"model_id": 265190242897,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1328585324773376,
"voucher_code": "APPL14223",
"voucher_discount": 500000000,
"time_info": {
"start_time": 1767839460,
"end_time": 1774927860,
"valid_duration": null
},
"groups": [],
"min_spend": 500100000
},
"recommended_platform_voucher_info": null,
"original_price": 239800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 173,
"rounded_local_monthly_sold_count": 9,
"local_monthly_sold_count_text": "9",
"rounded_display_sold_count": 173,
"display_sold_count_text": "173"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp160RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Appliance World",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 41601005370,
"shopid": 1006143313,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj2s26t4mk8xd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,700005490,1049120,822059908662278,825465608499232,837860934119952,1015914,700190087,825465608497696,1718093079,1400285055,700830032,834230400556567,2023641,2068629,298938357,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":50,\"model_id\":265190242897,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj2s26t4mk8xd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,700005490,1049120,822059908662278,825465608499232,837860934119952,1015914,700190087,825465608497696,1718093079,1400285055,700830032,834230400556567,2023641,2068629,298938357,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":50,\"model_id\":265190242897,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41601005370",
"debug_info": null
},
{
"item_basic": {
"itemid": 10242608037,
"shopid": 229515338,
"name": "AZKO Apa 10 ltr Air Cooler 1200cmh - Putih Ice Conditioner Pendingin Ruangan Penyejuk Udara Kipas Angin Evaporasi Cooling Fan Dengan Ice Box",
"label_ids": [
1000381,
1002164,
1011705,
700085047,
1400095067,
1400285005,
1001024,
844931046478970,
844931026694327,
844931064601283,
1015914,
700190087,
1400285055,
822059908662278,
1059156,
1049116,
1049112,
1049127,
1059152,
825465608499232,
700585046,
700000513,
1049132,
1718087960,
1428713,
1049124,
1049122,
700005487,
700005510,
700005490,
1049136,
1059154,
700005499,
1718093079,
700000486,
1049117,
1049123,
700005516,
2018618,
1012763,
2013645,
298893311,
1059151,
825465608497696,
1049120,
298933384,
1049155,
700830032,
834403089593352,
700005537,
1049147,
2213652,
1400095022,
1049141,
1049154,
2008656
],
"image": "sg-11134201-822zm-mibxac92cavab1",
"images": [
"sg-11134201-822zm-mibxac92cavab1",
"sg-11134201-8261u-mj4gwwgd6gw2da",
"sg-11134201-8260q-mj4gwydt0flt91",
"sg-11134201-8262v-mj4gwz664hl182",
"sg-11134201-8261r-mj4gx0f8e77l48",
"sg-11134201-7rbn6-m5crsovgyixa57",
"sg-11134201-7ra32-m4kbi7ymiy4h82"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1630378205,
"sold": 137,
"historical_sold": 5000,
"liked": false,
"liked_count": 19222,
"view_count": null,
"catid": 100010,
"brand": "Apa",
"cmt_count": 2271,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 129500000000,
"price_min": 129500000000,
"price_max": 129500000000,
"price_min_before_discount": 269900000000,
"price_max_before_discount": 269900000000,
"hidden_price_display": null,
"price_before_discount": 269900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-52%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16000081740132891.mp4",
"thumb_url": "id-11110105-6knan-m6i5nzddsxgsb2_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6knan-m6i5nzddsxgsb2",
"formats": [
{
"format": 1600408,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004081740785047.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004081740785047.mp4",
"width": 360,
"height": 640
},
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006711740199715.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006711740199715.mp4",
"width": 540,
"height": 960
},
{
"format": 1600673,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006731740395590.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006731740395590.mp4",
"width": 540,
"height": 960
},
{
"format": 1600409,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004091740785046.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004091740785046.mp4",
"width": 540,
"height": 960
},
{
"format": 1600659,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006591740785047.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16006591740785047.mp4",
"width": 540,
"height": 960
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16000081740132891.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16000081740132891.mp4",
"width": 720,
"height": 1280
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16003251740199715.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16003251740199715.mp4",
"width": 720,
"height": 1280
},
{
"format": 1600410,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004101740785046.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004101740785046.mp4",
"width": 720,
"height": 1280
},
{
"format": 1600411,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004111740785047.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16004111740785047.mp4",
"width": 720,
"height": 1280
},
{
"format": 1600558,
"defn": "V1080P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16005581740199715.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16005581740199715.mp4",
"width": 1080,
"height": 1920
},
{
"format": 1600568,
"defn": "V1080P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16005681740785047.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.16005681740785047.mp4",
"width": 1080,
"height": 1920
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m6i5nzddsxgsb2.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.859521776259607,
"rating_count": [
2342,
16,
7,
33,
178,
2108
],
"rcount_with_context": 558,
"rcount_with_image": 477
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 830755568156672,
"price": 129500000000,
"strikethrough_price": 269900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-52%",
"model_id": 47167161970,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 269900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 5000,
"rounded_local_monthly_sold_count": 137,
"local_monthly_sold_count_text": "137",
"rounded_display_sold_count": 5000,
"display_sold_count_text": "5RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "AZKO Indonesia",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 588379113,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyoW+Vl/JloTL+7cGgoCT8l34PD0YEuLgzER5pD03vINxSt+jdQOUgQNGuWskOt48P5idc46HdvqctJ3TCwEmsc19FP6vegnKfeSOa+Y4tlGR2pJonCVk7zpVhB8BaHdZhcARKMm1Tc4VxGQTT8nvDGc/X5pTIwFplCELD/0XhaL5ZVqFGbnZ3wG1L00fqApLKjPD5JjnHlKOx3gEeUJvnpZU/iVv1un2t3Xjl4baNcJGvhZW9YgYPXFDhPn1Q/hZ17vkHgNJ0vz/YD8yU3/Ue92H3CELCYQ0aAWvEaxcv+D55ORY9Z//LbD6ObaI1m8ALo4IedmG23+4JXhk2tKU7R42y13fURJxzsRBIESVqTWvle/PqWzplfunBj6ierJ3UDzomuk4U+q0OeiyZNjGaVDoD3tBTSAvs01FZFwPEeoWsaBwVsrOzq0x2K4X6MvKEFW0EiwfN0vjCHS/VuNCWIw==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EOnnx5gCGPfaq80BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0VGVzBFaXdmTjB2akNIUy9WdU5DV0l3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AH22ISXRukBAAAAoMQd8T/xAQAAAIB3e/Q/yAwP4AwB6QwAAABAzNu5P4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgMCt0d8DsA7thdeEAeIODKqNBseNBtWOBvGQBsgPFOIZ0ApFbm93TGpReU5qazVNREU1Tmprd05UYzROVGMzTEMweExDMHhMQzB4TEMweExEQXVORE14TXpBek1qSTVNVGszTnpZek5Dd3hMREF1T1RVMk5qSTJPRGs0TlRBeE9UQTRMREF1T1N3dE1Td3dMak00T1RVeU16STROVEExTnpBME9USTFMQzB4TERFdU5Ua3dNekE0TXpRMU1USTRORFkyTlN3dE1SMHUvNXhNSU83UmlnOHRkcDdhUGpVQUFJQS9PWGlDbHoyMURRcENRZW1Ka2w0WFBseENTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFjUUFBQU9Eaitncy9lUUFBQU1BOUF3SS9nUUVBQUFBZ1ZnWmRRWWtCQUFBQWdOWXVLVUdSQVFBQUFIZ1lGbUJCbVFFQUFBQWdlcGRqUWFFQkFBQUFvSjMvTUVHcEFRQUFBTlJ0dDJWQjZBRUJnQUtVQTRvQ1BqQXVNREEwTlRjeExERXVNREF3TURBd0xERXVNREEyTURNekxERXVNakEzTmpVM0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RTE1FUVRjZUpyYlA2RUNLZ0NleGhKSnlFSEtBZ3NJQVJHaDIwc2FvM1dVdjhvQ0N3Z0NFZnVwOGRKTlluQy8yUUpBRWtLcVpVbENRZUVDQVA2T3EwMldFMEhwQWlSSmlCdVRZTEJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUU1IR2xDQmVHWU1RcUVETzNtZzlDMTZYa0s1QTZiTzI2RDMzdDgvd1FNRzRDZGl1WmppUDhrRHNNYS9TZU16NWovUkEwcE04Mm5GViswLytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFMNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFPQkJBQUFBTUJqZHdRL2lRUUFBQUJBanNUOVBwQUVtd09ZQklpRDRxRDV6Z09nQktEUy9jQktxQVNnMHYzQVNzQUVvTkw5d0VySkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFRSWk1Y2oraEJRQUFBQUFBQVBBL3FRVUFBQURndFJqd1A3RUZBQUFBb0pCUzh6KzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUFBQUErRDg96hkEt03CTfoZjAYKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDb3JnCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAACg0KB2lzX3Zza3USAigACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQ5LCJhcGkyX2xhdGVuY3lfbXMiOjk0LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNSwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6NjEsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTQwLCJhcGkyX2Fkc19jb3VudCI6MzE0LCJhcGkzX2Fkc19jb3VudCI6NH0KJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzEwMjQyNjA4MDM3ChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH4CAgICAgICoiAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUqAJ7GEknIQfIlBlNFQVJDSMg+AQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000,
91,
4
]
},
"itemid": 10242608037,
"shopid": 229515338,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822zm-mibxac92cavab1\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000381,1002164,1011705,700085047,1400095067,1400285005,1001024,844931046478970,844931026694327,844931064601283,1015914,700190087,1400285055,822059908662278,1059156,1049116,1049112,1049127,1059152,825465608499232,700585046,700000513,1049132,1718087960,1428713,1049124,1049122,700005487,700005510,700005490,1049136,1059154,700005499,1718093079,700000486,1049117,1049123,700005516,2018618,1012763,2013645,298893311,1059151,825465608497696,1049120,298933384,1049155,700830032,834403089593352,700005537,1049147,2213652,1400095022,1049141,1049154,2008656],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":51,\"model_id\":47167161970,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822zm-mibxac92cavab1\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000381,1002164,1011705,700085047,1400095067,1400285005,1001024,844931046478970,844931026694327,844931064601283,1015914,700190087,1400285055,822059908662278,1059156,1049116,1049112,1049127,1059152,825465608499232,700585046,700000513,1049132,1718087960,1428713,1049124,1049122,700005487,700005510,700005490,1049136,1059154,700005499,1718093079,700000486,1049117,1049123,700005516,2018618,1012763,2013645,298893311,1059151,825465608497696,1049120,298933384,1049155,700830032,834403089593352,700005537,1049147,2213652,1400095022,1049141,1049154,2008656],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":51,\"model_id\":47167161970,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EOnnx5gCGPfaq80BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0VGVzBFaXdmTjB2akNIUy9WdU5DV0l3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AH22ISXRukBAAAAoMQd8T/xAQAAAIB3e/Q/yAwP4AwB6QwAAABAzNu5P4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgMCt0d8DsA7thdeEAeIODKqNBseNBtWOBvGQBsgPFOIZ0ApFbm93TGpReU5qazVNREU1Tmprd05UYzROVGMzTEMweExDMHhMQzB4TEMweExEQXVORE14TXpBek1qSTVNVGszTnpZek5Dd3hMREF1T1RVMk5qSTJPRGs0TlRBeE9UQTRMREF1T1N3dE1Td3dMak00T1RVeU16STROVEExTnpBME9USTFMQzB4TERFdU5Ua3dNekE0TXpRMU1USTRORFkyTlN3dE1SMHUvNXhNSU83UmlnOHRkcDdhUGpVQUFJQS9PWGlDbHoyMURRcENRZW1Ka2w0WFBseENTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFjUUFBQU9Eaitncy9lUUFBQU1BOUF3SS9nUUVBQUFBZ1ZnWmRRWWtCQUFBQWdOWXVLVUdSQVFBQUFIZ1lGbUJCbVFFQUFBQWdlcGRqUWFFQkFBQUFvSjMvTUVHcEFRQUFBTlJ0dDJWQjZBRUJnQUtVQTRvQ1BqQXVNREEwTlRjeExERXVNREF3TURBd0xERXVNREEyTURNekxERXVNakEzTmpVM0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RTE1FUVRjZUpyYlA2RUNLZ0NleGhKSnlFSEtBZ3NJQVJHaDIwc2FvM1dVdjhvQ0N3Z0NFZnVwOGRKTlluQy8yUUpBRWtLcVpVbENRZUVDQVA2T3EwMldFMEhwQWlSSmlCdVRZTEJCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUU1IR2xDQmVHWU1RcUVETzNtZzlDMTZYa0s1QTZiTzI2RDMzdDgvd1FNRzRDZGl1WmppUDhrRHNNYS9TZU16NWovUkEwcE04Mm5GViswLytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFMNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFPQkJBQUFBTUJqZHdRL2lRUUFBQUJBanNUOVBwQUVtd09ZQklpRDRxRDV6Z09nQktEUy9jQktxQVNnMHYzQVNzQUVvTkw5d0VySkJIc1Vya2ZoZXBRLzRRUjdGSzVINFhxVVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFRSWk1Y2oraEJRQUFBQUFBQVBBL3FRVUFBQURndFJqd1A3RUZBQUFBb0pCUzh6KzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUFBQUErRDg96hkEt03CTfoZjAYKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChYKDWJpel9xdWV1ZV9pZHMSBSIDb3JnCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAACg0KB2lzX3Zza3USAigACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjYxLCJhcGkxX2xhdGVuY3lfbXMiOjQ5LCJhcGkyX2xhdGVuY3lfbXMiOjk0LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNSwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6NjEsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTQwLCJhcGkyX2Fkc19jb3VudCI6MzE0LCJhcGkzX2Fkc19jb3VudCI6NH0KJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzEwMjQyNjA4MDM3ChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKACwH4CAgICAgICoiAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUqAJ7GEknIQfIlBlNFQVJDSMg+AQ==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_10242608037",
"debug_info": null
},
{
"item_basic": {
"itemid": 24561771344,
"shopid": 1174457,
"name": "KIPAS ANGIN BLOWER AC 1PK-2PK/ HEMAT LISTIK /BISA JADI HEKSOS & KIPAS ANGIN/FREE COLOKAN",
"label_ids": [
1000167,
1049112,
700000515,
822059908662278,
825465608499232,
825465608497696,
1213641,
1015914,
700190087,
1400285055,
298458395,
1718093079,
1718087960,
1428713,
844931086908638,
1000031,
2018619,
2023641,
298893311,
298463379,
700830032,
2048660,
2048661,
700765096,
298933384,
2068629,
298938357,
299103323,
1718088045,
298468390,
298458398,
298458396,
1718093084,
2098628,
298468389,
2098629,
1718088044,
298938368
],
"image": "id-11134207-7r98v-lxw9xyi09z7uef",
"images": [
"id-11134207-7r98v-lxw9xyi09z7uef",
"id-11134207-7r98w-lsrsetf2ceh208",
"id-11134207-7r98t-lr8xpxuv46d0e6",
"id-11134207-7r98y-lr64bqsddd7ra1",
"id-11134207-7r991-lr0ggcbp233bdd",
"id-11134207-7r98u-lr64bqsdbynb68",
"id-11134207-7r991-lr64bqsders7f3",
"id-11134207-7r992-ltubxwqqvy0y1f",
"id-11134207-7rasa-m1nhsnknbnp220"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1706716088,
"sold": 992,
"historical_sold": 9000,
"liked": false,
"liked_count": 2005,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 3184,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 13500000000,
"price_min": 13500000000,
"price_max": 13500000000,
"price_min_before_discount": 14500000000,
"price_max_before_discount": 14500000000,
"hidden_price_display": null,
"price_before_discount": 14500000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-7%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ke1h-lxdpcqmxyh31b5.16000081720250143.mp4",
"thumb_url": "id-11110107-7r98s-lxdpcukq7bxu6a",
"duration": 12,
"version": 2,
"vid": "id-11110107-6ke1h-lxdpcqmxyh31b5",
"formats": [
{
"format": 1600409,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke1h-lxdpcqmxyh31b5.16004091721396014.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1h-lxdpcqmxyh31b5.16004091721396014.mp4",
"width": 288,
"height": 352
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1h-lxdpcqmxyh31b5.default.mp4",
"width": 288,
"height": 352
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "KIPAS ANGIN",
"options": [
"1PK 2 DAUN",
"1PK 3DAUN",
"2ยฝ 5DAUN",
"2PK 3 DAUN"
],
"images": [
"id-11134207-7r991-lr64bqsdg6cnb6",
"id-11134207-7r98p-lr64bqsdhkx31a",
"id-11134207-7r991-lr64bqsdizhjfb",
"id-11134207-7rasd-m1nhsnkna94md5"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.765104808877928,
"rating_count": [
3245,
45,
39,
87,
291,
2783
],
"rcount_with_context": 714,
"rcount_with_image": 484
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Karawang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp45RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 754899248267264,
"price": 13500000000,
"strikethrough_price": 14500000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-7%",
"model_id": 187567208808,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 14500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 9000,
"rounded_local_monthly_sold_count": 992,
"local_monthly_sold_count_text": "992",
"rounded_display_sold_count": 9000,
"display_sold_count_text": "9RB+"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp45RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "KARYA NUSANTARA.",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 24561771344,
"shopid": 1174457,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lxw9xyi09z7uef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1049112,700000515,822059908662278,825465608499232,825465608497696,1213641,1015914,700190087,1400285055,298458395,1718093079,1718087960,1428713,844931086908638,1000031,2018619,2023641,298893311,298463379,700830032,2048660,2048661,700765096,298933384,2068629,298938357,299103323,1718088045,298468390,298458398,298458396,1718093084,2098628,298468389,2098629,1718088044,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":52,\"model_id\":187567208808,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lxw9xyi09z7uef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1049112,700000515,822059908662278,825465608499232,825465608497696,1213641,1015914,700190087,1400285055,298458395,1718093079,1718087960,1428713,844931086908638,1000031,2018619,2023641,298893311,298463379,700830032,2048660,2048661,700765096,298933384,2068629,298938357,299103323,1718088045,298468390,298458398,298458396,1718093084,2098628,298468389,2098629,1718088044,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":52,\"model_id\":187567208808,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24561771344",
"debug_info": null
},
{
"item_basic": {
"itemid": 42123011253,
"shopid": 1453736730,
"name": "[Unit Only] Xiaomi Mijia AC Air Conditioner 1 PK Inverter Pro Eco 5-Star | Low Watt | Smart Control | Quick Cooling [Official Store]",
"label_ids": [
2018618,
844931064601283,
1049120,
700005490,
822059908662278,
825465608497696,
1718087960,
1428713,
1015914,
700190087,
1400285055,
844931086908638,
2213652,
700810080
],
"image": "id-11134207-82251-mi9w8rz64f7o03",
"images": [
"id-11134207-82251-mi9w8rz64f7o03",
"id-11134207-8224v-mhu9q36bri815a",
"id-11134207-8224s-mhu9q36c1c7519",
"id-11134207-8224s-mhu9q36bzxmp5b",
"id-11134207-8224y-mhu9q36bx4htb0",
"id-11134207-8224p-mhu9q36bvpxd3c",
"id-11134207-8224t-mhu9q36byj29e4",
"id-11134207-8224x-mhu9q36bswshdb",
"id-11134207-82250-mhu9q36bubcxdc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1759742113,
"sold": 170,
"historical_sold": 410,
"liked": false,
"liked_count": 468,
"view_count": null,
"catid": 100010,
"brand": "Xiaomi",
"cmt_count": 120,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 407900000000,
"price_min": 407900000000,
"price_max": 407900000000,
"price_min_before_discount": 559900000000,
"price_max_before_discount": 559900000000,
"hidden_price_display": null,
"price_before_discount": 559900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-27%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven2-mg3b7fadys5q82.16000081761026587.mp4",
"thumb_url": "id-11110105-6ven2-mg3b7fadys5q82_cover",
"duration": 45,
"version": 2,
"vid": "id-11110105-6ven2-mg3b7fadys5q82",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven2-mg3b7fadys5q82.16000081761026587.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mg3b7fadys5q82.16000081761026587.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mg3b7fadys5q82.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Color",
"options": [
"Default"
],
"images": [
"id-11134207-8224p-mhu9q36c2qrlf6"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.983333333333333,
"rating_count": [
120,
0,
0,
0,
2,
118
],
"rcount_with_context": 31,
"rcount_with_image": 26
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-82251-mi9w8rz64f7o03",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 821047985750016,
"price": 407900000000,
"strikethrough_price": 559900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-27%",
"model_id": 238171217524,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 559900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 0,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 410,
"rounded_local_monthly_sold_count": 170,
"local_monthly_sold_count_text": "170",
"rounded_display_sold_count": 410,
"display_sold_count_text": "410"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Xiaomi Home Appliances Official Store",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 629085949,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyoW+Vl/JloTL+7cGgoCT8l34PD0YEuLgzER5pD03vINxSt+jdQOUgQNGuWskOt48P5idc46HdvqctJ3TCwEmsc19FP6vegnKfeSOa+Y4tlGR2pJonCVk7zpVhB8BaHdZhcARKMm1Tc4VxGQTT8nvDGc/X5pTIwFplCELD/0XhaL5ZVqFGbnZ3wG1L00fqApLKjPD5JjnHlKOx3gEeUJvnpZU/iVv1un2t3Xjl4baNcJGvhZW9YgYPXFDhPn1Q/hZ17vkHgNJ0vz/YD8yU3/Ue92H3CELCYQ0aAWvEaxcv+D55ORY9Z//LbD6ObaI1m8ALo4IedmG23+4JXhk2tKU7R42y13fURJxzsRBIESVqTWvle/PqWzplfunBj6ierJ3UDzomuk4U+q0OeiyZNjGaVDoD3tBTSAvs01FZFwPEeoWsaBwVsrOzq0x2K4X6MvKEytmCw+8ryR1CO8vXP5seyw==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EP2t/KsCGNuz/M0BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0V5dG1Ddys4cnlSMUNPOHZYUDVzZXl3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AHgyoXrzwPpAQAAAOCVJfE/8QEAAADg2W/xP8gMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ17FK5H4XqUP6ENAAAAAAAA8D/4DYCAtMC3C7AOiOzgxwHiDgyqjQbHjQbVjgbwkAbIDxbiGbwKRW0wd0xqa3lNalk0TEMweExDMHhMQzB4TEMweExEQXVPVE14T1RrNU9UazVPVGs1T1RrNU9Dd3hMRFl1TXpVM05qWTFORGN4T0RjNU1qYzFMREF1T1N3dE1Td3dMalEyTnpReU9UVXlNREk0TXpneE16azJMQzB4TERVdU1qSXdPRFkzTVRJMk1EQTNOREExTEMweEhTL2FnRTBnNm9lQWF5M0NOR3cvTlFBQWdEODV5dUpVQTMzYStVRkJTem93ckFneGFVSktFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBd1BBaUR6OTVBQUFBb0xmQUVqK0JBUUFBQUNBWnBIaEJpUUVBQUFDZ3NvTmlRWkVCQUFBQU9QbnlnRUdaQVFBQUFHRDNvWUJCb1FFQUFBQ2dsLzVvUWFrQkFBQUFTSjNoaGtHQUFwUURpZ0krTUM0d01EVTNNak1zTVM0d01EQXdNREFzTVM0d01EUTNOVEFzTVM0eU1UVTNOelFzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQW12bis2bngwdTAvb1FJMXhwV1EzRHYwUWNvQ0N3Z0JFYm9pNGNlb2Q0Qy95Z0lMQ0FJUis2bngwazFpY0wvWkFtQURtajQ0S1ZkQjRRSkFEYlBSUXBKR1Fla0NqQ1JMMnBXMjFFR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkE4cmlWQU45MnZsQm9RTkxPakNzQ0RGcFFya0RubjBOT1VRYTNUL0JBK3FoOWxXMEV1RS95UU1HNjFMVDVwdmtQOUVEZEZSUHQ5Mmc2ei82QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQVA2QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBNEVFQUFBQUlCQ0VCaitKQkFBQUFJQTlwd0Eva0FTYkE1Z0VtTXJQeXJ1M0NLQUVnUGlDclJhb0JJRDRncTBXd0FTQStJS3RGc2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFBZ08zRjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFFQjFFL0Evc1FVQUFBQ2d6M1B6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS3TcBN+hmMBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKGQoQcmVjYWxsX3F1ZXVlX2lkcxIFIgNvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAQpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChIKDHZvdWNoZXJfbGVucxICEAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfNDIxMjMwMTEyNTMKDQoHaXNfdnNrdRICKAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfgICAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJTXGlZDcO/RB8iUGU0VBUkNIyD4B",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 42123011253,
"shopid": 1453736730,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi9w8rz64f7o03\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018618,844931064601283,1049120,700005490,822059908662278,825465608497696,1718087960,1428713,1015914,700190087,1400285055,844931086908638,2213652,700810080],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":53,\"model_id\":238171217524,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi9w8rz64f7o03\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018618,844931064601283,1049120,700005490,822059908662278,825465608497696,1718087960,1428713,1015914,700190087,1400285055,844931086908638,2213652,700810080],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":53,\"model_id\":238171217524,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EP2t/KsCGNuz/M0BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0V5dG1Ddys4cnlSMUNPOHZYUDVzZXl3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsGuAEB4AHgyoXrzwPpAQAAAOCVJfE/8QEAAADg2W/xP8gMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ17FK5H4XqUP6ENAAAAAAAA8D/4DYCAtMC3C7AOiOzgxwHiDgyqjQbHjQbVjgbwkAbIDxbiGbwKRW0wd0xqa3lNalk0TEMweExDMHhMQzB4TEMweExEQXVPVE14T1RrNU9UazVPVGs1T1RrNU9Dd3hMRFl1TXpVM05qWTFORGN4T0RjNU1qYzFMREF1T1N3dE1Td3dMalEyTnpReU9UVXlNREk0TXpneE16azJMQzB4TERVdU1qSXdPRFkzTVRJMk1EQTNOREExTEMweEhTL2FnRTBnNm9lQWF5M0NOR3cvTlFBQWdEODV5dUpVQTMzYStVRkJTem93ckFneGFVSktFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQktEZ2lxODVZREVRQUFBQUFBQUFBQVNnNElyUE9XQXhFQUFBQUFBQUFBQUVvT0NKejY0UVFSQUFBQUFBQUFBQUJLRGdpcjg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJcXZPV0F4RUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBV2drSWdJQ0FnSUFFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBd1BBaUR6OTVBQUFBb0xmQUVqK0JBUUFBQUNBWnBIaEJpUUVBQUFDZ3NvTmlRWkVCQUFBQU9QbnlnRUdaQVFBQUFHRDNvWUJCb1FFQUFBQ2dsLzVvUWFrQkFBQUFTSjNoaGtHQUFwUURpZ0krTUM0d01EVTNNak1zTVM0d01EQXdNREFzTVM0d01EUTNOVEFzTVM0eU1UVTNOelFzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQW12bis2bngwdTAvb1FJMXhwV1EzRHYwUWNvQ0N3Z0JFYm9pNGNlb2Q0Qy95Z0lMQ0FJUis2bngwazFpY0wvWkFtQURtajQ0S1ZkQjRRSkFEYlBSUXBKR1Fla0NqQ1JMMnBXMjFFR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkE4cmlWQU45MnZsQm9RTkxPakNzQ0RGcFFya0RubjBOT1VRYTNUL0JBK3FoOWxXMEV1RS95UU1HNjFMVDVwdmtQOUVEZEZSUHQ5Mmc2ei82QXcwS0NVOXlaR1Z5VkdsbGNoQUQrZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQVA2QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBNEVFQUFBQUlCQ0VCaitKQkFBQUFJQTlwd0Eva0FTYkE1Z0VtTXJQeXJ1M0NLQUVnUGlDclJhb0JJRDRncTBXd0FTQStJS3RGc2tFZXhTdVIrRjZsRC9oQkhzVXJrZmhlcFEvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFBZ08zRjNQNkVGQUFBQUFBQUE4RCtwQlFBQUFFQjFFL0Evc1FVQUFBQ2d6M1B6UDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQS3TcBN+hmMBgoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKGQoQcmVjYWxsX3F1ZXVlX2lkcxIFIgNvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAQpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoUCg51c2VyX2JsYWNrbGlzdBICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChIKDHZvdWNoZXJfbGVucxICEAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfNDIxMjMwMTEyNTMKDQoHaXNfdnNrdRICKAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAALAfgICAgICAgKiAAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJTXGlZDcO/RB8iUGU0VBUkNIyD4B",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42123011253",
"debug_info": null
},
{
"item_basic": {
"itemid": 28642825421,
"shopid": 1521655113,
"name": "oli cina husus kipas angin COD",
"label_ids": [
844931086908638,
844931064601283,
1718093079,
1015914,
700190087,
2108629,
1718087960,
1428713,
1400285055,
2023641,
2018619,
1059152,
1049124,
822059908662278,
825465608493600,
825465608499232,
825465608497696,
298888358,
298938357,
298933384,
299103323,
2098629
],
"image": "id-11134207-8224q-mj2fj1ndzi87fa",
"images": [
"id-11134207-8224q-mj2fj1ndzi87fa",
"id-11134207-82251-mj2fj1ne0wsn26"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1760258236,
"sold": 1000,
"historical_sold": 3000,
"liked": false,
"liked_count": 231,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 1159,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 1000000000,
"price_min": 1000000000,
"price_max": 1000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vdva-mhqyzuwzcg777e.16000091764638108.mp4",
"thumb_url": "id-11110107-6vdva-mhqyzuwzcg777e_cover",
"duration": 43,
"version": 2,
"vid": "id-11110107-6vdva-mhqyzuwzcg777e",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vdva-mhqyzuwzcg777e.16000091764638108.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdva-mhqyzuwzcg777e.16000091764638108.mp4",
"width": 270,
"height": 330
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdva-mhqyzuwzcg777e.default.mp4",
"width": 288,
"height": 352
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.864538395168249,
"rating_count": [
1159,
4,
1,
25,
88,
1041
],
"rcount_with_context": 234,
"rcount_with_image": 182
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": true,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390389012989,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1000000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3000,
"rounded_local_monthly_sold_count": 1000,
"local_monthly_sold_count_text": "1RB+",
"rounded_display_sold_count": 3000,
"display_sold_count_text": "3RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "sejuk service",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 28642825421,
"shopid": 1521655113,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mj2fj1ndzi87fa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1015914,700190087,2108629,1718087960,1428713,1400285055,2023641,2018619,1059152,1049124,822059908662278,825465608493600,825465608499232,825465608497696,298888358,298938357,298933384,299103323,2098629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":54,\"model_id\":390389012989,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mj2fj1ndzi87fa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1015914,700190087,2108629,1718087960,1428713,1400285055,2023641,2018619,1059152,1049124,822059908662278,825465608493600,825465608499232,825465608497696,298888358,298938357,298933384,299103323,2098629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":54,\"model_id\":390389012989,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28642825421",
"debug_info": null
},
{
"item_basic": {
"itemid": 24802862390,
"shopid": 1134378503,
"name": "Miss Life Air Purifier HEPA Filter Penyaring Udara Ruangan CADR Tinggi UV Anion Pembersih Udara Aman Bayi Pet Anti Debu Asap Bau Filter Udara Penjernih Udara Ruangan Kamar Tidur Office Rumah Jangkauan Luas Jakarta Surabaya Bandung ONE HOME Air Purifier",
"label_ids": [
822059908662278,
825465608497696,
825465608499232,
1400285055,
1015914,
700190087,
1000031,
1718087960,
1428713,
1049112,
700005493,
1119699,
1718093079,
1988623,
2018619,
2023641,
1918643,
298463379,
298893311,
1400095022,
700830032,
844931086908638,
2068629,
298938357,
298933384,
700810080,
298623321,
1993623,
998091078,
298938368,
1718088045,
2098629,
2098628,
298468389
],
"image": "id-11134207-8224p-mhh411nm1m2q9d",
"images": [
"id-11134207-8224p-mhh411nm1m2q9d",
"id-11134207-7rbkd-m65amzu5i7bxb7",
"id-11134207-7rask-m4yw56b8y6pu5b",
"id-11134207-7rbk0-m66a04djajtf2a",
"id-11134207-7rbkd-m65amzu5l0gt58",
"id-11134207-7rbkc-m65amzu5jlwd18",
"id-11134207-7rbk0-m66a04djbydvad",
"id-11134207-7rbkd-m65amzu5fe7127"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1701935715,
"sold": 1000,
"historical_sold": 10000,
"liked": false,
"liked_count": 26991,
"view_count": null,
"catid": 100010,
"brand": "MISS LIFE",
"cmt_count": 6325,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 29900000000,
"price_min": 29900000000,
"price_max": 29900000000,
"price_min_before_discount": 43800000000,
"price_max_before_discount": 43800000000,
"hidden_price_display": null,
"price_before_discount": 43800000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-32%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1k-m1h1fpn26m6101.16000081729169035.mp4",
"thumb_url": "id-11110105-7rasc-m1h1g16paprpaf",
"duration": 46,
"version": 2,
"vid": "id-11110105-6ke1k-m1h1fpn26m6101",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1k-m1h1fpn26m6101.16003251730274542.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-m1h1fpn26m6101.16003251730274542.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-m1h1fpn26m6101.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Air Purifier",
"options": [
"K1 UV Max 1 FiIter",
"K1 UV Max 2 FiIter",
"K2 Basic 1 Filter",
"K2 Basic 2 FiIter",
"K5 UV Pro 1 FiIter",
"K5 UV Pro 2 FiIter",
"K15 Ultra 1 Filter",
"K15 Ultra 2 Filter",
"Aroma Pure 1 Filter",
"Aroma Pure 2 Filter",
"K1 + Dry Air Pro",
"K2 + Dry Air Pro",
"K5 + Dry Air Pro",
"K15 + Dry Air Pro",
"Aroma + Dry Air Pro",
"Purru Air One"
],
"images": [
"id-11134207-7rbk6-m900av477x1783",
"id-11134207-7rbkd-matain3gwfmm39",
"id-11134207-7rbkd-m900av47aq6397",
"id-11134207-7rbk1-m900av47c4qja3",
"id-11134207-7rbk6-m9018da9xw5t76",
"id-11134207-7rbk4-m9018da9zaq90a",
"id-11134207-7rbk2-ma2euplgk9ea1b",
"id-11134207-7ra0p-mc1k6i4555jl42",
"id-11134207-7rbk8-ma2axwxfwlwt64",
"id-11134207-7rbkc-ma2axwxfy0h942",
"id-11134207-8224s-mg7mhdkim77tbe",
"id-11134207-82250-mg7mhdkinls993",
"id-11134207-8224z-mg7mhdkip0cp94",
"id-11134207-82251-mg7mhdkiqex538",
"id-11134207-8224p-mg7mhdkirthl78",
"id-11134207-7ra0o-mcriv1ybu71366"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8828380270732845,
"rating_count": [
6427,
28,
23,
62,
448,
5866
],
"rcount_with_context": 1547,
"rcount_with_image": 1430
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134601-7ra0o-mcacq59pj98b89",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 410025881515412,
"add_on_deal_label": "Kombo Hemat",
"sub_type": 0,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Cirebon",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp99RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228025048514562,
"price": 29800000000,
"strikethrough_price": 43800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1320018567774208,
"discount_text": "-32%",
"model_id": 176253130050,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1320018567774208,
"voucher_code": "MISSDRQRF",
"voucher_discount": 100000000,
"time_info": {
"start_time": 1766818200,
"end_time": 1774857000,
"valid_duration": null
},
"groups": [],
"min_spend": 19999900000
},
"recommended_platform_voucher_info": null,
"original_price": 43800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10000,
"rounded_local_monthly_sold_count": 1000,
"local_monthly_sold_count_text": "1RB+",
"rounded_display_sold_count": 10000,
"display_sold_count_text": "10RB+"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp99RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Miss Life Indonesia ",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91
]
},
"itemid": 24802862390,
"shopid": 1134378503,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhh411nm1m2q9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[822059908662278,825465608497696,825465608499232,1400285055,1015914,700190087,1000031,1718087960,1428713,1049112,700005493,1119699,1718093079,1988623,2018619,2023641,1918643,298463379,298893311,1400095022,700830032,844931086908638,2068629,298938357,298933384,700810080,298623321,1993623,998091078,298938368,1718088045,2098629,2098628,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":55,\"model_id\":176253130050,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhh411nm1m2q9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[822059908662278,825465608497696,825465608499232,1400285055,1015914,700190087,1000031,1718087960,1428713,1049112,700005493,1119699,1718093079,1988623,2018619,2023641,1918643,298463379,298893311,1400095022,700830032,844931086908638,2068629,298938357,298933384,700810080,298623321,1993623,998091078,298938368,1718088045,2098629,2098628,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":55,\"model_id\":176253130050,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24802862390",
"debug_info": null
},
{
"item_basic": {
"itemid": 42977624587,
"shopid": 1126544232,
"name": "PRIBINRUIS Mini Ac Kipas Kabut Portable Mendinginkan Melembabkan 880ML",
"label_ids": [
1012729,
2018618,
2153644,
1428713,
1718087960,
844931064601283,
844931086908638,
298463379,
700005490,
1049120,
1718093079,
822059908662278,
2048661,
825465608494624,
825465608499232,
825465608497696,
2048660,
1718596,
700765096,
2213652,
1015914,
700190087,
298488495,
1400285055,
2213765,
298468389,
1718088045
],
"image": "id-11134207-82252-mj23ffbhx5oi3d",
"images": [
"id-11134207-82252-mj23ffbhx5oi3d",
"id-11134207-8224r-mitu2x77rgnc18",
"id-11134207-8224v-mitu2x6r29ky95",
"id-11134207-8224q-mitj3cc39rsxaa",
"id-11134207-82252-mitj3cc3b6dd68",
"id-11134207-8224t-mitj3cc3ckxt47",
"id-11134207-82250-mitu2x71r56p26",
"id-11134207-8224u-mitj3cc3dzi985",
"id-11134207-82251-mitj3cc3fe2pbf"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766991526,
"sold": 4,
"historical_sold": 5,
"liked": false,
"liked_count": 57,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 5,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 14599900000,
"price_min": 14599900000,
"price_max": 14599900000,
"price_min_before_discount": 49999900000,
"price_max_before_discount": 49999900000,
"hidden_price_display": null,
"price_before_discount": 49999900000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-71%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvl-mitu8o92yfbcc5.16000031766990956.mp4",
"thumb_url": "id-11110105-6vdvl-mitu8o92yfbcc5_cover",
"duration": 54,
"version": 2,
"vid": "id-11110105-6vdvl-mitu8o92yfbcc5",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvl-mitu8o92yfbcc5.16000031766990956.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mitu8o92yfbcc5.16000031766990956.mp4",
"width": 480,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvl-mitu8o92yfbcc5.default.mp4",
"width": 480,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "warna",
"options": [
"Putih",
"hijau",
"warna oranye"
],
"images": [
"id-11134207-8224t-mitu2x7aez9g13",
"id-11134207-8224v-mitu2x7agdtwa7",
"id-11134207-8224t-mitu2x7ahsecd4"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 5,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227944694038528,
"price": 14299900000,
"strikethrough_price": 49999900000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1317867711250440,
"discount_text": "-71%",
"model_id": 430368771946,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1317867711250440,
"voucher_code": "PRIBAZ09",
"voucher_discount": 300000000,
"time_info": {
"start_time": 1766561760,
"end_time": 1772267760,
"valid_duration": null
},
"groups": [],
"min_spend": 10000000000
},
"recommended_platform_voucher_info": null,
"original_price": 49999900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 5,
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_display_sold_count": 5,
"display_sold_count_text": "5"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Pribinruis Official Store",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 42977624587,
"shopid": 1126544232,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj23ffbhx5oi3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,2153644,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,2048661,825465608494624,825465608499232,825465608497696,2048660,1718596,700765096,2213652,1015914,700190087,298488495,1400285055,2213765,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":56,\"model_id\":430368771946,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj23ffbhx5oi3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,2153644,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,2048661,825465608494624,825465608499232,825465608497696,2048660,1718596,700765096,2213652,1015914,700190087,298488495,1400285055,2213765,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":56,\"model_id\":430368771946,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42977624587",
"debug_info": null
},
{
"item_basic": {
"itemid": 41206517641,
"shopid": 1555741217,
"name": "Relay Switch AC 220 DC 12V 1CH Remote Control Saklar ON /OFF Remote Control Relay Switch Saklar On Off AC 220 DC 12V 1CH /Sakelar Kontrol Jarak Jauh Nirkabel",
"label_ids": [
844931064601283,
844931086908638,
1119699,
1718093079,
1718087960,
1428713,
1400285055,
2023641,
2018619,
1015914,
700190087,
1059152,
700005487,
822059908662278,
825465608497696,
825465608499232,
1718093065,
700830032,
298933384,
2218763
],
"image": "sg-11134201-7ra1x-mbjfs9ny4o4a0c",
"images": [
"sg-11134201-7ra1x-mbjfs9ny4o4a0c",
"sg-11134201-7ra39-mbjfs9wjs4lyab",
"sg-11134201-7ra3q-mbjfsa2djjvp77",
"sg-11134201-7ra32-mbjfsa918gdx90",
"sg-11134201-7ra2x-mbjfsaeuzvl324",
"sg-11134201-7ra0j-mbjfsalsr6k523",
"sg-11134201-7ra24-mbjfsarmh8y512",
"sg-11134201-7ra0s-mbjfsayk9v86a3",
"sg-11134201-7ra3w-mbjfsb61yxzhf3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1751106621,
"sold": 114,
"historical_sold": 419,
"liked": false,
"liked_count": 83,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 143,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 4680000000,
"price_min": 4680000000,
"price_max": 4680000000,
"price_min_before_discount": 11000000000,
"price_max_before_discount": 11000000000,
"hidden_price_display": null,
"price_before_discount": 11000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-57%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kouc-mdo0vg8g8kkv02.16000031755742700.mp4",
"thumb_url": "id-11110105-6kouc-mdo0vg8g8kkv02_cover",
"duration": 27,
"version": 2,
"vid": "id-11110105-6kouc-mdo0vg8g8kkv02",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kouc-mdo0vg8g8kkv02.16000031755742700.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kouc-mdo0vg8g8kkv02.16000031755742700.mp4",
"width": 480,
"height": 854
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kouc-mdo0vg8g8kkv02.default.mp4",
"width": 480,
"height": 854
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "type",
"options": [
"1 AC 220V + 1 Remote",
"1 DC + 2 Remote"
],
"images": [
"id-11134207-7ra0t-md6xbau3am5x94",
"sg-11134201-825ad-mft3lbq88ydof2"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.811188811188811,
"rating_count": [
143,
1,
1,
6,
8,
127
],
"rcount_with_context": 25,
"rcount_with_image": 20
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 799985122213888,
"price": 4680000000,
"strikethrough_price": 11000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-57%",
"model_id": 281009829558,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 11000000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 419,
"rounded_local_monthly_sold_count": 114,
"local_monthly_sold_count_text": "114",
"rounded_display_sold_count": 419,
"display_sold_count_text": "419"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "CarCareX.ID",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 41206517641,
"shopid": 1555741217,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra1x-mbjfs9ny4o4a0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1119699,1718093079,1718087960,1428713,1400285055,2023641,2018619,1015914,700190087,1059152,700005487,822059908662278,825465608497696,825465608499232,1718093065,700830032,298933384,2218763],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":57,\"model_id\":281009829558,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra1x-mbjfs9ny4o4a0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1119699,1718093079,1718087960,1428713,1400285055,2023641,2018619,1015914,700190087,1059152,700005487,822059908662278,825465608497696,825465608499232,1718093065,700830032,298933384,2218763],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":57,\"model_id\":281009829558,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41206517641",
"debug_info": null
},
{
"item_basic": {
"itemid": 24935288267,
"shopid": 1249634646,
"name": "GOGEOUS Kipas Angin Gantung Plafon 42/52Inci Daun Besi 6 Kecepatan Kipas Angin Baling Baling Gantung",
"label_ids": [
1428713,
1718087960,
844931086908638,
844931064601283,
1718093079,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
1000031,
1015914,
700190087,
1400285055,
2018619,
298893311,
298463379,
700830032,
700700063,
298933384,
298468389,
1718088045
],
"image": "id-11134207-7rask-m4l8z00sx7i25c",
"images": [
"id-11134207-7rask-m4l8z00sx7i25c",
"id-11134207-7ras8-m3mzp4xr1zv8aa",
"id-11134207-7rasa-m3mzp4xrhfxqdb",
"id-11134207-7rasd-m3mzp4xrhfkf26",
"id-11134207-7rasi-m3mzp4xr1zbj13",
"id-11134207-7rasj-m3mzp4xrhg446a",
"id-11134207-7rasl-m3mzp4xr1zou1f",
"id-11134207-7rasg-m3mzp4xrhg7s6d",
"id-11134207-7rasm-m3mzp4xr1zywee"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1724737323,
"sold": 11,
"historical_sold": 1000,
"liked": false,
"liked_count": 370,
"view_count": null,
"catid": 100010,
"brand": "GOGEOUS",
"cmt_count": 155,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 76630000000,
"price_min": 76630000000,
"price_max": 76630000000,
"price_min_before_discount": 265000000000,
"price_max_before_discount": 265000000000,
"hidden_price_display": null,
"price_before_discount": 265000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-71%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16000081733895575.mp4",
"thumb_url": "id-11110105-6ke1n-m3n4bpdjzppf17_cover",
"duration": 58,
"version": 2,
"vid": "id-11110105-6ke1n-m3n4bpdjzppf17",
"formats": [
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16006711734099064.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16006711734099064.mp4",
"width": 960,
"height": 540
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16000081733895575.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16000081733895575.mp4",
"width": 1280,
"height": 720
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16003251734099064.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.16003251734099064.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m3n4bpdjzppf17.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "ukuran",
"options": [
"Hitam52\" ใDaun Kayuใ",
"Putih52\" ใDaun Kayuใ",
"Hitam 46Inci",
"Putih 46Inci",
"Hitam46InciใModel Bใ",
"Putih46InciใModel Bใ",
"Hitam42\" ใDaun Besiใ",
"Hitam52\" ใDaun Besiใ",
"Perak42\" ใDaun Besiใ",
"Perak52\" ใDaun Besiใ",
"Emas42โโใDaun Besiใ",
"Emas52โโใDaun Besiใ",
"AksesorใGaransiใ"
],
"images": [
"id-11134207-7rasj-m2af94v6qi8341",
"id-11134207-7rasd-m2an5any9ug3f1",
"id-11134207-7rbk7-m733tepbl1kk50",
"id-11134207-7rbk3-m733tepbnupgaa",
"id-11134207-7rbke-m733tepbmg50a0",
"id-11134207-7rbkc-m733tepbp99w91",
"id-11134207-7rasg-m2qevgpm3dj36f",
"id-11134207-7rasa-m2qevgpm4s3jc4",
"id-11134207-7rasg-m2qevgpm66nz91",
"id-11134207-7rasl-m2qevgpm7l8f22",
"id-11134207-7rbk5-m733tepbi8fo93",
"id-11134207-7rbk8-m733tepbjn04fd",
"id-11134207-7rbk3-m733tepbtgz8cf"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8930817610062896,
"rating_count": [
159,
3,
0,
2,
1,
153
],
"rcount_with_context": 23,
"rcount_with_image": 25
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227618419126274,
"price": 76630000000,
"strikethrough_price": 265000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-71%",
"model_id": 99125152360,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 265000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 11,
"local_monthly_sold_count_text": "11",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GOGEOUS Lampu-Toko",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 24935288267,
"shopid": 1249634646,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4l8z00sx7i25c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,1000031,1015914,700190087,1400285055,2018619,298893311,298463379,700830032,700700063,298933384,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":58,\"model_id\":99125152360,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4l8z00sx7i25c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,1000031,1015914,700190087,1400285055,2018619,298893311,298463379,700830032,700700063,298933384,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":58,\"model_id\":99125152360,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24935288267",
"debug_info": null
},
{
"item_basic": {
"itemid": 24222571302,
"shopid": 45345744,
"name": "AC Window Reiwa 1/2 PK R32 CW0501RA",
"label_ids": [
1015914,
700190087,
1400285055,
1000031,
2018619,
2018618,
1012763,
1718093079,
1213641,
298893311,
298463379,
2153644,
1049117,
1049116,
822059908662278,
825465608497696,
822120592853526,
844931086908638,
834403089593352,
2048660,
2048661,
700765096,
2213652,
700005543,
2008656,
1718088044,
298468390,
298468389,
298458396,
298458398,
1718088045,
1718093084
],
"image": "id-11134207-7r98t-ltrhxui9j8g585",
"images": [
"id-11134207-7r98t-ltrhxui9j8g585",
"id-11134207-7r98p-lvba1o5t85vt4b",
"id-11134207-7r98u-ltrhxuij3d6g7c",
"id-11134207-7r98x-ltrhxui93sbn2a",
"id-11134207-7r98w-ltrhxui93shp09",
"id-11134207-7ra0h-mdr1ebei6er312"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1712368350,
"sold": 141,
"historical_sold": 1000,
"liked": false,
"liked_count": 4718,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 803,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1d-lxdih543thn139.16000081720238608.mp4",
"thumb_url": "id-11110105-7r98s-lxdihw1afk8ye5",
"duration": 47,
"version": 2,
"vid": "id-11110105-6ke1d-lxdih543thn139",
"formats": [
{
"format": 1600408,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1d-lxdih543thn139.16004081762047430.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1d-lxdih543thn139.16004081762047430.mp4",
"width": 360,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1d-lxdih543thn139.default.mp4",
"width": 478,
"height": 850
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Type",
"options": [
"CW0501RA 1/2PK PUTIH",
"CW0501RA 1/2PK HITAM"
],
"images": [
"id-11134207-8224v-mjer92ysr0n5ca",
"id-11134207-8224q-mjer92ytrjeoed"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.879012345679012,
"rating_count": [
810,
4,
3,
9,
55,
739
],
"rcount_with_context": 245,
"rcount_with_image": 195
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Madiun",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 234060167863,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 141,
"local_monthly_sold_count_text": "141",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "TERBAIKTRONICS",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 504087649,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyoW+Vl/JloTL+7cGgoCT8l34PD0YEuLgzER5pD03vINxSt+jdQOUgQNGuWskOt48P5idc46HdvqctJ3TCwEmsc19FP6vegnKfeSOa+Y4tlGR2pJonCVk7zpVhB8BaHdZhcARKMm1Tc4VxGQTT8nvDGc/X5pTIwFplCELD/0XhaL5ZVqFGbnZ3wG1L00fqApLKjPD5JjnHlKOx3gEeUJvnpZU/iVv1un2t3Xjl4baNcJGvhZW9YgYPXFDhPn1Q/hZ17vkHgNJ0vz/YD8yU3/Ue92H3CELCYQ0aAWvEaxcv+D55ORY9Z//LbD6ObaI1m8ALo4IedmG23+4JXhk2tKU7R42y13fURJxzsRBIESVqTWvle/PqWzplfunBj6ierJ3UDzomuk4U+q0OeiyZNjGaVDoD3tBTSAvs01FZFwPEeoWsaBwVsrOzq0x2K4X6MvKEGtafRwJw/44CTVSVJFxC1g==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EOGIr/ABGOiP2b8BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0VHdGFmUndKdy80NENUVlNWSkZ4QzFnPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsG4AHkuMmQlQTpAQAAAOCVJfE/8QEAAABAKrr8P8gMD+AMAekMAAAAAB+0pD+JDXsUrkfhepQ/kQ17FK5H4XqUP6ENAAAAAAAA8D/4DYCA7oTOBbAO7ZTUT+IODKqNBseNBtWOBvCQBsgPHOIZqApFbDB3TGpNNU5pd3RNU3d0TVN3dE1Td3RNU3d3TGpRc01Td3dMalk0TVRFME1UazVOemMyTWpjeE1qa3NNQzQ1TEMweExEQXVOakV4T0RJMk16YzVOall4TVRBeE1Td3RNU3d3TGpRMU16SXdORFV5T0RReE9USXpNRGtzTFRFZGxQYXlTeUNob2Y0RExZUEF5ajQxQUFDQVB6bDg4MXdzMmJMWlFVRzFwMEd1OWZGQlFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFIRUFBQURneWJjSFAza0FBQURnWEZjRlA0RUJBQUFBNEs5cFlrR0pBUUFBQU9BQTgyTkJrUUVBQUFCZ1dDNXpRWmtCQUFBQVFIcmJhRUdoQVFBQUFHQjA3bXBCcVFFQUFBQlE5K1I1UWVnQkFZQUNsQU9LQWo0d0xqQXdOVEF5TWl3eExqQXdNREF3TUN3eExqQXlNalU1T1N3eExqSTFNREF3TUN3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ21wbVptWm1aMlQraEFxM3ZOSGpDU2NGQnlnSUxDQUVSSDV5MkozYzhqci9LQWdzSUFoSDdxZkhTVFdKd3Y5a0NBR0kxcWNrMVJFSGhBZ0JUaDYzblhVcEI2UUtsSEh3U1NDT2tRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A1a0RmUE5jTE5teTJVR2hBN1duUWE3MThVRkN1UU5RcG1Mc2hCN2VQOEVEbWN2enZEcTM0VC9KQTh4OUtNN094T1UvMFFQR2w2UWFVbFBzUC9vRENRb0ZTWE5PVUVJUUFQb0RDd29IVW05cFZHbGxjaEFEK2dNTkNnbFBjbVJsY2xScFpYSVFBL29ERVFvTlNYUmxiVkJ5YVdObFZHbGxjaEFEZ1FRQUFBQWdyckVCUDRrRUFBQUE0TzRSK2o2UUJKc0RtQVNncW9ETCtBU2dCSURFeFpBRHFBU0F4TVdRQThBRWdNVEZrQVBKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQVFFdVNkRCtoQlFBQUFBQUFBUEEvcVFVQUFBQWdrVnp3UDdFRkFBQUFBQUFBOUQrNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQS5TcJN+hmaBgpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIwoQcmVjYWxsX3F1ZXVlX2lkcxIPIg02MTEwMjAzMDQsb3JnChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChQKDnVzZXJfYmxhY2tsaXN0EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjQyMjI1NzEzMDIKDQoHaXNfdnNrdRICKAAKGgoNYml6X3F1ZXVlX2lkcxIJIgdhZHMsb3JnsB/HgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0jIPgE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
97,
88,
91,
4
]
},
"itemid": 24222571302,
"shopid": 45345744,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-ltrhxui9j8g585\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1015914,700190087,1400285055,1000031,2018619,2018618,1012763,1718093079,1213641,298893311,298463379,2153644,1049117,1049116,822059908662278,825465608497696,822120592853526,844931086908638,834403089593352,2048660,2048661,700765096,2213652,700005543,2008656,1718088044,298468390,298468389,298458396,298458398,1718088045,1718093084],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":59,\"model_id\":234060167863,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0,1000,1000,1000,97,88,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-ltrhxui9j8g585\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1015914,700190087,1400285055,1000031,2018619,2018618,1012763,1718093079,1213641,298893311,298463379,2153644,1049117,1049116,822059908662278,825465608497696,822120592853526,844931086908638,834403089593352,2048660,2048661,700765096,2213652,700005543,2008656,1718088044,298468390,298468389,298458396,298458398,1718088045,1718093084],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":59,\"model_id\":234060167863,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0,1000,1000,1000,97,88,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDYxOTk1N3w1NTY2MDd8NTAwNTM1fDYzMTU0OXw1NDQ1MDR8NTY5MDQwfDU5Njc1NHw1NDQ1NTF8NTQ3Nzg0fDYxMzg1OXw0NDI2Mzd8NTU0Nzk2fDUzODc1NHw2MTgzNzZ8NTMyMzYwfDYwMjkyM3w2Mjc2Njd8NjA4OTk5fDYzNTc1Mnw1OTM2Mjd8NTgwNzgyfDYwOTMwNHw1OTc4ODN8NjA1NDY3fDYwMDQwNnw2MDkyODh8NTU0MDAwfDYzNTc5MHw1Nzg4Nzd8NTM0MTc4fDYxMzQyMnw2MzQ3NTB8NTgwNzgzfDYyOTQ2MHw2MDMzMzF8NTcwNDY2fDUyNjUwOHw1NDQ1NjF8NjM0NzIxfDYyMDk3OXw2MzA3NzR8NjIwMjEzfDYwOTEzOXw2MjM1MDN8NTk3MDk4fDUwNTc5MHw1Mjc0Mjl8EOGIr/ABGOiP2b8BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeW9XK1ZsL0psb1RMKzdjR2dvQ1Q4bDM0UEQwWUV1TGd6RVI1cEQwM3ZJTnhTdCtqZFFPVWdRTkd1V3NrT3Q0OFA1aWRjNDZIZHZxY3RKM1RDd0Vtc2MxOUZQNnZlZ25LZmVTT2ErWTR0bEdSMnBKb25DVms3enBWaEI4QmFIZFpoY0FSS01tMVRjNFZ4R1FUVDhudkRHYy9YNXBUSXdGcGxDRUxELzBYaGFMNVpWcUZHYm5aM3dHMUwwMGZxQXBMS2pQRDVKam5IbEtPeDNnRWVVSnZucFpVL2lWdjF1bjJ0M1hqbDRiYU5jSkd2aFpXOVlnWVBYRkRoUG4xUS9oWjE3dmtIZ05KMHZ6L1lEOHlVMy9VZTkySDNDRUxDWVEwYUFXdkVheGN2K0Q1NU9SWTlaLy9MYkQ2T2JhSTFtOEFMbzRJZWRtRzIzKzRKWGhrMnRLVTdSNDJ5MTNmVVJKeHpzUkJJRVNWcVRXdmxlL1BxV3pwbGZ1bkJqNmllckozVUR6b211azRVK3EwT2VpeVpOakdhVkRvRDN0QlRTQXZzMDFGWkZ3UEVlb1dzYUJ3VnNyT3pxMHgySzRYNk12S0VHdGFmUndKdy80NENUVlNWSkZ4QzFnPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjVxexSuR+F6lD+CAQlhYyB3aW5kb3eQAau7ncsG4AHkuMmQlQTpAQAAAOCVJfE/8QEAAABAKrr8P8gMD+AMAekMAAAAAB+0pD+JDXsUrkfhepQ/kQ17FK5H4XqUP6ENAAAAAAAA8D/4DYCA7oTOBbAO7ZTUT+IODKqNBseNBtWOBvCQBsgPHOIZqApFbDB3TGpNNU5pd3RNU3d0TVN3dE1Td3RNU3d3TGpRc01Td3dMalk0TVRFME1UazVOemMyTWpjeE1qa3NNQzQ1TEMweExEQXVOakV4T0RJMk16YzVOall4TVRBeE1Td3RNU3d3TGpRMU16SXdORFV5T0RReE9USXpNRGtzTFRFZGxQYXlTeUNob2Y0RExZUEF5ajQxQUFDQVB6bDg4MXdzMmJMWlFVRzFwMEd1OWZGQlFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUZvSENLcnpsZ01RQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFHSVFDSUNBZ0lDQUJCRUFBQUFBQUFBQUFIRUFBQURneWJjSFAza0FBQURnWEZjRlA0RUJBQUFBNEs5cFlrR0pBUUFBQU9BQTgyTkJrUUVBQUFCZ1dDNXpRWmtCQUFBQVFIcmJhRUdoQVFBQUFHQjA3bXBCcVFFQUFBQlE5K1I1UWVnQkFZQUNsQU9LQWo0d0xqQXdOVEF5TWl3eExqQXdNREF3TUN3eExqQXlNalU1T1N3eExqSTFNREF3TUN3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ21wbVptWm1aMlQraEFxM3ZOSGpDU2NGQnlnSUxDQUVSSDV5MkozYzhqci9LQWdzSUFoSDdxZkhTVFdKd3Y5a0NBR0kxcWNrMVJFSGhBZ0JUaDYzblhVcEI2UUtsSEh3U1NDT2tRWW9ETUFBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1A1a0RmUE5jTE5teTJVR2hBN1duUWE3MThVRkN1UU5RcG1Mc2hCN2VQOEVEbWN2enZEcTM0VC9KQTh4OUtNN094T1UvMFFQR2w2UWFVbFBzUC9vRENRb0ZTWE5PVUVJUUFQb0RDd29IVW05cFZHbGxjaEFEK2dNTkNnbFBjbVJsY2xScFpYSVFBL29ERVFvTlNYUmxiVkJ5YVdObFZHbGxjaEFEZ1FRQUFBQWdyckVCUDRrRUFBQUE0TzRSK2o2UUJKc0RtQVNncW9ETCtBU2dCSURFeFpBRHFBU0F4TVdRQThBRWdNVEZrQVBKQkhzVXJrZmhlcFEvNFFSN0ZLNUg0WHFVUCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQVFFdVNkRCtoQlFBQUFBQUFBUEEvcVFVQUFBQWdrVnp3UDdFRkFBQUFBQUFBOUQrNUJRQUFBTURNelBRL3dRVUFBQUJnWm1iMlA4a0ZBQUFBQUFBQStEOD3qGQS5TcJN+hmaBgpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKIwoQcmVjYWxsX3F1ZXVlX2lkcxIPIg02MTEwMjAzMDQsb3JnChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAoqCh10cmFmZmljX2Jvb3N0X2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2MSwiYXBpMV9sYXRlbmN5X21zIjo0OSwiYXBpMl9sYXRlbmN5X21zIjo5NCwiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTUsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjYxLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTU0MCwiYXBpMl9hZHNfY291bnQiOjMxNCwiYXBpM19hZHNfY291bnQiOjR9ChQKDnVzZXJfYmxhY2tsaXN0EgIoAAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMjQyMjI1NzEzMDIKDQoHaXNfdnNrdRICKAAKGgoNYml6X3F1ZXVlX2lkcxIJIgdhZHMsb3JnsB/HgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0jIPgE=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24222571302",
"debug_info": null
},
{
"item_basic": {
"itemid": 41214282043,
"shopid": 1598560327,
"name": "LAMPU LED STRIP 3528 2835 RGB WATERPROOF WARNA WARNI IP44 5M AC 220V + ADAPTOR + REMOTE 3528",
"label_ids": [
2018619,
2023641,
844931064601283,
1718093079,
298933384,
1015914,
700190087,
1400285055,
844931086908638,
822059908662278,
825465608494624,
825465608499232,
825465608497696
],
"image": "id-11134207-7ra0h-mdo66m6zbo6n88",
"images": [
"id-11134207-7ra0h-mdo66m6zbo6n88",
"id-11134207-7ra0g-mdo66m6zbohg5c",
"id-11134207-7ra0u-mdo66m6pc2s27a",
"id-11134207-7ra0h-mdo66m6zbo243a",
"id-11134207-7ra0s-mdo66m6fchpw28"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1755751756,
"sold": 1000,
"historical_sold": 3000,
"liked": false,
"liked_count": 376,
"view_count": null,
"catid": 100636,
"brand": "",
"cmt_count": 1009,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 1995000000,
"price_min": 1995000000,
"price_max": 1995000000,
"price_min_before_discount": 4000000000,
"price_max_before_discount": 4000000000,
"hidden_price_display": null,
"price_before_discount": 4000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-50%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Tipe",
"options": [
"2835 5M ip20 Remot"
],
"images": [
"id-11134207-7ra0g-mdo67wwez1qmba"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.6798810703667,
"rating_count": [
1009,
26,
14,
48,
81,
840
],
"rcount_with_context": 170,
"rcount_with_image": 119
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 773987928440832,
"price": 1995000000,
"strikethrough_price": 4000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-50%",
"model_id": 179029633799,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 4000000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3000,
"rounded_local_monthly_sold_count": 1000,
"local_monthly_sold_count_text": "1RB+",
"rounded_display_sold_count": 3000,
"display_sold_count_text": "3RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ALDI.LISTRIK",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 41214282043,
"shopid": 1598560327,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mdo66m6zbo6n88\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,298933384,1015914,700190087,1400285055,844931086908638,822059908662278,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":60,\"model_id\":179029633799,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mdo66m6zbo6n88\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,298933384,1015914,700190087,1400285055,844931086908638,822059908662278,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":60,\"model_id\":179029633799,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41214282043",
"debug_info": null
},
{
"item_basic": {
"itemid": 40177836355,
"shopid": 1535166921,
"name": "[Kipas angin gratis] Midea AC Air Conditioner Standard 0.5PK MSAFE-05CRN2X / 1pk",
"label_ids": [
700700063,
2018618,
2153644,
1012729,
1428713,
1718087960,
844931064601283,
298463379,
1049116,
1049117,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1718596,
2213765,
2213652,
298488495,
1015914,
700190087,
298468389,
1718088045
],
"image": "id-11134207-8224p-mjanlhr2cttua5",
"images": [
"id-11134207-8224p-mjanlhr2cttua5",
"id-11134207-82252-mjanlhr7p9mtc7",
"id-11134207-8224z-mj6nhrl9i8eb68",
"id-11134207-8224v-mj6nhrl4s9oicd",
"id-11134207-8224x-mj6nhrl57pxg30",
"id-11134207-8224x-mj6nhrl9p98h03",
"id-11134207-82250-mj6nhrl6qi2t9f",
"id-11134207-8224w-mj6nhrl4bev611",
"id-11134207-8224p-mj6nhrl594hwb5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767767318,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 7,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 288500000000,
"price_min": 288500000000,
"price_max": 288500000000,
"price_min_before_discount": 349900000000,
"price_max_before_discount": 349900000000,
"hidden_price_display": null,
"price_before_discount": 349900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-18%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdva-mj6oqen6o35sf1.16000081767768646.mp4",
"thumb_url": "id-11110105-6vdva-mj6oqen6o35sf1_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6vdva-mj6oqen6o35sf1",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdva-mj6oqen6o35sf1.16000081767768646.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdva-mj6oqen6o35sf1.16000081767768646.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdva-mj6oqen6o35sf1.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Varian",
"options": [
"0.5Pk",
"1PK"
],
"images": [
"id-11134207-8224t-mjanlhr7mghx46",
"id-11134207-8224y-mjanlhr7nv2d60"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 413345429860401,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228248927879168,
"price": 288500000000,
"strikethrough_price": 349900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-18%",
"model_id": 315402178594,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 349900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Midea Electronics Authorized Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODMuMThfe2IxMWJhM2FmNDg1NTdkMDQ3ZDg3NTRiOWE4YjZjNDAwOjAyMDAwMDJlZjE0ZWIyZmU6MDEwMDAxNDg5MTlhYTc2OX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMwMTI0Njg2MjU=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 40177836355,
"shopid": 1535166921,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjanlhr2cttua5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018618,2153644,1012729,1428713,1718087960,844931064601283,298463379,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1718596,2213765,2213652,298488495,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":61,\"model_id\":315402178594,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjanlhr2cttua5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018618,2153644,1012729,1428713,1718087960,844931064601283,298463379,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1718596,2213765,2213652,298488495,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":61,\"model_id\":315402178594,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40177836355",
"debug_info": null
},
{
"item_basic": {
"itemid": 40508483489,
"shopid": 67984280,
"name": "AC Window Reiwa 0.5PK CW-0501RA Hemat Dan Praktis",
"label_ids": [
1000167,
2018619,
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232,
825465608497696,
1400066568,
1718093079,
298463379,
298933384,
2048661,
2048660,
700765096,
1718093065,
2023641,
700750053,
1400285055,
2108629,
1015914,
700190087,
822120592853526,
1718088045,
298468389
],
"image": "id-11134207-7ra0s-mc6i5no3bbuz67",
"images": [
"id-11134207-7ra0s-mc6i5no3bbuz67",
"id-11134207-7ra0p-mc6i5no3bbfl5c",
"id-11134207-7ra0j-mdby8i8d3o39e2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1752503421,
"sold": 5,
"historical_sold": 6,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 5,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 238900000000,
"price_min": 238900000000,
"price_max": 238900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Pengiriman",
"options": [
"AC UNIT ONLY",
"AC + PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 4,
"rcount_with_image": 4
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 238900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 300715415269,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 238900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 6,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 6,
"display_sold_count_text": "6"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "gudangserbaada12",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000,
0,
1000,
4
]
},
"itemid": 40508483489,
"shopid": 67984280,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mc6i5no3bbuz67\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1049134,700005505,822059908662278,825465608499232,825465608497696,1400066568,1718093079,298463379,298933384,2048661,2048660,700765096,1718093065,2023641,700750053,1400285055,2108629,1015914,700190087,822120592853526,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":800,\"model_id\":300715415269,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mc6i5no3bbuz67\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1049134,700005505,822059908662278,825465608499232,825465608497696,1400066568,1718093079,298463379,298933384,2048661,2048660,700765096,1718093065,2023641,700750053,1400285055,2108629,1015914,700190087,822120592853526,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":800,\"model_id\":300715415269,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40508483489",
"debug_info": null
},
{
"item_basic": {
"itemid": 43365427744,
"shopid": 1372273443,
"name": "AC Window Bestlife BWA-05PLD 1/2 PK Low Watt BWA05PLD AC Jendela",
"label_ids": [
2018619,
2023641,
844931064601283,
298463379,
1049142,
1049143,
822059908662278,
825465608497696,
822120592853526,
825465608492064,
825465608499232,
834403089593352,
1718093079,
298933384,
844931086908638,
1015914,
700190087,
2048660,
2048661,
2108629,
298468389,
1718088045
],
"image": "sg-11134201-824go-mdy5j15r1gcief",
"images": [
"sg-11134201-824go-mdy5j15r1gcief",
"sg-11134201-824gz-mdy5j15iuh3946",
"sg-11134201-824gt-mdy5j10ydrt382",
"sg-11134201-824i9-mdy5j116oyrkfa"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756355972,
"sold": 2,
"historical_sold": 3,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "Bestlife",
"cmt_count": 1,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 252960000000,
"price_min": 252960000000,
"price_max": 252960000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Pekanbaru",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 252960000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 159264648999,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 252960000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SM.Elektro",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
0,
1000,
1000
]
},
"itemid": 43365427744,
"shopid": 1372273443,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824go-mdy5j15r1gcief\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049142,1049143,822059908662278,825465608497696,822120592853526,825465608492064,825465608499232,834403089593352,1718093079,298933384,844931086908638,1015914,700190087,2048660,2048661,2108629,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":1353,\"model_id\":159264648999,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-824go-mdy5j15r1gcief\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049142,1049143,822059908662278,825465608497696,822120592853526,825465608492064,825465608499232,834403089593352,1718093079,298933384,844931086908638,1015914,700190087,2048660,2048661,2108629,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":1353,\"model_id\":159264648999,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,0,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43365427744",
"debug_info": null
},
{
"item_basic": {
"itemid": 25632233263,
"shopid": 373228675,
"name": "AC REIWA AC Window 1/2 PK CW-0501RA 0,5 PK - NEW BERGARANSI!!!",
"label_ids": [
700005487,
1059152,
822059908662278,
825465608499232,
825465608497696,
840990690654214,
840955085144628,
825465608492064,
825465608494624,
844931064601283,
844931086908638,
1015914,
700190087,
1213641,
1000031,
1400285055,
1918643,
2018619,
2023641,
1718093079,
298463379,
298933384,
2048661,
2048660,
700765096,
2068629,
298938357,
298458398,
2098628,
298468389,
1718088044,
298458396,
298938368,
298468390,
1718088045,
1718093084,
2098629
],
"image": "id-11134207-7r98q-lwia43tolacs94",
"images": [
"id-11134207-7r98q-lwia43tolacs94",
"id-11134207-7r98t-lwia43tomox888",
"id-11134207-7r98r-lwia43toh2ngd2",
"id-11134207-7r98u-lwia43too3ho8d",
"id-11134207-7r98q-lwia43toqwmka2",
"id-11134207-7r98w-lwia43topi24e8",
"id-11134207-7r98x-lwia43totprgcc",
"id-11134207-7r98p-lwia43tosb7088",
"id-11134207-7r990-lwia43tosawe17"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1718348335,
"sold": 0,
"historical_sold": 8,
"liked": false,
"liked_count": 206,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 7,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 206000000000,
"price_min": 206000000000,
"price_max": 206000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "AC REIWA",
"options": [
"1/2 PK",
"1 PK"
],
"images": [
"id-11134207-7rasl-m2bxllw29e9g56",
"id-11134207-7rasm-m2bxllw2astwef"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.857142857142857,
"rating_count": [
7,
0,
0,
0,
1,
6
],
"rcount_with_context": 2,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp686RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 206000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 109313756722,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 206000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 8,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 8,
"display_sold_count_text": "8"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp686RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Quella Electric",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 25632233263,
"shopid": 373228675,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwia43tolacs94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005487,1059152,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608494624,844931064601283,844931086908638,1015914,700190087,1213641,1000031,1400285055,1918643,2018619,2023641,1718093079,298463379,298933384,2048661,2048660,700765096,2068629,298938357,298458398,2098628,298468389,1718088044,298458396,298938368,298468390,1718088045,1718093084,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4244,\"model_id\":109313756722,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwia43tolacs94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005487,1059152,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,825465608492064,825465608494624,844931064601283,844931086908638,1015914,700190087,1213641,1000031,1400285055,1918643,2018619,2023641,1718093079,298463379,298933384,2048661,2048660,700765096,2068629,298938357,298458398,2098628,298468389,1718088044,298458396,298938368,298468390,1718088045,1718093084,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4244,\"model_id\":109313756722,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25632233263",
"debug_info": null
},
{
"item_basic": {
"itemid": 43705180521,
"shopid": 10681204,
"name": "REIWA AC Window 1/2pk CW-0501RA CW 0501 RA CW0501RA 0,5pk 0,5 pk 1/2 pk UNIT ONLY",
"label_ids": [
2018619,
844931064601283,
1718093065,
1015914,
700190087,
1718093079,
700765096,
1059152,
1049124,
2048660,
2048661,
822059908662278,
822120592853526,
825465608492064,
834403089593352,
1400025118,
1400285055,
2023641,
298933384,
298463379,
1400066568,
1718088045,
298468389,
997921049,
1718093085,
700585042,
1718088046,
997921050
],
"image": "id-11134207-7ra0p-mb6htlt2ucymca",
"images": [
"id-11134207-7ra0p-mb6htlt2ucymca",
"id-11134207-7ra0q-mb6htlt2vrj27e",
"id-11134207-7ra0k-mb6htlt2x63ifc",
"id-11134207-7ra0h-mb6htlt2ykny2b",
"id-11134207-7ra0g-mb6htlt2zz8e2f",
"id-11134207-7ra0g-mb6htlt31dsu4b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1750323565,
"sold": 1,
"historical_sold": 20,
"liked": false,
"liked_count": 16,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 5,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 204900000000,
"price_min": 204900000000,
"price_max": 204900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 204900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 305436197134,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 204900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 20,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 20,
"display_sold_count_text": "20"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "FLOREN Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
88
]
},
"itemid": 43705180521,
"shopid": 10681204,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mb6htlt2ucymca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1718093065,1015914,700190087,1718093079,700765096,1059152,1049124,2048660,2048661,822059908662278,822120592853526,825465608492064,834403089593352,1400025118,1400285055,2023641,298933384,298463379,1400066568,1718088045,298468389,997921049,1718093085,700585042,1718088046,997921050],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":496,\"model_id\":305436197134,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mb6htlt2ucymca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1718093065,1015914,700190087,1718093079,700765096,1059152,1049124,2048660,2048661,822059908662278,822120592853526,825465608492064,834403089593352,1400025118,1400285055,2023641,298933384,298463379,1400066568,1718088045,298468389,997921049,1718093085,700585042,1718088046,997921050],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":496,\"model_id\":305436197134,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43705180521",
"debug_info": null
},
{
"item_basic": {
"itemid": 22256375047,
"shopid": 57328541,
"name": "Instalasi AC 0.5 - 1 Pk Paket 5 M",
"label_ids": [
27,
48,
1000109,
1002164,
1013565,
1400095067,
1400285005,
1049122,
1059152,
822059908662278,
844931064601283,
1015914,
700190087,
1668726,
1400285055,
825465608497696,
825465608499232,
700585046,
298458395,
1718087960,
1428713,
1718093079,
1000031,
2018618,
1012763,
298893311,
2068629,
298938357,
298933384,
298463379,
2153644,
700830032,
2048660,
2048661,
700765096,
2213652,
2008656,
2098628,
298468389,
1718088045,
2098629,
298938368
],
"image": "id-11134207-7rbk3-ma3n6p2pfeul51",
"images": [
"id-11134207-7rbk3-ma3n6p2pfeul51",
"id-11134207-7rbk3-ma3n6p2pclppd1",
"id-11134207-7r98u-lm8qyolpkubw8d",
"id-11134207-7r98o-lm8qyolpgmmk03",
"id-11134207-7rbk2-ma3n6p2pe0a50d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1695978914,
"sold": 8,
"historical_sold": 363,
"liked": false,
"liked_count": 668,
"view_count": null,
"catid": 100010,
"brand": "Eroc",
"cmt_count": 107,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 95900000000,
"price_min": 95900000000,
"price_max": 95900000000,
"price_min_before_discount": 200000000000,
"price_max_before_discount": 200000000000,
"hidden_price_display": null,
"price_before_discount": 200000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-52%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.633928571428571,
"rating_count": [
112,
6,
1,
1,
12,
92
],
"rcount_with_context": 26,
"rcount_with_image": 16
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp319RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 817277306470400,
"price": 95900000000,
"strikethrough_price": 200000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-52%",
"model_id": 207069297913,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 200000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 363,
"rounded_local_monthly_sold_count": 8,
"local_monthly_sold_count_text": "8",
"rounded_display_sold_count": 363,
"display_sold_count_text": "363"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp319RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Gree Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 344156989,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT5r+jFhtKvyOp4cgpiiUIOxA5pUg9FQ2t5r7kSWXh/yDUApQ+gcYGDWOXzAEdm9vDyMy552aHbq4pJleyIvlllUbvStA6zsbuphon++bEjGM5KbDGuTgihBTJ2snqnnAUmhZzyIjwOqwyVRjGgbl2cZA0QY+nsBPY0dNAFOywv2eHYa1BORTy4Oxw1EbH4mPfY3EpJ0yzjHN8LTMRyKbrnS6l1fZMh8sf15UxxlkDvNfNX27oCTZLUo5jmXA7WmI78/qI8QgZbspTf+scamTQvIkHpbTRKI6bB0Gi+iZZsPu+LFQY+Ibgk+1MV4jgTkDOWt0kg+tuHmLrMGC6qf8xHjO9LRiZ7aYSaw1NtXkpS000EUly6ODDe2fNbYJ5GJ3YxduTylN1HgqDGHM+FDlqje/OOKIiKgWxqg+YLwwgjE4QkIl4+ClnoZbj8lajf9eF/XismnnkuML0b0jAvv75BD7bZMXIG6zigS5WdNyWa5cwQfQ3RMwrN7bP2Cx9K0hTw==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EL3WjaQBGICLvIgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNXIrakZodEt2eU9wNGNncGlpVUlPeEE1cFVnOUZRMnQ1cjdrU1dYaC95RFVBcFErZ2NZR0RXT1h6QUVkbTl2RHlNeTU1MmFIYnE0cEpsZXlJdmxsbFVidlN0QTZ6c2J1cGhvbisrYkVqR001S2JER3VUZ2loQlRKMnNucW5uQVVtaFp6eUlqd09xd3lWUmpHZ2JsMmNaQTBRWStuc0JQWTBkTkFGT3l3djJlSFlhMUJPUlR5NE94dzFFYkg0bVBmWTNFcEoweXpqSE44TFRNUnlLYnJuUzZsMWZaTWg4c2YxNVV4eGxrRHZOZk5YMjdvQ1RaTFVvNWptWEE3V21JNzgvcUk4UWdaYnNwVGYrc2NhbVRRdklrSHBiVFJLSTZiQjBHaStpWlpzUHUrTEZRWStJYmdrKzFNVjRqZ1RrRE9XdDBrZyt0dUhtTHJNR0M2cWY4eEhqTzlMUmlaN2FZU2F3MU50WGtwUzAwMEVVbHk2T0REZTJmTmJZSjVHSjNZeGR1VHlsTjFIZ3FER0hNK0ZEbHFqZS9PT0tJaUtnV3hxZytZTHd3Z2pFNFFrSWw0K0Nsbm9aYmo4bGFqZjllRi9YaXNtbm5rdU1MMGIwakF2djc1QkQ3YlpNWElHNnppZ1M1V2ROeVdhNWN3UWZRM1JNd3JON2JQMkN4OUswaFR3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAABoiD95j8L1KFx/Yj+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHUhZWjiwrpAQAAAOCVJfE/8QEAAAAg/JDwP8gMD+AMAekMAAAAgEtSuT+JDXsUrkfhepQ/kQ0AAMBoCA70QKENAAAAAG9LWkG5DbH5RguVM1NA+A2AgIC05wKwDpjxqjHiDgyqjQbHjQbVjgbwkAa5D3Joke18h2Y/wQ9JcVaQ2zkBP8gPBeIZrApFbkF3TGpNc0xURXNMVEVzTFRFc0xURXNNQzR6TERFc01DNHhNemcwTmpRMk5qa3dPRGd3TmpBek1pd3RNU3d3TGpreU16ZzFPRFkyTkRVMk9UQXlNREVzTVM0d01EQXdNVEl6TERJekxqWXdORGs1TmpBeU1qVXpOVEExT0N3eExqTXlPRFl3TXpRek5ETTFNRFEyTEMweEhUbE1yMHNndTl1a0F5MmFtWmsrTlFBQWdEOUtEZ2p3OStFRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBR0lRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBR0lPQ1BEMzRRUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQTRJaDJVajk1QUFBQWdJRklLeitCQVFBQUFLQmRzcHhCaVFFQUFBQmdwYytSUVpFQkFBQUFnQUZCcDBHWkFRQUFBRUNQVnA5Qm9RRUFBQUNnaFF1WVFha0JBQUFBY0FxeHEwSG9BUUdBQXBRRGlnSStNQzR3TURBNE56Y3NNUzR3TURBd01EQXNNUzR3TmpFME9EZ3NNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBak16TXpNek05TS9vUUlBQUFCd0NyR3JRYmtDRGVJRE8vNEwyai9CQWdBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBREtBZ3NJQWhFQUFBQUFBQUFBZ05rQ1lEdjh1bmdpZ2tIaEFvQ01YUWlNSFh0QjZRSUlYNnR0dlpLU1FZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRDIwaDBFYXJpNXovQkErQ1JsYmgyaU9rL3lRT2VBUzFJSUd2clA5RUR5QXBhVEtoYTdqK0JCQUFBQUtEdEsxQS9pUVFBQUFCQWczSk5QNUFFbXdPWUJKL1kvdXFCdFFHZ0JMT2VrbXlvQklES3RlNEJ1QVROcTZPQ0FjQUVnTXExN2dISkJBQUFBQUFBYUlnLzRRUUFBQUFBQUdpSVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFZRGE5VEQraEJRQUFBQUFBQVBBL3FRVUFBQURBMnZ2d1A3RUZBQUFBQUFBQTlEKzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUFBQUErRDg96hkCChX6GYwGCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQlfAregXkZaQQoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yMjI1NjM3NTA0NwokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCY+UE6wrCvRAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9CioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lksB/PgoCAiICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAABwCrGrQdklfj1Ix3MzU0DpJVoCNZrZhlJA8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
97,
88
]
},
"itemid": 22256375047,
"shopid": 57328541,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":6892988,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-ma3n6p2pfeul51\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1049122,1059152,822059908662278,844931064601283,1015914,700190087,1668726,1400285055,825465608497696,825465608499232,700585046,298458395,1718087960,1428713,1718093079,1000031,2018618,1012763,298893311,2068629,298938357,298933384,298463379,2153644,700830032,2048660,2048661,700765096,2213652,2008656,2098628,298468389,1718088045,2098629,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":522,\"model_id\":207069297913,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":6892988,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-ma3n6p2pfeul51\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1049122,1059152,822059908662278,844931064601283,1015914,700190087,1668726,1400285055,825465608497696,825465608499232,700585046,298458395,1718087960,1428713,1718093079,1000031,2018618,1012763,298893311,2068629,298938357,298933384,298463379,2153644,700830032,2048660,2048661,700765096,2213652,2008656,2098628,298468389,1718088045,2098629,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":522,\"model_id\":207069297913,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EL3WjaQBGICLvIgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNXIrakZodEt2eU9wNGNncGlpVUlPeEE1cFVnOUZRMnQ1cjdrU1dYaC95RFVBcFErZ2NZR0RXT1h6QUVkbTl2RHlNeTU1MmFIYnE0cEpsZXlJdmxsbFVidlN0QTZ6c2J1cGhvbisrYkVqR001S2JER3VUZ2loQlRKMnNucW5uQVVtaFp6eUlqd09xd3lWUmpHZ2JsMmNaQTBRWStuc0JQWTBkTkFGT3l3djJlSFlhMUJPUlR5NE94dzFFYkg0bVBmWTNFcEoweXpqSE44TFRNUnlLYnJuUzZsMWZaTWg4c2YxNVV4eGxrRHZOZk5YMjdvQ1RaTFVvNWptWEE3V21JNzgvcUk4UWdaYnNwVGYrc2NhbVRRdklrSHBiVFJLSTZiQjBHaStpWlpzUHUrTEZRWStJYmdrKzFNVjRqZ1RrRE9XdDBrZyt0dUhtTHJNR0M2cWY4eEhqTzlMUmlaN2FZU2F3MU50WGtwUzAwMEVVbHk2T0REZTJmTmJZSjVHSjNZeGR1VHlsTjFIZ3FER0hNK0ZEbHFqZS9PT0tJaUtnV3hxZytZTHd3Z2pFNFFrSWw0K0Nsbm9aYmo4bGFqZjllRi9YaXNtbm5rdU1MMGIwakF2djc1QkQ3YlpNWElHNnppZ1M1V2ROeVdhNWN3UWZRM1JNd3JON2JQMkN4OUswaFR3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAABoiD95j8L1KFx/Yj+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHUhZWjiwrpAQAAAOCVJfE/8QEAAAAg/JDwP8gMD+AMAekMAAAAgEtSuT+JDXsUrkfhepQ/kQ0AAMBoCA70QKENAAAAAG9LWkG5DbH5RguVM1NA+A2AgIC05wKwDpjxqjHiDgyqjQbHjQbVjgbwkAa5D3Joke18h2Y/wQ9JcVaQ2zkBP8gPBeIZrApFbkF3TGpNc0xURXNMVEVzTFRFc0xURXNNQzR6TERFc01DNHhNemcwTmpRMk5qa3dPRGd3TmpBek1pd3RNU3d3TGpreU16ZzFPRFkyTkRVMk9UQXlNREVzTVM0d01EQXdNVEl6TERJekxqWXdORGs1TmpBeU1qVXpOVEExT0N3eExqTXlPRFl3TXpRek5ETTFNRFEyTEMweEhUbE1yMHNndTl1a0F5MmFtWmsrTlFBQWdEOUtEZ2p3OStFRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUVvT0NLenpsZ01SQUFBQUFBQUFBQUJLRGdpYyt1RUVFUUFBQUFBQUFBQUFTZzRJcS9PV0F4RUFBQUFBQUFBQUFFb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFGSU9DS3p6bGdNUkFBQUFBQUFBQUFCU0RnaXI4NVlERVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQmFCd2lxODVZREVBQmFCd2lzODVZREVBQmFCd2lyODVZREVBQmFDUWlBZ0lDQWdBUVFBRm9IQ1BEMzRRUVFBR0lRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBR0lPQ1BEMzRRUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL1lnNElyUE9XQXhFQUFBQUFBQUFBQUdJT0NLdnpsZ01SQUFBQUFBQUFBQUJ4QUFBQTRJaDJVajk1QUFBQWdJRklLeitCQVFBQUFLQmRzcHhCaVFFQUFBQmdwYytSUVpFQkFBQUFnQUZCcDBHWkFRQUFBRUNQVnA5Qm9RRUFBQUNnaFF1WVFha0JBQUFBY0FxeHEwSG9BUUdBQXBRRGlnSStNQzR3TURBNE56Y3NNUzR3TURBd01EQXNNUzR3TmpFME9EZ3NNUzR5TlRBd01EQXNNUzR6TURBd01EQXNNUzQwTURBd01EQXNNUzQxTURBd01EQ1pBak16TXpNek05TS9vUUlBQUFCd0NyR3JRYmtDRGVJRE8vNEwyai9CQWdBQUFBQUFBQUNBeWdJTENBRVJBQUFBQUFBQUFBREtBZ3NJQWhFQUFBQUFBQUFBZ05rQ1lEdjh1bmdpZ2tIaEFvQ01YUWlNSFh0QjZRSUlYNnR0dlpLU1FZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRDIwaDBFYXJpNXovQkErQ1JsYmgyaU9rL3lRT2VBUzFJSUd2clA5RUR5QXBhVEtoYTdqK0JCQUFBQUtEdEsxQS9pUVFBQUFCQWczSk5QNUFFbXdPWUJKL1kvdXFCdFFHZ0JMT2VrbXlvQklES3RlNEJ1QVROcTZPQ0FjQUVnTXExN2dISkJBQUFBQUFBYUlnLzRRUUFBQUFBQUdpSVAra0VBQUFBQUFBQThEL3hCQUFBQUFBQUFQQS8rUVFBQUFBQUFBRHdQNEVGQUFBQUFBQUE4RCtKQlFBQUFBQUFBUEEva1FVQUFBQUFBQUR3UDVrRkFBQUFZRGE5VEQraEJRQUFBQUFBQVBBL3FRVUFBQURBMnZ2d1A3RUZBQUFBQUFBQTlEKzVCUUFBQU1ETXpQUS93UVVBQUFCZ1ptYjJQOGtGQUFBQUFBQUErRDg96hkCChX6GYwGCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQlfAregXkZaQQoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCg0KB2lzX3Zza3USAigAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChIKDHZvdWNoZXJfbGVucxICEAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yMjI1NjM3NTA0NwokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCY+UE6wrCvRAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9CioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lksB/PgoCAiICBqCDIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAABwCrGrQdklfj1Ix3MzU0DpJVoCNZrZhlJA8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_22256375047",
"debug_info": null
},
{
"item_basic": {
"itemid": 23856375480,
"shopid": 57328541,
"name": "Instalasi AC 1.5 PK PAKET 3 M",
"label_ids": [
27,
48,
1000109,
1002164,
1013565,
1400095067,
1400285005,
1049122,
1059152,
822059908662278,
1668726,
700585046,
825465608499232,
825465608497696,
1015914,
700190087,
298458395,
1718087960,
1428713,
1718093079,
1000031,
2018618,
1012763,
298893311,
2068629,
298938357,
298933384,
298463379,
2153644,
2048660,
2048661,
700765096,
2213652,
298938368,
2098628,
298468389,
1718088045,
2098629
],
"image": "id-11134207-7rbk6-ma3n6p2pjmjxf9",
"images": [
"id-11134207-7rbk6-ma3n6p2pjmjxf9",
"id-11134207-7r98s-lm8qyolpm8wc52",
"id-11134207-7r98x-lm8qyolpnngs1e",
"id-11134207-7r98r-lm8r8qqdetgrda",
"id-11134207-7r990-lzpxqwfvk7woee"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1695979076,
"sold": 1,
"historical_sold": 31,
"liked": false,
"liked_count": 98,
"view_count": null,
"catid": 100010,
"brand": "Eroc",
"cmt_count": 8,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 100900000000,
"price_min": 100900000000,
"price_max": 100900000000,
"price_min_before_discount": 175000000000,
"price_max_before_discount": 175000000000,
"hidden_price_display": null,
"price_before_discount": 175000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-42%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
8,
0,
0,
0,
0,
8
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp336RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 817277306470400,
"price": 100900000000,
"strikethrough_price": 175000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-42%",
"model_id": 29734584310,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 175000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 31,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 31,
"display_sold_count_text": "31"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp336RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Gree Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 344157792,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGTxyoVukr0Sf0Z5kcjuQy6J60gAjUdIkmd9QBWnjadU11chrT0rpqN7n9ELf464KsD40f5KHDNhJ9ikX9f1c/FWxg7J02GIZenwZm40iou0PMCusL0XxrV1wlCdvc3TAhJMwOx2S2l6GTJymyTRZwbIO+3snVDyzVyRtnv0l62bEwvQM7I3j5FI9iZvPhNhaDy2Y/021ujuULpMjM9vuX5Zsk2Pq7GoMW/yaBZyIX49TCjOiXXIiGkCqC0Sy6omZlIip6aYbgcuMZF4pnzkWs/9to14c59Vy89HXogEx2EvFrogtrMDpab/BzOFWO+3QX5x7+9UIoBNh5yWTFkzTvA4Yem0mxZJCrEGjIrvSes3S/i063mfrQHSjwEqtRsxjnqePReXwTSM9E5VU1kvvvkl8goo/sEYJpw2BlpxZJytLH2ANSUUdhfTtDNcPtyoDCaKUlTaFP2cVaYk41N1HZZ0OnleDWc7/urV+CYvRCYcZfQl116mRCLS/6I4rMtp7dGw==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EODcjaQBGJOlvIgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUeHlvVnVrcjBTZjBaNWtjanVReTZKNjBnQWpVZElrbWQ5UUJXbmphZFUxMWNoclQwcnBxTjduOUVMZjQ2NEtzRDQwZjVLSEROaEo5aWtYOWYxYy9GV3hnN0owMkdJWmVud1ptNDBpb3UwUE1DdXNMMFh4clYxd2xDZHZjM1RBaEpNd094MlMybDZHVEp5bXlUUlp3YklPKzNzblZEeXpWeVJ0bnYwbDYyYkV3dlFNN0kzajVGSTlpWnZQaE5oYUR5MlkvMDIxdWp1VUxwTWpNOXZ1WDVac2syUHE3R29NVy95YUJaeUlYNDlUQ2pPaVhYSWlHa0NxQzBTeTZvbVpsSWlwNmFZYmdjdU1aRjRwbnprV3MvOXRvMTRjNTlWeTg5SFhvZ0V4MkV2RnJvZ3RyTURwYWIvQnpPRldPKzNRWDV4Nys5VUlvQk5oNXlXVEZrelR2QTRZZW0wbXhaSkNyRUdqSXJ2U2VzM1MvaTA2M21mclFIU2p3RXF0UnN4am5xZVBSZVh3VFNNOUU1VlUxa3Z2dmtsOGdvby9zRVlKcHcyQmxweFpKeXRMSDJBTlNVVWRoZlR0RE5jUHR5b0RDYUtVbFRhRlAyY1ZhWWs0MU4xSFpaME9ubGVEV2M3L3VyVitDWXZSQ1ljWmZRbDExNm1SQ0xTLzZJNHJNdHA3ZEd3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACsez95L90kBoF1UD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHozPHxiwrpAQAAAKDEHfE/8QEAAACgeonwP8gMD+AMAekMAAAAgEtSuT+JDXsUrkfhepQ/kQ0AAPBxko7nQKENAAAAgM49W0G5DX49SMdzM1NA+A2AgIro+AKwDof40DPiDgyqjQbHjQbVjgbwkAa5Dz0K16NwnVQ/wQ9JcVaQ2zkBP8gPBuIZ2ApFbzhCTUM0ME9EUXpNVEU1TlRNME5EUTJOalU0TEMweExDMHhMQzB4TEMweExEQXVORGcwTXpFeE9UVXpORFEwTmpZMU9Dd3hMREF1TWpBd09UZzROVE0yT0RjNU5qa3hPVE1zTFRFc01TNHdNRGt4TmpVd01qWXhNVEE0TnprekxERXVNREF3TURFeU15dzBNQzQzTWpVeU56UXdORE0yTWpNek5pd3dMamcxTWpZeE5qVTVPVEEzTVRjek1ESXNMVEVkcFAxZ1N5QzU3ck1ETGIzMzl6NDFBQUNBUDBvT0NLdnpsZ01SQUFBQUFBQUFBQUJLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdqdzkrRUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQUFBcVdkQ1Aza0FBQURnaUY4aFA0RUJBQUFBd0E0QWprR0pBUUFBQU9CanA0WkJrUUVBQUFCUXVWT2FRWmtCQUFBQUFBcEFsRUdoQVFBQUFFQXRsWTVCcVFFQUFBQlFVTVdoUWVnQkFZQUNsQU9LQWo0d0xqQXdNRE0xTUN3eExqQXdNREF3TUN3eExqRXdOVGMyT0N3eExqSTFNREF3TUN3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ2FOUkdrUGYrM2oraEFnQUFBRkJReGFGQnVRSXBreHJhQUd6YVA4RUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUlBbGRhbWhJaHhRZUVDQU51Sng1Rm5jVUhwQWlmUUFWcG51NFpCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS91UU5wQmFpam9HM25QOEVEdExrZmFEUmI2VC9KQXgvb05odllxT3MvMFFNOVNqS0ZYMUh1UDRFRUFBQUFRQTFZUUQrSkJBQUFBRURRRnowL2tBU2JBNWdFbU9hMDFvaTFBYUFFaWJMUEE2Z0VnTXExN2dHNEJQZVg1dW9Cd0FTQXlyWHVBY2tFQUFBQUFBQ3Nlei9oQkFBQUFBQUFySHMvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEQUt2STJQNkVGQUFBQUFBQUE4RCtwQlFBQUFPQTVzZkUvc1FVQUFBQUFBQUQwUDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQIMFfoZjAYKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCVWwP9ZWO1tBChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKEgoMdm91Y2hlcl9sZW5zEgIQAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9CiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzIzODU2Mzc1NDgwCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJG1OFN3CM50CwH8+CgICogIGIIMgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJQAAAFBQxaFB2SWyGPOWajNTQOklV04tHAHOUkDyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
88
]
},
"itemid": 23856375480,
"shopid": 57328541,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":7141178,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-ma3n6p2pjmjxf9\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1049122,1059152,822059908662278,1668726,700585046,825465608499232,825465608497696,1015914,700190087,298458395,1718087960,1428713,1718093079,1000031,2018618,1012763,298893311,2068629,298938357,298933384,298463379,2153644,2048660,2048661,700765096,2213652,298938368,2098628,298468389,1718088045,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":736,\"model_id\":29734584310,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":7141178,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-ma3n6p2pjmjxf9\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[27,48,1000109,1002164,1013565,1400095067,1400285005,1049122,1059152,822059908662278,1668726,700585046,825465608499232,825465608497696,1015914,700190087,298458395,1718087960,1428713,1718093079,1000031,2018618,1012763,298893311,2068629,298938357,298933384,298463379,2153644,2048660,2048661,700765096,2213652,298938368,2098628,298468389,1718088045,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":736,\"model_id\":29734584310,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EODcjaQBGJOlvIgBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUeHlvVnVrcjBTZjBaNWtjanVReTZKNjBnQWpVZElrbWQ5UUJXbmphZFUxMWNoclQwcnBxTjduOUVMZjQ2NEtzRDQwZjVLSEROaEo5aWtYOWYxYy9GV3hnN0owMkdJWmVud1ptNDBpb3UwUE1DdXNMMFh4clYxd2xDZHZjM1RBaEpNd094MlMybDZHVEp5bXlUUlp3YklPKzNzblZEeXpWeVJ0bnYwbDYyYkV3dlFNN0kzajVGSTlpWnZQaE5oYUR5MlkvMDIxdWp1VUxwTWpNOXZ1WDVac2syUHE3R29NVy95YUJaeUlYNDlUQ2pPaVhYSWlHa0NxQzBTeTZvbVpsSWlwNmFZYmdjdU1aRjRwbnprV3MvOXRvMTRjNTlWeTg5SFhvZ0V4MkV2RnJvZ3RyTURwYWIvQnpPRldPKzNRWDV4Nys5VUlvQk5oNXlXVEZrelR2QTRZZW0wbXhaSkNyRUdqSXJ2U2VzM1MvaTA2M21mclFIU2p3RXF0UnN4am5xZVBSZVh3VFNNOUU1VlUxa3Z2dmtsOGdvby9zRVlKcHcyQmxweFpKeXRMSDJBTlNVVWRoZlR0RE5jUHR5b0RDYUtVbFRhRlAyY1ZhWWs0MU4xSFpaME9ubGVEV2M3L3VyVitDWXZSQ1ljWmZRbDExNm1SQ0xTLzZJNHJNdHA3ZEd3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACsez95L90kBoF1UD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHozPHxiwrpAQAAAKDEHfE/8QEAAACgeonwP8gMD+AMAekMAAAAgEtSuT+JDXsUrkfhepQ/kQ0AAPBxko7nQKENAAAAgM49W0G5DX49SMdzM1NA+A2AgIro+AKwDof40DPiDgyqjQbHjQbVjgbwkAa5Dz0K16NwnVQ/wQ9JcVaQ2zkBP8gPBuIZ2ApFbzhCTUM0ME9EUXpNVEU1TlRNME5EUTJOalU0TEMweExDMHhMQzB4TEMweExEQXVORGcwTXpFeE9UVXpORFEwTmpZMU9Dd3hMREF1TWpBd09UZzROVE0yT0RjNU5qa3hPVE1zTFRFc01TNHdNRGt4TmpVd01qWXhNVEE0TnprekxERXVNREF3TURFeU15dzBNQzQzTWpVeU56UXdORE0yTWpNek5pd3dMamcxTWpZeE5qVTVPVEEzTVRjek1ESXNMVEVkcFAxZ1N5QzU3ck1ETGIzMzl6NDFBQUNBUDBvT0NLdnpsZ01SQUFBQUFBQUFBQUJLRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJLRGdqdzkrRUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBVWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBVWc0SThQZmhCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSENLdnpsZ01RQUZvSkNJQ0FnSUNBQkJBQVdnY0k4UGZoQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNEk4UGZoQkJFQUFBQUFBQUFBQUdJT0NLcnpsZ01SQUFBQUFBQUE4RDlpRGdpczg1WURFUUFBQUFBQUFBQUFZZzRJcS9PV0F4RUFBQUFBQUFBQUFIRUFBQUFBcVdkQ1Aza0FBQURnaUY4aFA0RUJBQUFBd0E0QWprR0pBUUFBQU9CanA0WkJrUUVBQUFCUXVWT2FRWmtCQUFBQUFBcEFsRUdoQVFBQUFFQXRsWTVCcVFFQUFBQlFVTVdoUWVnQkFZQUNsQU9LQWo0d0xqQXdNRE0xTUN3eExqQXdNREF3TUN3eExqRXdOVGMyT0N3eExqSTFNREF3TUN3eExqTXdNREF3TUN3eExqUXdNREF3TUN3eExqVXdNREF3TUprQ2FOUkdrUGYrM2oraEFnQUFBRkJReGFGQnVRSXBreHJhQUd6YVA4RUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUlBbGRhbWhJaHhRZUVDQU51Sng1Rm5jVUhwQWlmUUFWcG51NFpCaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS91UU5wQmFpam9HM25QOEVEdExrZmFEUmI2VC9KQXgvb05odllxT3MvMFFNOVNqS0ZYMUh1UDRFRUFBQUFRQTFZUUQrSkJBQUFBRURRRnowL2tBU2JBNWdFbU9hMDFvaTFBYUFFaWJMUEE2Z0VnTXExN2dHNEJQZVg1dW9Cd0FTQXlyWHVBY2tFQUFBQUFBQ3Nlei9oQkFBQUFBQUFySHMvNlFRQUFBQUFBQUR3UC9FRUFBQUFBQUFBOEQvNUJBQUFBQUFBQVBBL2dRVUFBQUFBQUFEd1A0a0ZBQUFBQUFBQThEK1JCUUFBQUFBQUFQQS9tUVVBQUFEQUt2STJQNkVGQUFBQUFBQUE4RCtwQlFBQUFPQTVzZkUvc1FVQUFBQUFBQUQwUDdrRkFBQUF3TXpNOUQvQkJRQUFBR0JtWnZZL3lRVUFBQUFBQUFENFB3PT3qGQIMFfoZjAYKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwpoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCVWwP9ZWO1tBChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKEgoMdm91Y2hlcl9sZW5zEgIQAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAAogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9CiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzIzODU2Mzc1NDgwCg0KB2lzX3Zza3USAigACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJG1OFN3CM50CwH8+CgICogIGIIMgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJQAAAFBQxaFB2SWyGPOWajNTQOklV04tHAHOUkDyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_23856375480",
"debug_info": null
},
{
"item_basic": {
"itemid": 28188086472,
"shopid": 1064833635,
"name": "Reiwa Window Air Cinditioner CW-0501RA 1/2PK",
"label_ids": [
2018619,
700025282,
1718093079,
1049116,
700005516,
822059908662278,
825465608499232,
1213641,
825465608497696,
298463379,
298933384,
834403089593352,
825465608494624,
1718093065,
1428713,
1718087960,
2023641,
1015914,
700190087,
700700063,
1718088045,
1718088044,
298458398,
298468390,
1718093084,
298458396,
298468389
],
"image": "id-11134207-8224t-mjcosz9sdatcaf",
"images": [
"id-11134207-8224t-mjcosz9sdatcaf",
"id-11134207-7ra0m-mbhpbvnywlom3d",
"id-11134207-7ra0n-mbhpbvnyy092c7",
"id-11134207-7ra0k-mbhpbvnyzeti17",
"id-11134207-7ra0q-mbhpbvnz0tdy0e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1751003447,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 215000000000,
"price_min": 215000000000,
"price_max": 215000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven8-mh79kylgelfyce.16000041763445220.mp4",
"thumb_url": "id-11110105-6ven8-mh79kylgelfyce_cover",
"duration": 15,
"version": 2,
"vid": "id-11110105-6ven8-mh79kylgelfyce",
"formats": [
{
"format": 1600004,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven8-mh79kylgelfyce.16000041763445220.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mh79kylgelfyce.16000041763445220.mp4",
"width": 360,
"height": 642
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mh79kylgelfyce.default.mp4",
"width": 476,
"height": 850
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sidoarjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 215000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 305533769326,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 215000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Hore Electronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28188086472,
"shopid": 1064833635,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcosz9sdatcaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,1718093079,1049116,700005516,822059908662278,825465608499232,1213641,825465608497696,298463379,298933384,834403089593352,825465608494624,1718093065,1428713,1718087960,2023641,1015914,700190087,700700063,1718088045,1718088044,298458398,298468390,1718093084,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4421,\"model_id\":305533769326,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcosz9sdatcaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,1718093079,1049116,700005516,822059908662278,825465608499232,1213641,825465608497696,298463379,298933384,834403089593352,825465608494624,1718093065,1428713,1718087960,2023641,1015914,700190087,700700063,1718088045,1718088044,298458398,298468390,1718093084,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4421,\"model_id\":305533769326,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28188086472",
"debug_info": null
},
{
"item_basic": {
"itemid": 44372375455,
"shopid": 39001145,
"name": "AC AQUA 1/2PK, 1PK - KCR05FQAL/KCR05FQDL/KCR09FQAL/KCR09FQDL - Garansi Resmi",
"label_ids": [
2018619,
2023641,
844931086908638,
844931064601283,
1049128,
700005504,
822059908662278,
825465608497696,
1400285055,
1015914,
700190087,
822120592853526,
825465608492064,
298463379,
1718093079,
1718088045,
298468389
],
"image": "id-11134207-81ztq-mf96bw86of0q9c",
"images": [
"id-11134207-81ztq-mf96bw86of0q9c",
"id-11134207-8224r-mhigndkmxgjk24",
"id-11134207-81zte-mf96bw7nk4r14b",
"id-11134207-81ztd-mf96bw8omk9ae7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1759203174,
"sold": 4,
"historical_sold": 26,
"liked": false,
"liked_count": 27,
"view_count": null,
"catid": 100010,
"brand": "AQUA",
"cmt_count": 12,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 285000000000,
"price_min": 285000000000,
"price_max": 285000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Tipe",
"options": [
"Instan 1/2PK",
"Kargo 1/2PK",
"Instan 1PK",
"Kargo 1PK",
"Instan 1/2PK+Pasang",
"Instan 1PK+Pasang",
"Kargo 1/2pk + bahan",
"Kargo 1pk + bahan",
"Instan 1/2pk + bahan",
"Kargo1/2pk+bahan @5m"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
12,
0,
0,
0,
0,
12
],
"rcount_with_context": 2,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 275000000000,
"strikethrough_price": 285000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1333049371934720,
"discount_text": null,
"model_id": 296819990218,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1333049371934720,
"voucher_code": "JASWJ6BP5",
"voucher_discount": 10000000000,
"time_info": {
"start_time": 1768371152,
"end_time": 1769321400,
"valid_duration": null
},
"groups": [],
"min_spend": 120000000000
},
"recommended_platform_voucher_info": null,
"original_price": 285000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 26,
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_display_sold_count": 26,
"display_sold_count_text": "26"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Listrik Jaya 88",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 680162900,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT8rvoyBvL5zu587EE2QEauOTEPbZNu4XGiwbbMoK7LtlWUIKLiLe+TKAG3LfWaSDivaXwoaPQlfSthdGAxEqyFuc6H+igjJ436otWJ4h4NP/OUUyZR9njvCGY0raeuJq4P/B19GwFTNc6SOdaiM41ovO1n9v6XSaa8x8DcVvaJrR2HCObEs58G0Y9yI/W+7tv1ARgsb3ZEtu+g5j3TNhhW5wsmJHdvehVq14nLkY3SUCugt3thoODb0zH3HS2Qt5VmjBGSGa8EbjnZUXidDKFvzdfUcBmJgLCrWixbxPp4HmU53PBJXKj1i7+b7LQZTwPp8/bY3cK1AL4SeBQZdH7mKPhBnet/aJIa0pkuGchiNgRF4QbxsjGr4gH3YFFOBjZwwxQYV9ZGauEqOBmmEuM4qlX8QnOE1PG/jOLuYVJi2LzrTeevLa001Xz727++nIcwwyjvuoLy5EbH/jcriowJt/M/zweVRgDewf3S5K6CLno7pIPXPhZU8DdoB0ZaoKBA==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8ENTsqcQCGNnf8dcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOHJ2b3lCdkw1enU1ODdFRTJRRWF1T1RFUGJaTnU0WEdpd2JiTW9LN0x0bFdVSUtMaUxlK1RLQUczTGZXYVNEaXZhWHdvYVBRbGZTdGhkR0F4RXF5RnVjNkgraWdqSjQzNm90V0o0aDROUC9PVVV5WlI5bmp2Q0dZMHJhZXVKcTRQL0IxOUd3RlROYzZTT2RhaU00MW92TzFuOXY2WFNhYTh4OERjVnZhSnJSMkhDT2JFczU4RzBZOXlJL1crN3R2MUFSZ3NiM1pFdHUrZzVqM1ROaGhXNXdzbUpIZHZlaFZxMTRuTGtZM1NVQ3VndDN0aG9PRGIwekgzSFMyUXQ1Vm1qQkdTR2E4RWJqblpVWGlkREtGdnpkZlVjQm1KZ0xDcldpeGJ4UHA0SG1VNTNQQkpYS2oxaTcrYjdMUVpUd1BwOC9iWTNjSzFBTDRTZUJRWmRIN21LUGhCbmV0L2FKSWEwcGt1R2NoaU5nUkY0UWJ4c2pHcjRnSDNZRkZPQmpad3d4UVlWOVpHYXVFcU9CbW1FdU00cWxYOFFuT0UxUEcvak9MdVlWSmkyTHpyVGVldkxhMDAxWHo3MjcrK25JY3d3eWp2dW9MeTVFYkgvamNyaW93SnQvTS96d2VWUmdEZXdmM1M1SzZDTG5vN3BJUFhQaFpVOERkb0IwWmFvS0JBPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADoZz95oBov3STWYD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHSo4OmgwTpAQAAAKDEHfE/8QEAAACAbfzzP8gMD+AMAekMAAAAgKXDqj+JDXsUrkfhepQ/kQ0AAFATvcziQKENAAAAQCYqaUG5DQwVGVRhM1NA+A2AgO7YhgmwDs+O8KUB4g4Mqo0Gx40G1Y4G8JAGuQ8GgZVDi6BiP8EPSXFWkNs5AT/IDwjiGcAKRW84Qk1DNDNOamcyTXpNd01qZzFNemcwTURFeUxDMHhMQzB4TEMweExDMHhMREF1TnpjMk16azJPVGs0TlRJek5qTTNOaXd4TERBdU1ETTJOemt6TWpVNU9UZzVNekl4Tnprc0xURXNNQzQzTVRNMk1qRXhNalE0T1RReU16STNMREV1TURBd01ERXlNeXd4TkRJdU5qUXpNVEkxTWpZM056QTVOellzTUM0NU9USTFORFl6TVRBM05UY3pNemNzTFRFZE92V0NTeUN4b3FVR0xTTEZSRDgxQUFDQVAwb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0Rnanc5K0VFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEluUHJoQkJFQUFBQUFBQUFBQUZJT0NQRDM0UVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGSU9DS3Z6bGdNUkFBQUFBQUFBQUFCYUJ3anc5K0VFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCYUNRaUFnSUNBZ0FRUUFGb0hDSno2NFFRUUFHSU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SW5QcmhCQkVBQUFBQUFBQUFBR0lPQ1BEMzRRUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL2NRQUFBQ0RXMmtzL2VRQUFBTUEzbWhBL2dRRUFBQURBc25PeFFZa0JBQUFBb083SlpVR1JBUUFBQURVQ0lySkJtUUVBQUFDQUlhZXlRYUVCQUFBQVlEVnFiVUdwQVFBQUFDdHprck5CaWdJK01DNHdNREV4TlRrc01TNHdNREF3TURBc01TNHdOVE0zTnprc01TNHlOVEF3TURBc01TNHpNREF3TURBc01TNDBNREF3TURBc01TNDFNREF3TURDWkFnVGtxNFErMk9nL29RSUFBQUFyYzVLelFia0NRZStOSVFDNDRqL0JBZ0FBQUFBQUFBQ0F5Z0lMQ0FFUkFBQUFBQUFBQUFES0Fnc0lBaEVBQUFBQUFBQUFnTmtDQVArZGFLdnZua0hoQWtBYTBTWHhKRlpCNlFLbXFVMWpTQnlpUWJrRE5DQUZpOUJGNkQvQkEwY0MzdlVldCtrL3lRTngwczZVK0l6clA5RURQQmIxaDUwQjd6K0JCQUFBQU9DdkVrZy9pUVFBQUFCQXdrNUZQNUFFbXdPWUJNSE96NEl2b0FTLzdkbW1BcWdFZ1BLTHFBbTRCTUdFc29FSHdBU0E4b3VvQ2NrRUFBQUFBQURvWnovaEJBQUFBQUFBNkdjLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBRGdyZjVTUDZFRkFBQUFBQUFBOEQrcEJRQUFBQ0JIM1BBL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkCDBb6GYwGChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQmoHmMqRxdpQQoSCgx2b3VjaGVyX2xlbnMSAhAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQ0MzcyMzc1NDU1CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJp4xq6qO+4kAKFAoOc2hvcF9ibGFja2xpc3QSAigAsB+AgICA6ICBgIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklAAAAK3OSs0HZJePgPp0kM1NA6SUa3RBDa+JSQPIlBlNFQVJDSA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 44372375455,
"shopid": 39001145,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":13193522,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztq-mf96bw86of0q9c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1049128,700005504,822059908662278,825465608497696,1400285055,1015914,700190087,822120592853526,825465608492064,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":3759,\"model_id\":296819990218,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":13193522,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztq-mf96bw86of0q9c\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1049128,700005504,822059908662278,825465608497696,1400285055,1015914,700190087,822120592853526,825465608492064,298463379,1718093079,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":3759,\"model_id\":296819990218,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8ENTsqcQCGNnf8dcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOHJ2b3lCdkw1enU1ODdFRTJRRWF1T1RFUGJaTnU0WEdpd2JiTW9LN0x0bFdVSUtMaUxlK1RLQUczTGZXYVNEaXZhWHdvYVBRbGZTdGhkR0F4RXF5RnVjNkgraWdqSjQzNm90V0o0aDROUC9PVVV5WlI5bmp2Q0dZMHJhZXVKcTRQL0IxOUd3RlROYzZTT2RhaU00MW92TzFuOXY2WFNhYTh4OERjVnZhSnJSMkhDT2JFczU4RzBZOXlJL1crN3R2MUFSZ3NiM1pFdHUrZzVqM1ROaGhXNXdzbUpIZHZlaFZxMTRuTGtZM1NVQ3VndDN0aG9PRGIwekgzSFMyUXQ1Vm1qQkdTR2E4RWJqblpVWGlkREtGdnpkZlVjQm1KZ0xDcldpeGJ4UHA0SG1VNTNQQkpYS2oxaTcrYjdMUVpUd1BwOC9iWTNjSzFBTDRTZUJRWmRIN21LUGhCbmV0L2FKSWEwcGt1R2NoaU5nUkY0UWJ4c2pHcjRnSDNZRkZPQmpad3d4UVlWOVpHYXVFcU9CbW1FdU00cWxYOFFuT0UxUEcvak9MdVlWSmkyTHpyVGVldkxhMDAxWHo3MjcrK25JY3d3eWp2dW9MeTVFYkgvamNyaW93SnQvTS96d2VWUmdEZXdmM1M1SzZDTG5vN3BJUFhQaFpVOERkb0IwWmFvS0JBPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADoZz95oBov3STWYD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHSo4OmgwTpAQAAAKDEHfE/8QEAAACAbfzzP8gMD+AMAekMAAAAgKXDqj+JDXsUrkfhepQ/kQ0AAFATvcziQKENAAAAQCYqaUG5DQwVGVRhM1NA+A2AgO7YhgmwDs+O8KUB4g4Mqo0Gx40G1Y4G8JAGuQ8GgZVDi6BiP8EPSXFWkNs5AT/IDwjiGcAKRW84Qk1DNDNOamcyTXpNd01qZzFNemcwTURFeUxDMHhMQzB4TEMweExDMHhMREF1TnpjMk16azJPVGs0TlRJek5qTTNOaXd4TERBdU1ETTJOemt6TWpVNU9UZzVNekl4Tnprc0xURXNNQzQzTVRNMk1qRXhNalE0T1RReU16STNMREV1TURBd01ERXlNeXd4TkRJdU5qUXpNVEkxTWpZM056QTVOellzTUM0NU9USTFORFl6TVRBM05UY3pNemNzTFRFZE92V0NTeUN4b3FVR0xTTEZSRDgxQUFDQVAwb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DSno2NFFRUkFBQUFBQUFBQUFCS0Rnanc5K0VFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNEluUHJoQkJFQUFBQUFBQUFBQUZJT0NQRDM0UVFSQUFBQUFBQUFBQUJTRGdpcTg1WURFUUFBQUFBQUFBQUFVZzRJclBPV0F4RUFBQUFBQUFBQUFGSU9DS3Z6bGdNUkFBQUFBQUFBQUFCYUJ3anc5K0VFRUFCYUJ3aXE4NVlERUFCYUJ3aXM4NVlERUFCYUJ3aXI4NVlERUFCYUNRaUFnSUNBZ0FRUUFGb0hDSno2NFFRUUFHSU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SW5QcmhCQkVBQUFBQUFBQUFBR0lPQ1BEMzRRUVJBQUFBQUFBQUFBQmlEZ2lxODVZREVRQUFBQUFBQVBBL2NRQUFBQ0RXMmtzL2VRQUFBTUEzbWhBL2dRRUFBQURBc25PeFFZa0JBQUFBb083SlpVR1JBUUFBQURVQ0lySkJtUUVBQUFDQUlhZXlRYUVCQUFBQVlEVnFiVUdwQVFBQUFDdHprck5CaWdJK01DNHdNREV4TlRrc01TNHdNREF3TURBc01TNHdOVE0zTnprc01TNHlOVEF3TURBc01TNHpNREF3TURBc01TNDBNREF3TURBc01TNDFNREF3TURDWkFnVGtxNFErMk9nL29RSUFBQUFyYzVLelFia0NRZStOSVFDNDRqL0JBZ0FBQUFBQUFBQ0F5Z0lMQ0FFUkFBQUFBQUFBQUFES0Fnc0lBaEVBQUFBQUFBQUFnTmtDQVArZGFLdnZua0hoQWtBYTBTWHhKRlpCNlFLbXFVMWpTQnlpUWJrRE5DQUZpOUJGNkQvQkEwY0MzdlVldCtrL3lRTngwczZVK0l6clA5RURQQmIxaDUwQjd6K0JCQUFBQU9DdkVrZy9pUVFBQUFCQXdrNUZQNUFFbXdPWUJNSE96NEl2b0FTLzdkbW1BcWdFZ1BLTHFBbTRCTUdFc29FSHdBU0E4b3VvQ2NrRUFBQUFBQURvWnovaEJBQUFBQUFBNkdjLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBRGdyZjVTUDZFRkFBQUFBQUFBOEQrcEJRQUFBQ0JIM1BBL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkCDBb6GYwGChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChYKEHVzZXJfcHJvZmlsZV90YWcSAhgAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKFAoOdXNlcl9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQmoHmMqRxdpQQoSCgx2b3VjaGVyX2xlbnMSAhAACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQ0MzcyMzc1NDU1CiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJp4xq6qO+4kAKFAoOc2hvcF9ibGFja2xpc3QSAigAsB+AgICA6ICBgIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklAAAAK3OSs0HZJePgPp0kM1NA6SUa3RBDa+JSQPIlBlNFQVJDSA==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44372375455",
"debug_info": null
},
{
"item_basic": {
"itemid": 25636840335,
"shopid": 1232840,
"name": "REIWA CW-0501RA 0,5 PK AC Window 1/2 PK",
"label_ids": [
1400095067,
1400285005,
844931064601283,
1059152,
700005489,
1000031,
1213641,
1918643,
2018619,
2023641,
1718093079,
822059908662278,
834403089593352,
825465608492064,
1400066568,
825465608497696,
2048661,
2048660,
700765096,
298463379,
298458396,
1718088045,
298468390,
1718088044,
298468389,
298458398,
1718093084
],
"image": "id-11134207-7rask-m12av3dq3cwq21",
"images": [
"id-11134207-7rask-m12av3dq3cwq21"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1728277645,
"sold": 0,
"historical_sold": 2,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 212500000000,
"price_min": 212500000000,
"price_max": 212500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "CW-0501RA",
"options": [
"UNIT ONLY",
"PLUSPETIKAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 212500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 233297106666,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 212500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Feli tjokro",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 25636840335,
"shopid": 1232840,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m12av3dq3cwq21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,844931064601283,1059152,700005489,1000031,1213641,1918643,2018619,2023641,1718093079,822059908662278,834403089593352,825465608492064,1400066568,825465608497696,2048661,2048660,700765096,298463379,298458396,1718088045,298468390,1718088044,298468389,298458398,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5018,\"model_id\":233297106666,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m12av3dq3cwq21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,844931064601283,1059152,700005489,1000031,1213641,1918643,2018619,2023641,1718093079,822059908662278,834403089593352,825465608492064,1400066568,825465608497696,2048661,2048660,700765096,298463379,298458396,1718088045,298468390,1718088044,298468389,298458398,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5018,\"model_id\":233297106666,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25636840335",
"debug_info": null
},
{
"item_basic": {
"itemid": 25987679250,
"shopid": 61769069,
"name": "REIWA AC Window 1/2 PK CW-0501RA 0,5 PK",
"label_ids": [
1000167,
1000544,
1400095067,
1400285005,
1718087960,
1428713,
844931064601283,
1213641,
1000031,
1015914,
700190087,
1400285055,
1400066568,
2018619,
844931086908638,
298893311,
1718093079,
298463379,
1049112,
1049147,
822059908662278,
825465608492064,
825465608499232,
834403089593352,
825465608497696,
822120592853526,
2048660,
2048661,
2023641,
2108629,
2068629,
298938357,
1718093084,
298458396,
298468390,
2098629,
298468389,
1718088044,
1718088045,
298938368,
298458398,
2098628
],
"image": "id-11134207-7rbkc-m6qnztwmxv9886",
"images": [
"id-11134207-7rbkc-m6qnztwmxv9886",
"id-11134207-7rbk1-m6qnztwmz9to9c",
"id-11134207-7rbk5-m6qnztwn0oe45b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730103836,
"sold": 1,
"historical_sold": 44,
"liked": false,
"liked_count": 49,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 24,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 209100000000,
"price_min": 209100000000,
"price_max": 209100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "UKURAN",
"options": [
"1/2 PK CW-0501 RA",
"1 PK CW-0901 RA"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.791666666666667,
"rating_count": [
24,
0,
1,
0,
2,
21
],
"rcount_with_context": 11,
"rcount_with_image": 8
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp697RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209100000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 237680456523,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209100000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 44,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 44,
"display_sold_count_text": "44"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp697RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "NiagaBaru",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
88
]
},
"itemid": 25987679250,
"shopid": 61769069,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m6qnztwmxv9886\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1000544,1400095067,1400285005,1718087960,1428713,844931064601283,1213641,1000031,1015914,700190087,1400285055,1400066568,2018619,844931086908638,298893311,1718093079,298463379,1049112,1049147,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,822120592853526,2048660,2048661,2023641,2108629,2068629,298938357,1718093084,298458396,298468390,2098629,298468389,1718088044,1718088045,298938368,298458398,2098628],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":2257,\"model_id\":237680456523,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m6qnztwmxv9886\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1000544,1400095067,1400285005,1718087960,1428713,844931064601283,1213641,1000031,1015914,700190087,1400285055,1400066568,2018619,844931086908638,298893311,1718093079,298463379,1049112,1049147,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,822120592853526,2048660,2048661,2023641,2108629,2068629,298938357,1718093084,298458396,298468390,2098629,298468389,1718088044,1718088045,298938368,298458398,2098628],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":2257,\"model_id\":237680456523,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25987679250",
"debug_info": null
},
{
"item_basic": {
"itemid": 24339032436,
"shopid": 227051644,
"name": "REIWA AC Window 1/2 PK CW-0501RA 0,5 PK",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
822120592853526,
1213641,
1000031,
298463379,
2018619,
1015914,
700190087,
700830032,
2023641,
298468390,
298458396,
298458398,
298468389
],
"image": "id-11134207-7ra0r-md1jsirr2auc8c",
"images": [
"id-11134207-7ra0r-md1jsirr2auc8c",
"id-11134207-7ra0u-md1jsirr0w9wd6",
"id-11134207-7ra0o-md1jsirqwokkd9",
"id-11134207-7ra0q-md1jsirqva0443",
"id-11134207-7ra0p-md1jsirqy35052",
"id-11134207-7ra0j-md1jsirqzhpg4d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1733201293,
"sold": 0,
"historical_sold": 8,
"liked": false,
"liked_count": 10,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 4,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmiz-m5ieyah8i7l4ae.16000031737969258.mp4",
"thumb_url": "id-11110105-6kmiz-m5ieyah8i7l4ae_cover",
"duration": 17,
"version": 2,
"vid": "id-11110105-6kmiz-m5ieyah8i7l4ae",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmiz-m5ieyah8i7l4ae.16000031737969258.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiz-m5ieyah8i7l4ae.16000031737969258.mp4",
"width": 480,
"height": 864
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiz-m5ieyah8i7l4ae.default.mp4",
"width": 480,
"height": 864
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "TYPE",
"options": [
"AC REIWA 0.5/ 1/2PK",
"AC REIWA 1PK",
"+JSA PSG JBDTBK 1/2",
"+JSA PSG JBDTBK 1PK"
],
"images": [
"id-11134207-7ra0u-md1jsirr0w9wd6",
"id-11134207-7ra0q-md1jsirqva0443",
"id-11134207-7ra0r-md1jsirr2auc8c",
"id-11134207-7ra0o-md1jsirqwokkd9"
],
"properties": [],
"type": 0
},
{
"name": "PACKING",
"options": [
"TANPA BUBBLE",
"DENGAN BUBBLE"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.5,
"rating_count": [
4,
0,
0,
0,
2,
2
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 272329954589,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 8,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 8,
"display_sold_count_text": "8"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "WIJOYO ELEKTRONIK",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 24339032436,
"shopid": 227051644,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0r-md1jsirr2auc8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,822120592853526,1213641,1000031,298463379,2018619,1015914,700190087,700830032,2023641,298468390,298458396,298458398,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4581,\"model_id\":272329954589,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0r-md1jsirr2auc8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,822120592853526,1213641,1000031,298463379,2018619,1015914,700190087,700830032,2023641,298468390,298458396,298458398,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4581,\"model_id\":272329954589,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24339032436",
"debug_info": null
},
{
"item_basic": {
"itemid": 26078484738,
"shopid": 1486653998,
"name": "AC WINDOW REIWA 1/2PK CW0501RA Low Watt",
"label_ids": [
844931064601283,
1049116,
700005516,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
825465608494624,
1718093079,
1015914,
700190087,
2023641,
2018619,
2068629,
298938357,
2098629
],
"image": "id-11134207-7rbkd-m6z02ah7c3rd53",
"images": [
"id-11134207-7rbkd-m6z02ah7c3rd53",
"id-11134207-7rbk0-m6z02ah7c3zoec",
"id-11134207-7rbk5-m6z02ah7c3u4c1",
"id-11134207-7rbkc-m6z02ah7c3vx9a",
"id-11134207-7rbk8-m6z02ah7dibt2d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1741152816,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": 199900000000,
"price_max_before_discount": 199900000000,
"hidden_price_display": null,
"price_before_discount": 199900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-3%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Sidoarjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp641RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 826577227677696,
"price": 192400000000,
"strikethrough_price": 199900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1328605523755008,
"discount_text": "-3%",
"model_id": 195845995259,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1328605523755008,
"voucher_code": "SINA1Z814",
"voucher_discount": 2500000000,
"time_info": {
"start_time": 1767841413,
"end_time": 1773543660,
"valid_duration": null
},
"groups": [],
"min_spend": 150000000000
},
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp641RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SINAR pasifik Sidoarjo",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26078484738,
"shopid": 1486653998,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkd-m6z02ah7c3rd53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,700005516,822059908662278,825465608499232,825465608497696,837860934119952,825465608494624,1718093079,1015914,700190087,2023641,2018619,2068629,298938357,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5080,\"model_id\":195845995259,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkd-m6z02ah7c3rd53\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,700005516,822059908662278,825465608499232,825465608497696,837860934119952,825465608494624,1718093079,1015914,700190087,2023641,2018619,2068629,298938357,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5080,\"model_id\":195845995259,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26078484738",
"debug_info": null
},
{
"item_basic": {
"itemid": 24917644470,
"shopid": 1012420674,
"name": "AC WINDOW REIWA 0.5 PK 5000 BTU Window Air Conditioner CW - 0501RA AC JENDELA 0,5 PK 1/2 PK 370 WATT LOW WATT",
"label_ids": [
298463379,
1049124,
1059152,
822059908662278,
825465608492064,
825465608494624,
825465608499232,
825465608497696,
837860934119952,
1213641,
844931086908638,
1000031,
298458395,
1718093079,
2018619,
1400066568,
2048661,
2048660,
700765096,
1718088044,
298458398,
298458396,
298468389,
1718093084,
298468390,
1718088045
],
"image": "id-11134207-7r98v-lsmoipzdtza162",
"images": [
"id-11134207-7r98v-lsmoipzdtza162",
"id-11134207-7r98s-lsmoipzdvduha0",
"id-11134207-7r991-lsmoipzdwsex04",
"id-11134207-7r98q-lsmoipzdy6zdb2",
"id-11134207-7r98s-lsmoipzdzljt77"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1709897663,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 6,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 219900000000,
"price_min": 219900000000,
"price_max": 219900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 219900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 236109086143,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 219900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Urbanย Nest",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 24917644470,
"shopid": 1012420674,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lsmoipzdtza162\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,1049124,1059152,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,837860934119952,1213641,844931086908638,1000031,298458395,1718093079,2018619,1400066568,2048661,2048660,700765096,1718088044,298458398,298458396,298468389,1718093084,298468390,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5371,\"model_id\":236109086143,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lsmoipzdtza162\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,1049124,1059152,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,837860934119952,1213641,844931086908638,1000031,298458395,1718093079,2018619,1400066568,2048661,2048660,700765096,1718088044,298458398,298458396,298468389,1718093084,298468390,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5371,\"model_id\":236109086143,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24917644470",
"debug_info": null
},
{
"item_basic": {
"itemid": 28887594172,
"shopid": 1479757725,
"name": "Reiwa AC Window 1/2 PK / AC Window Reiwa 1/2 PK",
"label_ids": [
2018619,
2023641,
844931064601283,
298463379,
1049145,
1049148,
822059908662278,
825465608492064,
825465608497696,
1213641,
1718093065,
2108629,
1400285055,
1015914,
700190087,
2048660,
2048661,
700765096,
844931086908638,
298458396,
298458398,
298468389,
298468390
],
"image": "id-11134207-7rbk9-mb0k0cpquqpgc2",
"images": [
"id-11134207-7rbk9-mb0k0cpquqpgc2",
"id-11134207-7rbkb-mb0k0cpqrxkk9c",
"id-11134207-7rbk3-mb0k0cpqqjha22",
"id-11134207-7rbkd-mb0k0cpqry6u1d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1749963828,
"sold": 2,
"historical_sold": 17,
"liked": false,
"liked_count": 17,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 9,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 208472400000,
"price_min": 208472400000,
"price_max": 208472400000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Tujuan",
"options": [
"Bandar Lampung",
"Luar Bandar Lampung"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
9,
0,
0,
0,
0,
9
],
"rcount_with_context": 2,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bandar Lampung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 207972400000,
"strikethrough_price": 208472400000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1324505592250416,
"discount_text": null,
"model_id": 149205127963,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1324505592250416,
"voucher_code": "GUDAFEB",
"voucher_discount": 500000000,
"time_info": {
"start_time": 1767353040,
"end_time": 1774959840,
"valid_duration": null
},
"groups": [],
"min_spend": 100000000000
},
"recommended_platform_voucher_info": null,
"original_price": 208472400000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 17,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 17,
"display_sold_count_text": "17"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Gudang Rey",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
88
]
},
"itemid": 28887594172,
"shopid": 1479757725,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-mb0k0cpquqpgc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049145,1049148,822059908662278,825465608492064,825465608497696,1213641,1718093065,2108629,1400285055,1015914,700190087,2048660,2048661,700765096,844931086908638,298458396,298458398,298468389,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":765,\"model_id\":149205127963,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-mb0k0cpquqpgc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049145,1049148,822059908662278,825465608492064,825465608497696,1213641,1718093065,2108629,1400285055,1015914,700190087,2048660,2048661,700765096,844931086908638,298458396,298458398,298468389,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":765,\"model_id\":149205127963,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28887594172",
"debug_info": null
},
{
"item_basic": {
"itemid": 44751916265,
"shopid": 202812301,
"name": "[GARANSI GANTI UNIT INDOOR BARU 3 TAHUN] NEW PRODUCT CHANGHONG AC 1/2 PK GUARDIAN SERIES STANDARD CHOL-05L4S [INDOOR + OUTDOOR UNIT ONLY] [ANTI CORROSION PRO] [BABY CARE MODE] [3 IN 1 FILTER] [FAST COOLING] [SLEEP MODE] [ECO MODE]] [DOUBLE GOLDEN FIN]",
"label_ids": [
1000230,
1000381,
1668726,
1002164,
1011692,
1000544,
1000109,
2018618,
2153644,
1400095067,
1718072935,
1400285005,
1428713,
1718087960,
844931064601283,
298463379,
700005490,
1049120,
1718093079,
822059908662278,
825465608499232,
834403089593352,
825465608497696,
1015914,
700190087,
2213652,
1400285055,
298468389,
1718088045
],
"image": "id-11134207-8224u-mj99p5n82e4j27",
"images": [
"id-11134207-8224u-mj99p5n82e4j27",
"id-11134207-8224y-mhbrve2qhwctfe",
"id-11134201-8224s-mhll9t4kxgxtc3",
"id-11134201-8224u-mhll9s1o7e9u03",
"id-11134201-8224w-mhll9syx3i8447",
"id-11134201-8224v-mhll9ssonu2p95",
"id-11134201-82252-mhll9snckpvlf5",
"id-11134201-8224y-mhll9t83jk7c59",
"id-11134201-8224p-mhlrgb39cb2b3d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763717642,
"sold": 23,
"historical_sold": 24,
"liked": false,
"liked_count": 43,
"view_count": null,
"catid": 100010,
"brand": "Changhong",
"cmt_count": 13,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 269800000000,
"price_min": 269800000000,
"price_max": 269800000000,
"price_min_before_discount": 499900000000,
"price_max_before_discount": 499900000000,
"hidden_price_display": null,
"price_before_discount": 499900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-46%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven8-mitx47kolzpg3b.16000101766995797.mp4",
"thumb_url": "id-11110105-6ven8-mitx47kolzpg3b_cover",
"duration": 54,
"version": 2,
"vid": "id-11110105-6ven8-mitx47kolzpg3b",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven8-mitx47kolzpg3b.16000101766995797.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mitx47kolzpg3b.16000101766995797.mp4",
"width": 952,
"height": 540
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven8-mitx47kolzpg3b.default.mp4",
"width": 952,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
13,
0,
0,
0,
0,
13
],
"rcount_with_context": 2,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134201-8224v-mhlrfjo50t1i4d",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 413763337728626,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227866059223042,
"price": 264800000000,
"strikethrough_price": 499900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1287524397236224,
"discount_text": "-46%",
"model_id": 330182600772,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1287524397236224,
"voucher_code": "CHANASIAK",
"voucher_discount": 5000000000,
"time_info": {
"start_time": 1762944120,
"end_time": 1770637800,
"valid_duration": null
},
"groups": [],
"min_spend": 0
},
"recommended_platform_voucher_info": null,
"original_price": 499900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 24,
"rounded_local_monthly_sold_count": 23,
"local_monthly_sold_count_text": "23",
"rounded_display_sold_count": 24,
"display_sold_count_text": "24"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Changhong Home Appliance Official Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 656652954,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT1Bt/eTt45r8FwNprdKbuY5EmXuGsxHdNbPuKBbYwKlnuGVf4Bu1tweujV0Phl0lguw+B8Tg5YjnH6fuhbvBcnTQnfPBDoYqJQkwNV4yJpcpEACaJZTb6R4NpDpNL0OaydqJXt/xX0w+Zku/tVM0O2Se3LfmbD2P7TnPNgCumnJ9kYwiRFNh+pEk+kzC5JbEq07JWbFkOJbc8PGG18b0cbdZ5jFuqnrPAT5Igwn5n3RTooUPawsVnds56Emh9E0M9KHoWGwn3UNbIxE9f9+cDZ45T2AJrX4iKTTlSPp/UU+j88nXGf3HOuE7rizg+jvpOhrLZ9WfIOuv3jfZOfrHZqkPZsvmPndHdhBn1aHai2pM1a/VVJkABdx9vdXkCKl6HZHXPwDaYNp68cD2SL1HpAfglFpctnc41c7t8/Yw5t7Se0Xs9sj6kxYXj7kolut1Fzs7H7DqbhxLZpGrr/Y6WbfcxvZVpIUBnlD3ntcobC5CrVghERVPaJFF3G0rcxWptQ==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EJr1jrkCGIbn4NMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMUJ0L2VUdDQ1cjhGd05wcmRLYnVZNUVtWHVHc3hIZE5iUHVLQmJZd0tsbnVHVmY0QnUxdHdldWpWMFBobDBsZ3V3K0I4VGc1WWpuSDZmdWhidkJjblRRbmZQQkRvWXFKUWt3TlY0eUpwY3BFQUNhSlpUYjZSNE5wRHBOTDBPYXlkcUpYdC94WDB3K1prdS90Vk0wTzJTZTNMZm1iRDJQN1RuUE5nQ3Vtbko5a1l3aVJGTmgrcEVrK2t6QzVKYkVxMDdKV2JGa09KYmM4UEdHMThiMGNiZFo1akZ1cW5yUEFUNUlnd241bjNSVG9vVVBhd3NWbmRzNTZFbWg5RTBNOUtIb1dHd24zVU5iSXhFOWY5K2NEWjQ1VDJBSnJYNGlLVFRsU1BwL1VVK2o4OG5YR2YzSE91RTdyaXpnK2p2cE9ockxaOVdmSU91djNqZlpPZnJIWnFrUFpzdm1QbmRIZGhCbjFhSGFpMnBNMWEvVlZKa0FCZHg5dmRYa0NLbDZIWkhYUHdEYVlOcDY4Y0QyU0wxSHBBZmdsRnBjdG5jNDFjN3Q4L1l3NXQ3U2UwWHM5c2o2a3hZWGo3a29sdXQxRnpzN0g3RHFiaHhMWnBHcnIvWTZXYmZjeHZaVnBJVUJubEQzbnRjb2JDNUNyVmdoRVJWUGFKRkYzRzByY3hXcHRRPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACkcz95+n5qvHSTej+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHAmev48gbpAQAAAOCVJfE/8QEAAAAAaGjwP8gMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ0AACE1EkgvQaENAAAA5K17qUG5DTbrdGnnMVNA+A2AgMGAzwewDv2jioUB4g4Mqo0Gx40G1Y4G8JAGuQ8v3SQGgU19P8EPSXFWkNs5AT/IDw/iGawLRXBvQk15NHhNakF3TXpVMU1UVTFPVGd4TXpjMkxDMHhMQzB4TEMweExDMHhMRE11TVRVeE5UVXhNREkxT0RVMk56QTBPQ3d4TERBdU16SXlPVEExT0RrM01UVTRPVFEzTml3d0xqa3NNQzQzTlRRM016VTFNVEEzTlRFek1USTBMREF1TXpnNE9EYzRORFl4TlRVMk5ESXhOalFzTUM0d01qa3hOREkwTWpZM05qQTRPVEV5T0N3MExqUXdNVGs1TlRVMU9URTVNelEzTnl3dE1SMktNNUZNSVBHdDkyVXRxYTVIUURVQUFJQS9PUmFjYzhXT0J3aENRYmFtT2NtTmVrdENTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhZXdvcFJSZmpTN0JjUUFBQUFDOXZXby9lUUFBQUlDRHcxWS9nUUVBQUFBQVBUTE1RWWtCQUFBQW9Ob2d0RUdSQVFBQUFDaFZJZE5CbVFFQUFBQkFBUUxRUWFFQkFBQUFZRm9zdTBHcEFRQUFBTmdYemRaQjZBRUJnQUtVQTRvQ1BqQXVNREF5TnpnM0xERXVNREF3TURBd0xERXVNRFl5TXpRMUxERXVNalV3TURBd0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RS2cxbDFpWURZSlFLRUNBQUFBMkJmTjFrRzVBbDhJT2UvLzQrRS93UUxzS0tVVVg0MHV3Y29DQ3dnQkVUcUJNcmhDY1NUQnlnSUxDQUlSN0NpbEZGK05Mc0haQWdDMHJvMldvTGhCNFFLZ2JxTGpnSUtpUWVrQ2FwdURoaGs3eEVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQTZCSFl4UUZ0d3hDb1FPRWFCdmlzd0pRUXJrRDVLL2Rhc3RiNkQvQkEyQ1VOYnpvdU9rL3lRUHhXSC9vRmt6clA5RUR5MkNiRGFXbTdqLzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFMNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBQUVUUlpqK0pCQUFBQUNBazhHUS9rQVNiQTVnRW4rbk56SWVYQWFBRThNdWZzUlNvQklDdXpiNFV1QVNRNHEwTndBU0FyczIrRk1rRUFBQUFBQUNrY3ovaEJBQUFBQUFBcEhNLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQ2d0OVJtUDZFRkFBQUFBQUFBOEQrcEJRQUFBS0JkLy9BL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkEuk3BTfoZjAYKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAPA/ChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQ0NzUxOTE2MjY1ChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJtNA2qPNHL0EKFAoOc2hvcF9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJz14LtS92zD8KGgoNdHJhZmZpY19ib29zdBIJCc8QOfeiPc8/ChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAACwH4CAgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAADYF83WQdkl/GZoMN8xU0DpJW0VyQyn/1JA8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 44751916265,
"shopid": 202812301,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":4983774,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mj99p5n82e4j27\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000230,1000381,1668726,1002164,1011692,1000544,1000109,2018618,2153644,1400095067,1718072935,1400285005,1428713,1718087960,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2213652,1400285055,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":3681,\"model_id\":330182600772,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":4983774,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mj99p5n82e4j27\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1000230,1000381,1668726,1002164,1011692,1000544,1000109,2018618,2153644,1400095067,1718072935,1400285005,1428713,1718087960,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2213652,1400285055,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":3681,\"model_id\":330182600772,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EJr1jrkCGIbn4NMBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMUJ0L2VUdDQ1cjhGd05wcmRLYnVZNUVtWHVHc3hIZE5iUHVLQmJZd0tsbnVHVmY0QnUxdHdldWpWMFBobDBsZ3V3K0I4VGc1WWpuSDZmdWhidkJjblRRbmZQQkRvWXFKUWt3TlY0eUpwY3BFQUNhSlpUYjZSNE5wRHBOTDBPYXlkcUpYdC94WDB3K1prdS90Vk0wTzJTZTNMZm1iRDJQN1RuUE5nQ3Vtbko5a1l3aVJGTmgrcEVrK2t6QzVKYkVxMDdKV2JGa09KYmM4UEdHMThiMGNiZFo1akZ1cW5yUEFUNUlnd241bjNSVG9vVVBhd3NWbmRzNTZFbWg5RTBNOUtIb1dHd24zVU5iSXhFOWY5K2NEWjQ1VDJBSnJYNGlLVFRsU1BwL1VVK2o4OG5YR2YzSE91RTdyaXpnK2p2cE9ockxaOVdmSU91djNqZlpPZnJIWnFrUFpzdm1QbmRIZGhCbjFhSGFpMnBNMWEvVlZKa0FCZHg5dmRYa0NLbDZIWkhYUHdEYVlOcDY4Y0QyU0wxSHBBZmdsRnBjdG5jNDFjN3Q4L1l3NXQ3U2UwWHM5c2o2a3hZWGo3a29sdXQxRnpzN0g3RHFiaHhMWnBHcnIvWTZXYmZjeHZaVnBJVUJubEQzbnRjb2JDNUNyVmdoRVJWUGFKRkYzRzByY3hXcHRRPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACkcz95+n5qvHSTej+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHAmev48gbpAQAAAOCVJfE/8QEAAAAAaGjwP8gMD+AMAekMAAAAwP54qT+JDXsUrkfhepQ/kQ0AACE1EkgvQaENAAAA5K17qUG5DTbrdGnnMVNA+A2AgMGAzwewDv2jioUB4g4Mqo0Gx40G1Y4G8JAGuQ8v3SQGgU19P8EPSXFWkNs5AT/IDw/iGawLRXBvQk15NHhNakF3TXpVMU1UVTFPVGd4TXpjMkxDMHhMQzB4TEMweExDMHhMRE11TVRVeE5UVXhNREkxT0RVMk56QTBPQ3d4TERBdU16SXlPVEExT0RrM01UVTRPVFEzTml3d0xqa3NNQzQzTlRRM016VTFNVEEzTlRFek1USTBMREF1TXpnNE9EYzRORFl4TlRVMk5ESXhOalFzTUM0d01qa3hOREkwTWpZM05qQTRPVEV5T0N3MExqUXdNVGs1TlRVMU9URTVNelEzTnl3dE1SMktNNUZNSVBHdDkyVXRxYTVIUURVQUFJQS9PUmFjYzhXT0J3aENRYmFtT2NtTmVrdENTaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaWMrdUVFRVFBQUFBQUFBQUFBU2c0SXEvT1dBeEVBQUFBQUFBQUFBRklRQ0lDQWdJQ0FCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZvSkNJQ0FnSUNBQkJBQVdnY0lxdk9XQXhBQVdnY0lyUE9XQXhBQVdnY0lxL09XQXhBQVloQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVlnNElxdk9XQXhFQUFBQUFBQUR3UDJJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFhZXdvcFJSZmpTN0JjUUFBQUFDOXZXby9lUUFBQUlDRHcxWS9nUUVBQUFBQVBUTE1RWWtCQUFBQW9Ob2d0RUdSQVFBQUFDaFZJZE5CbVFFQUFBQkFBUUxRUWFFQkFBQUFZRm9zdTBHcEFRQUFBTmdYemRaQjZBRUJnQUtVQTRvQ1BqQXVNREF5TnpnM0xERXVNREF3TURBd0xERXVNRFl5TXpRMUxERXVNalV3TURBd0xERXVNekF3TURBd0xERXVOREF3TURBd0xERXVOVEF3TURBd21RS2cxbDFpWURZSlFLRUNBQUFBMkJmTjFrRzVBbDhJT2UvLzQrRS93UUxzS0tVVVg0MHV3Y29DQ3dnQkVUcUJNcmhDY1NUQnlnSUxDQUlSN0NpbEZGK05Mc0haQWdDMHJvMldvTGhCNFFLZ2JxTGpnSUtpUWVrQ2FwdURoaGs3eEVHS0F6QUFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RCtaQTZCSFl4UUZ0d3hDb1FPRWFCdmlzd0pRUXJrRDVLL2Rhc3RiNkQvQkEyQ1VOYnpvdU9rL3lRUHhXSC9vRmt6clA5RUR5MkNiRGFXbTdqLzZBd2tLQlVselRsQkNFQUQ2QXdzS0IxSnZhVlJwWlhJUUEvb0REUW9KVDNKa1pYSlVhV1Z5RUFMNkF4RUtEVWwwWlcxUWNtbGpaVlJwWlhJUUE0RUVBQUFBQUVUUlpqK0pCQUFBQUNBazhHUS9rQVNiQTVnRW4rbk56SWVYQWFBRThNdWZzUlNvQklDdXpiNFV1QVNRNHEwTndBU0FyczIrRk1rRUFBQUFBQUNrY3ovaEJBQUFBQUFBcEhNLzZRUUFBQUFBQUFEd1AvRUVBQUFBQUFBQThELzVCQUFBQUFBQUFQQS9nUVVBQUFBQUFBRHdQNGtGQUFBQUFBQUE4RCtSQlFBQUFBQUFBUEEvbVFVQUFBQ2d0OVJtUDZFRkFBQUFBQUFBOEQrcEJRQUFBS0JkLy9BL3NRVUFBQUFBQUFEMFA3a0ZBQUFBd016TTlEL0JCUUFBQUdCbVp2WS95UVVBQUFBQUFBRDRQdz096hkEuk3BTfoZjAYKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAPA/ChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzQ0NzUxOTE2MjY1ChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoSCgx2b3VjaGVyX2xlbnMSAhAACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJtNA2qPNHL0EKFAoOc2hvcF9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJz14LtS92zD8KGgoNdHJhZmZpY19ib29zdBIJCc8QOfeiPc8/ChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAACwH4CAgICAgICogAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAADYF83WQdkl/GZoMN8xU0DpJW0VyQyn/1JA8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44751916265",
"debug_info": null
},
{
"item_basic": {
"itemid": 16594279250,
"shopid": 297026995,
"name": "KIPAS PENDINGIN MINI AC PORTABLE AIR COLLER MOBIL DAN RUANGAN /AC",
"label_ids": [
844931064601283,
844931086908638,
700190087,
1015914,
1400285055,
1000031,
1718087960,
1428713,
1718093079,
1049116,
1049117,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
2018619,
2023641,
298893311,
700830032,
298933384,
299103323
],
"image": "id-11134201-7qul2-lfw4b581trs812",
"images": [
"id-11134201-7qul2-lfw4b581trs812",
"id-11134201-7qul4-lfw4bhj5tbst7e",
"id-11134201-7quky-lfw4bhhrvd0u2d",
"id-11134207-7qul7-lfoz8nizmime20",
"id-11134207-7qul6-lfoz8myqg57u00",
"id-11134207-7qul7-lfoz8n0edpvx2a",
"id-11134207-7qul7-lfoz8n3g9942bd",
"id-11134201-7qul3-lfw4bhhrvd2g61",
"id-11134201-7qul4-lfw4bhk9rpgu55"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1681706655,
"sold": 61,
"historical_sold": 1000,
"liked": false,
"liked_count": 588,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 702,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 6900000000,
"price_min": 6900000000,
"price_max": 6900000000,
"price_min_before_discount": 19000000000,
"price_max_before_discount": 19000000000,
"hidden_price_display": null,
"price_before_discount": 19000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-64%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "c67d5710af194dfca3b5a4af47789c3b",
"thumb_url": "b343caadaab472a81445666360c53392",
"duration": 55,
"version": 2,
"vid": "id-11110107-6jt79-lfw3rcws7la71b",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6jt79-lfw3rcws7la71b.16000081682137675.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6jt79-lfw3rcws7la71b.16000081682137675.mp4",
"width": 288,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6jt79-lfw3rcws7la71b.default.mp4",
"width": 288,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.627906976744186,
"rating_count": [
731,
20,
16,
20,
104,
571
],
"rcount_with_context": 141,
"rcount_with_image": 89
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228055897620480,
"price": 6900000000,
"strikethrough_price": 19000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-64%",
"model_id": 204221834117,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 19000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 61,
"local_monthly_sold_count_text": "61",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Semangat_Terus",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 340667923,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT19nBAYnD13ez+y6KXs6u0ta8/pg/+6SnehzTyRroUAg5QUJw2m9whlwpXGAxmB0QbtA00DFFwwRqfBT62FLr+uxTN0X+m1HdIcRLhC5oofY6il3EFyLR9M7lRwAcbw3BRM09RVNnl5FW9Mv/UedcBIj6lHbTBCZLkTmJ5BdDl1MNlS4ZGP8GT9IFx7VgONTof8VId83DKznTG3mzUmH1YE6KgswDcJ9lhCqkZjBGfHvYYgw62HQnBpKaoNE14nIyESEJ+FlOmpWkMOa4MDLWu8ZT9SZqZVZpwUvM8evIldQ8CMz14DWYaIYYBXB9jhFvKahm9jISC+77rB42KFmyzUGVTDNFeLzZuR7cCdFwQA3wVbDY++Eb0XrhoV4x3bxRUfTgh1+n4NNB/UjNVMOzf2hYF+8X9/+9rSgNl5A0vd+b6BF42Nwi8/XQKsaxJN0es9z+pIG8DpAdBOznULh3Z+7ts3gz6XQYERaV1CcLNJFNWhtMuDgjTQqlwnXsMc2zA==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EJPcuKIBGLm56YcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMTluQkFZbkQxM2V6K3k2S1hzNnUwdGE4L3BnLys2U25laHpUeVJyb1VBZzVRVUp3Mm05d2hsd3BYR0F4bUIwUWJ0QTAwREZGd3dScWZCVDYyRkxyK3V4VE4wWCttMUhkSWNSTGhDNW9vZlk2aWwzRUZ5TFI5TTdsUndBY2J3M0JSTTA5UlZObmw1Rlc5TXYvVWVkY0JJajZsSGJUQkNaTGtUbUo1QmREbDFNTmxTNFpHUDhHVDlJRng3VmdPTlRvZjhWSWQ4M0RLem5URzNtelVtSDFZRTZLZ3N3RGNKOWxoQ3FrWmpCR2ZIdllZZ3c2MkhRbkJwS2FvTkUxNG5JeUVTRUorRmxPbXBXa01PYTRNRExXdThaVDlTWnFaVlpwd1V2TThldklsZFE4Q016MTREV1lhSVlZQlhCOWpoRnZLYWhtOWpJU0MrNzdyQjQyS0ZteXpVR1ZURE5GZUx6WnVSN2NDZEZ3UUEzd1ZiRFkrK0ViMFhyaG9WNHgzYnhSVWZUZ2gxK240Tk5CL1VqTlZNT3pmMmhZRis4WDkvKzlyU2dObDVBMHZkK2I2QkY0Mk53aTgvWFFLc2F4Sk4wZXM5eitwSUc4RHBBZEJPem5VTGgzWis3dHMzZ3o2WFFZRVJhVjFDY0xOSkZOV2h0TXVEZ2pUUXFsd25Yc01jMnpBPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACkeD95GARWDi3SeT+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AGi97yrCekBAAAA4CmV9T/xAQAAAGC7L/8/yAwP4AwB6QwAAADgiZ3IP4kNexSuR+F6lD+RDQAAUJvG99dAoQ0AAACAViBPQbkN/GZoMN8xU0D4DYCcvIgYsA731+cK4g4Mqo0Gx40G1Y4G8pAGuQ+oxks3iXF4P8EPSXFWkNs5AT/IDxDiGZALRW84Qk1DNHpPVGt5TURBNE1qZzVNekUzTmpBMExDMHhMQzB4TEMweExDMHhMREF1TkRBek1qTXpNVFl3TlRNM01UTXhOeXd4TERBdU1EYzJNekExT0RJeE1qTTBOVGd3Tnl3d0xqa3NNQzQxTURFNE5UVXdPRGd3TWprMk9UUTVMREV1TURBd01ERXlNeXczT0M0d05Ea3lOamt4TnpFeU5qRTROeXd3TGpZMU5qWXhPREEyTWpVeE9UYzNORElzTFRFZEtVVXRTeUNzZ2ZrQkxRMWt6RDQxQUFDQVB6bnJ1N1dXdmpMZ1FVSFBMVGRQbGFNRFFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpcTg1WURFQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUdJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AzRUFBQUNBdTNwMFAza0FBQURBNE1JNFA0RUJBQUFBNE9mNWcwR0pBUUFBQU1BNUxEeEJrUUVBQUFDdVNkdUVRWmtCQUFBQTRNWDNpa0doQVFBQUFLQkFCRU5CcVFFQUFBRHFDU2lNUWVnQkFZQUNsQU9LQWo0d0xqQXdNelV4T1N3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSXlPRGd3Tml3eExqSTRNak0xTkN3eExqTXhNamM0Tml3eExqTXhNamM0TnBrQ1Y5eEtkWkxPMlQraEFnQUFBT29KS0l4QnVRTDZRc2g1L3gvWVA4RUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUpBSWhmaVV4cDdRZUVDZ09aeStSSjVNMEhwQXQrZjdzVi9OWU5CaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUU1NM0psTk5UbmhRYUVERy80UVdpanVCMEs1QTRreGVCb0Y3K2svd1FOYUVpZm5Sd1hyUDhrRG5Cb1JnMVV2N0QvUkEvSEdjaDFxZ2U0LytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFMNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFLQkJBQUFBT0JETlhJL2lRUUFBQUNnVjlkd1A1QUVtd09ZQlBxUGlhNlNES0FFOHE3VHBRZW9CSUR5aTZnSnVBU093N2lDQXNBRWdQS0xxQW5KQkFBQUFBQUFwSGcvNFFRQUFBQUFBS1I0UCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlQelNiRCtoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUFBRENwOHorNUJRQUFBRUNGaFBRL3dRVUFBQUJnS3dIMVA4a0ZBQUFBWUNzQjlUOD3qGQS3TcFN+hmMBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJQtC9enQKT0EKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK+wEKE2VuZ2luZWVyaW5nX21ldHJpY3MS4wEi4AF7ImFwaTBfbGF0ZW5jeV9tcyI6NTcsImFwaTFfbGF0ZW5jeV9tcyI6MzcsImFwaTJfbGF0ZW5jeV9tcyI6NjMsImFwaTNfbGF0ZW5jeV9tcyI6MiwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjozMywiYXBpMF9hZHNfY291bnQiOjI4MiwiYXBpMV9hZHNfY291bnQiOjE1MTIsImFwaTJfYWRzX2NvdW50IjozMDYsImFwaTNfYWRzX2NvdW50Ijo4fQogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMTY1OTQyNzkyNTAKDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCf1oA/Hs5tdACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZ7Afz4KAgICAgCjIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAADqCSiMQdklPzAB6LoxU0DpJZT+J1ND/lJA8iUGU0VBUkNI",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000,
4
]
},
"itemid": 16594279250,
"shopid": 297026995,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":4079789,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul2-lfw4b581trs812\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,844931086908638,700190087,1015914,1400285055,1000031,1718087960,1428713,1718093079,1049116,1049117,822059908662278,825465608499232,825465608497696,837860934119952,2018619,2023641,298893311,700830032,298933384,299103323],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":2030,\"model_id\":204221834117,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":4079789,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul2-lfw4b581trs812\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,844931086908638,700190087,1015914,1400285055,1000031,1718087960,1428713,1718093079,1049116,1049117,822059908662278,825465608499232,825465608497696,837860934119952,2018619,2023641,298893311,700830032,298933384,299103323],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":2030,\"model_id\":204221834117,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EJPcuKIBGLm56YcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUMTluQkFZbkQxM2V6K3k2S1hzNnUwdGE4L3BnLys2U25laHpUeVJyb1VBZzVRVUp3Mm05d2hsd3BYR0F4bUIwUWJ0QTAwREZGd3dScWZCVDYyRkxyK3V4VE4wWCttMUhkSWNSTGhDNW9vZlk2aWwzRUZ5TFI5TTdsUndBY2J3M0JSTTA5UlZObmw1Rlc5TXYvVWVkY0JJajZsSGJUQkNaTGtUbUo1QmREbDFNTmxTNFpHUDhHVDlJRng3VmdPTlRvZjhWSWQ4M0RLem5URzNtelVtSDFZRTZLZ3N3RGNKOWxoQ3FrWmpCR2ZIdllZZ3c2MkhRbkJwS2FvTkUxNG5JeUVTRUorRmxPbXBXa01PYTRNRExXdThaVDlTWnFaVlpwd1V2TThldklsZFE4Q016MTREV1lhSVlZQlhCOWpoRnZLYWhtOWpJU0MrNzdyQjQyS0ZteXpVR1ZURE5GZUx6WnVSN2NDZEZ3UUEzd1ZiRFkrK0ViMFhyaG9WNHgzYnhSVWZUZ2gxK240Tk5CL1VqTlZNT3pmMmhZRis4WDkvKzlyU2dObDVBMHZkK2I2QkY0Mk53aTgvWFFLc2F4Sk4wZXM5eitwSUc4RHBBZEJPem5VTGgzWis3dHMzZ3o2WFFZRVJhVjFDY0xOSkZOV2h0TXVEZ2pUUXFsd25Yc01jMnpBPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAACkeD95GARWDi3SeT+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AGi97yrCekBAAAA4CmV9T/xAQAAAGC7L/8/yAwP4AwB6QwAAADgiZ3IP4kNexSuR+F6lD+RDQAAUJvG99dAoQ0AAACAViBPQbkN/GZoMN8xU0D4DYCcvIgYsA731+cK4g4Mqo0Gx40G1Y4G8pAGuQ+oxks3iXF4P8EPSXFWkNs5AT/IDxDiGZALRW84Qk1DNHpPVGt5TURBNE1qZzVNekUzTmpBMExDMHhMQzB4TEMweExDMHhMREF1TkRBek1qTXpNVFl3TlRNM01UTXhOeXd4TERBdU1EYzJNekExT0RJeE1qTTBOVGd3Tnl3d0xqa3NNQzQxTURFNE5UVXdPRGd3TWprMk9UUTVMREV1TURBd01ERXlNeXczT0M0d05Ea3lOamt4TnpFeU5qRTROeXd3TGpZMU5qWXhPREEyTWpVeE9UYzNORElzTFRFZEtVVXRTeUNzZ2ZrQkxRMWt6RDQxQUFDQVB6bnJ1N1dXdmpMZ1FVSFBMVGRQbGFNRFFrb1FDSUNBZ0lDQUJCRUFBQUFBQUFBQUFFb09DS3J6bGdNUkFBQUFBQUFBQUFCS0RnaXM4NVlERVFBQUFBQUFBQUFBU2c0SW5QcmhCQkVBQUFBQUFBQUFBRW9PQ0t2emxnTVJBQUFBQUFBQUFBQlNFQWlBZ0lDQWdBUVJBQUFBQUFBQUFBQlNEZ2lxODVZREVRQUFBQUFBQUFBQVVnNElyUE9XQXhFQUFBQUFBQUFBQUZJT0NLdnpsZ01SQUFBQUFBQUFBQUJhQndpcTg1WURFQUJhQndpczg1WURFQUJhQndpcjg1WURFQUJhQ1FpQWdJQ0FnQVFRQUdJT0NLenpsZ01SQUFBQUFBQUFBQUJpRGdpcjg1WURFUUFBQUFBQUFBQUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AzRUFBQUNBdTNwMFAza0FBQURBNE1JNFA0RUJBQUFBNE9mNWcwR0pBUUFBQU1BNUxEeEJrUUVBQUFDdVNkdUVRWmtCQUFBQTRNWDNpa0doQVFBQUFLQkFCRU5CcVFFQUFBRHFDU2lNUWVnQkFZQUNsQU9LQWo0d0xqQXdNelV4T1N3eExqQXdNREF3TUN3eExqQXdNREF3TUN3eExqSXlPRGd3Tml3eExqSTRNak0xTkN3eExqTXhNamM0Tml3eExqTXhNamM0TnBrQ1Y5eEtkWkxPMlQraEFnQUFBT29KS0l4QnVRTDZRc2g1L3gvWVA4RUNBQUFBQUFBQUFJREtBZ3NJQVJFQUFBQUFBQUFBQU1vQ0N3Z0NFUUFBQUFBQUFBQ0EyUUpBSWhmaVV4cDdRZUVDZ09aeStSSjVNMEhwQXQrZjdzVi9OWU5CaWdNd0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvQUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9tUU1NM0psTk5UbmhRYUVERy80UVdpanVCMEs1QTRreGVCb0Y3K2svd1FOYUVpZm5Sd1hyUDhrRG5Cb1JnMVV2N0QvUkEvSEdjaDFxZ2U0LytnTUpDZ1ZKYzA1UVFoQUErZ01MQ2dkU2IybFVhV1Z5RUFMNkF3MEtDVTl5WkdWeVZHbGxjaEFEK2dNUkNnMUpkR1Z0VUhKcFkyVlVhV1Z5RUFLQkJBQUFBT0JETlhJL2lRUUFBQUNnVjlkd1A1QUVtd09ZQlBxUGlhNlNES0FFOHE3VHBRZW9CSUR5aTZnSnVBU093N2lDQXNBRWdQS0xxQW5KQkFBQUFBQUFwSGcvNFFRQUFBQUFBS1I0UCtrRUFBQUFBQUFBOEQveEJBQUFBQUFBQVBBLytRUUFBQUFBQUFEd1A0RUZBQUFBQUFBQThEK0pCUUFBQUFBQUFQQS9rUVVBQUFBQUFBRHdQNWtGQUFBQUlQelNiRCtoQlFBQUFBQUFBUEEvcVFVQUFBQUFBQUR3UDdFRkFBQUFBRENwOHorNUJRQUFBRUNGaFBRL3dRVUFBQUJnS3dIMVA4a0ZBQUFBWUNzQjlUOD3qGQS3TcFN+hmMBgogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJQtC9enQKT0EKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAK+wEKE2VuZ2luZWVyaW5nX21ldHJpY3MS4wEi4AF7ImFwaTBfbGF0ZW5jeV9tcyI6NTcsImFwaTFfbGF0ZW5jeV9tcyI6MzcsImFwaTJfbGF0ZW5jeV9tcyI6NjMsImFwaTNfbGF0ZW5jeV9tcyI6MiwicmV0cmlldmFsX2xhdGVuY3lfbXMiOjE0LCJvbmxpbmVfYmlkZGluZ19sYXRlbmN5X21zIjozMywiYXBpMF9hZHNfY291bnQiOjI4MiwiYXBpMV9hZHNfY291bnQiOjE1MTIsImFwaTJfYWRzX2NvdW50IjozMDYsImFwaTNfYWRzX2NvdW50Ijo4fQogChNpZHhfcm9pX3VwcGVyX2JvdW5kEgkJAAAAAAAAAAAKIgoPdnNrdV91bmlxdWVfa2V5Eg8iDTBfMTY1OTQyNzkyNTAKDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChkKEHJlY2FsbF9xdWV1ZV9pZHMSBSIDb3JnChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKEgoMdm91Y2hlcl9sZW5zEgIQAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCf1oA/Hs5tdACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAAChQKDnNob3BfYmxhY2tsaXN0EgIoAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZ7Afz4KAgICAgCjIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySUAAADqCSiMQdklPzAB6LoxU0DpJZT+J1ND/lJA8iUGU0VBUkNI",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_16594279250",
"debug_info": null
},
{
"item_basic": {
"itemid": 48154060930,
"shopid": 28505754,
"name": "AC LG K05NSA UIN 1/2 PK UNIT ONLY ORGINAL 100% GARANSI RESMI",
"label_ids": [
2018619,
47,
2068629,
2023641,
1000167,
298938357,
1428713,
1718087960,
844931064601283,
844931086908638,
1400066568,
298463379,
1049112,
700005512,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1718596,
298488495,
1015914,
700190087,
2213765,
2098628,
298468389,
298938368,
1718088045,
2098629
],
"image": "id-11134207-8224x-mizr9qp64q9w37",
"images": [
"id-11134207-8224x-mizr9qp64q9w37",
"id-11134207-8224w-mizukv3nknpf5e",
"id-11134207-8224y-mizr9qp664uca7",
"id-11134207-8224r-mizr9qp67jes07",
"id-11134207-8224x-mizukv3oe5mvaf"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767355947,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 11,
"view_count": null,
"catid": 100010,
"brand": "LG",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 299900000000,
"price_min": 299900000000,
"price_max": 299900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven9-mizump8k4l4y8e.16000041767354817.mp4",
"thumb_url": "id-11110105-6ven9-mizump8k4l4y8e_cover",
"duration": 23,
"version": 2,
"vid": "id-11110105-6ven9-mizump8k4l4y8e",
"formats": [
{
"format": 1600004,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven9-mizump8k4l4y8e.16000041767354817.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mizump8k4l4y8e.16000041767354817.mp4",
"width": 360,
"height": 646
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mizump8k4l4y8e.default.mp4",
"width": 464,
"height": 832
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp999RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 299900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425383753963,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 299900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp999RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "123surya",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 673532289,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT86YfDw4In2fThR5bD+9T4ZixMcsFBLVvFBSCAFAhMR8nIJAeMpWHGHxPqdw1A9iSXQz8/iC9Ad4N9zsoiGjipJAqhnP8+evYfW3Pvq9ecHXSEVLbo1t3G0CHmF5/xeW+ZwH+OjuL81VkSUbfn8N5pmmYqInden5m8CZfr+4Rf5rfQLiwKibJPcigGRYRAQA/MyCtWMZaKyHdsHnXjWUp27bxXCsJXizeqnrpeNy6WGUQzpsVnd0kGhkPjfOK5eY5wiaR4JHLuoKghb4oE/hxCd2YeOGMX2RT0ZbxsxXShq8RMBBsEjWhGEE277R1EZ+uiVPMMhwBgeEhlhPZKpoT3Z9Z7uQl02C2VpvJfJ2FFZN0lfGc9n66C3LFHwumnj5qyGt1JuDh2QeqK5WiIzy2gndPSfammwHefm/oXEzC6NCOgLGKx7vCYA0yYWS+jq0JO5/BDL9RvNRBfS59uUDhbJy4z4R0hUoGKPdns5mTU0KsvrbYtkNaTOXBAm1csIhtQ==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EIGTlcECGMT0iNcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUODZZZkR3NEluMmZUaFI1YkQrOVQ0Wml4TWNzRkJMVnZGQlNDQUZBaE1SOG5JSkFlTXBXSEdIeFBxZHcxQTlpU1hRejgvaUM5QWQ0Tjl6c29pR2ppcEpBcWhuUDgrZXZZZlczUHZxOWVjSFhTRVZMYm8xdDNHMENIbUY1L3hlVytad0grT2p1TDgxVmtTVWJmbjhONXBtbVlxSW5kZW41bThDWmZyKzRSZjVyZlFMaXdLaWJKUGNpZ0dSWVJBUUEvTXlDdFdNWmFLeUhkc0huWGpXVXAyN2J4WENzSlhpemVxbnJwZU55NldHVVF6cHNWbmQwa0doa1BqZk9LNWVZNXdpYVI0SkhMdW9LZ2hiNG9FL2h4Q2QyWWVPR01YMlJUMFpieHN4WFNocThSTUJCc0VqV2hHRUUyNzdSMUVaK3VpVlBNTWh3QmdlRWhsaFBaS3BvVDNaOVo3dVFsMDJDMlZwdkpmSjJGRlpOMGxmR2M5bjY2QzNMRkh3dW1uajVxeUd0MUp1RGgyUWVxSzVXaUl6eTJnbmRQU2ZhbW13SGVmbS9vWEV6QzZOQ09nTEdLeDd2Q1lBMHlZV1MranEwSk81L0JETDlSdk5SQmZTNTl1VURoYkp5NHo0UjBoVW9HS1BkbnM1bVRVMEtzdnJiWXRrTmFUT1hCQW0xY3NJaHRRPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADAZD95mpmZmZklMT+CAQlhYyB3aW5kb3eQAa67ncsG4AHD/aWApAHpAQAAAOCVJfE/8QEAAABADfzwP8gMD+AMAekMAAAAQNDcqj+JDXsUrkfhepQ/kQ0AAAD3U73aQKENAAAAQFOeZEG5DT8wAei6MVNA+A2AgLyb3QiwDtfx56AB4g4Mqo0Gx40G1Y4G8JAGuQ/Idr6fGp9ZP8EPSXFWkNs5AT/IDxGgEALiGYALRW9VQk15NHdNamswTEMweExDMHhMQzB4TEMweExETXVNRFl3TURBd01EQXdNREF3TURBeE5Dd3hMREF1TURFeE5URTVNVGsxTnpneU1EazFOVGtzTFRFc01DNDNOVFk1TVRjME1qTTRPREExTVRNekxERXVNREF3TURFeU15d3hOamd4TGpZNU1UazBOekkwTWpVM05qWXNNQzR5TURZek16YzJPRGN5TmpFeU9Ea3hNaXd0TVIyNnkxbEtJSm5sa3dVdHNlRkJRRFVBQUlBL1NoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NNQ0g0Z1FSQUFBQUFBQUFBQUJLRGdpRWd1SUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWc0SWhJTGlCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NKejY0UVFSQUFBQUFBQUFBQUJTRGdqQWgrSUVFUUFBQUFBQUFBQUFXZ2NJblByaEJCQUFXZ2NJd0lmaUJCQUFXZ2NJaElMaUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpYyt1RUVFUUFBQUFBQUFBQUFZZzRJd0lmaUJCRUFBQUFBQUFBQUFHSU9DSVNDNGdRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBNE1TcEl6OTVBQUFBd0ZRRzZUNkJBUUFBQUFEVndZZEJpUUVBQUFBZ3FnUWhRWkVCQUFDQXFPY0ZpRUdaQVFBQUFLQThDWkJCb1FFQUFBQkFmL2ttUWFrQkFBQ0FuaTgza0VHS0FqNHdMakF3TURFMU1Dd3hMakF3TURBd01Dd3hMakEyTkRFMk5Dd3hMakkxTURBd01Dd3hMakk1T1RJeE55d3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NmaFN1UitGNkNFQ2hBZ0FBZ0o0dk41QkJ1UUkyZFI0Vi8vZmlQOEVDQUFBQUFBQUFBSURLQWdzSUFSRUFBQUFBQUFBQUFNb0NDd2dDRVFBQUFBQUFBQUNBMlFJQUZMdDN1N0p0UWVFQ0FGdWwvbHREREVIcEFsZENNVis3UkhaQnVRT3RtU1hCNkpIb1A4RURndGZPUWVMSDZUL0pBNXF2b0UrSmNPcy8wUU9temFSQi9ZdnZQNEVFQUFBQW9DUGhJRCtKQkFBQUFBQzJSeDQva0FTYkE1Z0VpcUt3akpQN0FxQUV0OWVPN0J5b0JJQ280c2FsQXJnRXpxZUJ0MGZBQklYL2o2Tmt5UVFBQUFBQUFNQmtQK0VFQUFBQUFBREFaRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUFDL3BpTS9vUVVBQUFBQUFBRHdQNmtGQUFBQW9OQUc4VCt4QlFBQUFBQUFBUFEvdVFVQUFBQWdtTW4wUDhFRkFBQUFZR1ptOWovSkJRQUFBQUFBQVBnL+oZAgsW8hkCzQj6GZoGCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQlEuYHT9JhkQQoaCg10cmFmZmljX2Jvb3N0EgkJ/LP81UG9vz8KFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigBChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF80ODE1NDA2MDkzMAoaCg1iaXpfcXVldWVfaWRzEgkiB2FkcyxvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQlEPEyCXbbaQAojChByZWNhbGxfcXVldWVfaWRzEg8iDTYxMTAxMDEwNCxvcmegHwOwH4CAgIDggIUkyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklAACAni83kEHZJWQa7umrMVNA6SUAxbwyJ/hSQPIlBlNFQVJDSA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 48154060930,
"shopid": 28505754,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":10810010,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mizr9qp64q9w37\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,47,2068629,2023641,1000167,298938357,1428713,1718087960,844931064601283,844931086908638,1400066568,298463379,1049112,700005512,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,1015914,700190087,2213765,2098628,298468389,298938368,1718088045,2098629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":1856,\"model_id\":425383753963,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:20 match_weight:1 loss_weight:1 extra_info:\\\"CaimXmffAM2/EWAaL7pFpaG/GUOBxXT3rKY/IfKK5+mlEC9A\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3424674154262910\",\"rule_id\":\"569568\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":10810010,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mizr9qp64q9w37\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,47,2068629,2023641,1000167,298938357,1428713,1718087960,844931064601283,844931086908638,1400066568,298463379,1049112,700005512,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,1015914,700190087,2213765,2098628,298468389,298938368,1718088045,2098629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":1856,\"model_id\":425383753963,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:20 match_weight:1 loss_weight:1 extra_info:\\\"CaimXmffAM2/EWAaL7pFpaG/GUOBxXT3rKY/IfKK5+mlEC9A\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3424674154262910\",\"rule_id\":\"569568\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EIGTlcECGMT0iNcBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUODZZZkR3NEluMmZUaFI1YkQrOVQ0Wml4TWNzRkJMVnZGQlNDQUZBaE1SOG5JSkFlTXBXSEdIeFBxZHcxQTlpU1hRejgvaUM5QWQ0Tjl6c29pR2ppcEpBcWhuUDgrZXZZZlczUHZxOWVjSFhTRVZMYm8xdDNHMENIbUY1L3hlVytad0grT2p1TDgxVmtTVWJmbjhONXBtbVlxSW5kZW41bThDWmZyKzRSZjVyZlFMaXdLaWJKUGNpZ0dSWVJBUUEvTXlDdFdNWmFLeUhkc0huWGpXVXAyN2J4WENzSlhpemVxbnJwZU55NldHVVF6cHNWbmQwa0doa1BqZk9LNWVZNXdpYVI0SkhMdW9LZ2hiNG9FL2h4Q2QyWWVPR01YMlJUMFpieHN4WFNocThSTUJCc0VqV2hHRUUyNzdSMUVaK3VpVlBNTWh3QmdlRWhsaFBaS3BvVDNaOVo3dVFsMDJDMlZwdkpmSjJGRlpOMGxmR2M5bjY2QzNMRkh3dW1uajVxeUd0MUp1RGgyUWVxSzVXaUl6eTJnbmRQU2ZhbW13SGVmbS9vWEV6QzZOQ09nTEdLeDd2Q1lBMHlZV1MranEwSk81L0JETDlSdk5SQmZTNTl1VURoYkp5NHo0UjBoVW9HS1BkbnM1bVRVMEtzdnJiWXRrTmFUT1hCQW0xY3NJaHRRPT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADAZD95mpmZmZklMT+CAQlhYyB3aW5kb3eQAa67ncsG4AHD/aWApAHpAQAAAOCVJfE/8QEAAABADfzwP8gMD+AMAekMAAAAQNDcqj+JDXsUrkfhepQ/kQ0AAAD3U73aQKENAAAAQFOeZEG5DT8wAei6MVNA+A2AgLyb3QiwDtfx56AB4g4Mqo0Gx40G1Y4G8JAGuQ/Idr6fGp9ZP8EPSXFWkNs5AT/IDxGgEALiGYALRW9VQk15NHdNamswTEMweExDMHhMQzB4TEMweExETXVNRFl3TURBd01EQXdNREF3TURBeE5Dd3hMREF1TURFeE5URTVNVGsxTnpneU1EazFOVGtzTFRFc01DNDNOVFk1TVRjME1qTTRPREExTVRNekxERXVNREF3TURFeU15d3hOamd4TGpZNU1UazBOekkwTWpVM05qWXNNQzR5TURZek16YzJPRGN5TmpFeU9Ea3hNaXd0TVIyNnkxbEtJSm5sa3dVdHNlRkJRRFVBQUlBL1NoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNEluUHJoQkJFQUFBQUFBQUFBQUVvT0NNQ0g0Z1FSQUFBQUFBQUFBQUJLRGdpRWd1SUVFUUFBQUFBQUFBQUFTZzRJcXZPV0F4RUFBQUFBQUFBQUFFb09DS3p6bGdNUkFBQUFBQUFBQUFCS0RnaXI4NVlERVFBQUFBQUFBQUFBVWc0SWhJTGlCQkVBQUFBQUFBQUFBRklPQ0tyemxnTVJBQUFBQUFBQUFBQlNEZ2lzODVZREVRQUFBQUFBQUFBQVVnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NKejY0UVFSQUFBQUFBQUFBQUJTRGdqQWgrSUVFUUFBQUFBQUFBQUFXZ2NJblByaEJCQUFXZ2NJd0lmaUJCQUFXZ2NJaElMaUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJpRUFpQWdJQ0FnQVFSQUFBQUFBQUFBQUJpRGdpYyt1RUVFUUFBQUFBQUFBQUFZZzRJd0lmaUJCRUFBQUFBQUFBQUFHSU9DSVNDNGdRUkFBQUFBQUFBQUFCaURnaXE4NVlERVFBQUFBQUFBUEEvWWc0SXJQT1dBeEVBQUFBQUFBQUFBR0lPQ0t2emxnTVJBQUFBQUFBQUFBQnhBQUFBNE1TcEl6OTVBQUFBd0ZRRzZUNkJBUUFBQUFEVndZZEJpUUVBQUFBZ3FnUWhRWkVCQUFDQXFPY0ZpRUdaQVFBQUFLQThDWkJCb1FFQUFBQkFmL2ttUWFrQkFBQ0FuaTgza0VHS0FqNHdMakF3TURFMU1Dd3hMakF3TURBd01Dd3hMakEyTkRFMk5Dd3hMakkxTURBd01Dd3hMakk1T1RJeE55d3hMalF3TURBd01Dd3hMalV3TURBd01Ka0NmaFN1UitGNkNFQ2hBZ0FBZ0o0dk41QkJ1UUkyZFI0Vi8vZmlQOEVDQUFBQUFBQUFBSURLQWdzSUFSRUFBQUFBQUFBQUFNb0NDd2dDRVFBQUFBQUFBQUNBMlFJQUZMdDN1N0p0UWVFQ0FGdWwvbHREREVIcEFsZENNVis3UkhaQnVRT3RtU1hCNkpIb1A4RURndGZPUWVMSDZUL0pBNXF2b0UrSmNPcy8wUU9temFSQi9ZdnZQNEVFQUFBQW9DUGhJRCtKQkFBQUFBQzJSeDQva0FTYkE1Z0VpcUt3akpQN0FxQUV0OWVPN0J5b0JJQ280c2FsQXJnRXpxZUJ0MGZBQklYL2o2Tmt5UVFBQUFBQUFNQmtQK0VFQUFBQUFBREFaRC9wQkFBQUFBQUFBUEEvOFFRQUFBQUFBQUR3UC9rRUFBQUFBQUFBOEQrQkJRQUFBQUFBQVBBL2lRVUFBQUFBQUFEd1A1RUZBQUFBQUFBQThEK1pCUUFBQUFDL3BpTS9vUVVBQUFBQUFBRHdQNmtGQUFBQW9OQUc4VCt4QlFBQUFBQUFBUFEvdVFVQUFBQWdtTW4wUDhFRkFBQUFZR1ptOWovSkJRQUFBQUFBQVBnL+oZAgsW8hkCzQj6GZoGCiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQlEuYHT9JhkQQoaCg10cmFmZmljX2Jvb3N0EgkJ/LP81UG9vz8KFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigBChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKEgoMdm91Y2hlcl9sZW5zEgIQAAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF80ODE1NDA2MDkzMAoaCg1iaXpfcXVldWVfaWRzEgkiB2FkcyxvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChgKEmVudHJhbmNlX2dyb3VwX2lkeBICEAEKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQlEPEyCXbbaQAojChByZWNhbGxfcXVldWVfaWRzEg8iDTYxMTAxMDEwNCxvcmegHwOwH4CAgIDggIUkyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklAACAni83kEHZJWQa7umrMVNA6SUAxbwyJ/hSQPIlBlNFQVJDSA==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48154060930",
"debug_info": null
},
{
"item_basic": {
"itemid": 5608458516,
"shopid": 202812301,
"name": "[HEMAT DAYA] CHANGHONG AC 1 PK STANDARD - CSC 09RDX4A Low Watt [INDOOR + OUTDOOR UNIT ONLY] [LOW WATT] [SLEEP MODE] [DOUBLE CORROSION PROTECTION]",
"label_ids": [
1000109,
1000230,
1000381,
1000544,
1002164,
1011692,
1400095067,
1400285005,
1000245,
1000380,
68,
1000961,
22,
1001036,
1113619,
1015914,
700190087,
844931026694327,
844931046478970,
844931064601283,
1400285055,
1,
298458335,
1668726,
1134053,
700585046,
1718072935,
1718087960,
1428713,
2018618,
1012763,
298463379,
1718093079,
2153644,
700830032,
2213652,
700005490,
1049120,
822059908662278,
834403089593352,
825465608497696,
2008656,
1718088045,
298468389
],
"image": "id-11134207-8224y-miworrj0lm9t68",
"images": [
"id-11134207-8224y-miworrj0lm9t68",
"id-11134207-8224q-mgwerqbtr7ke3d",
"id-11134207-7r98o-lvhqrwrlujyg44",
"id-11134207-7r98x-lvhqrwrluk0ie3",
"id-11134207-7r98w-lvhqrwrluk1zf4",
"id-11134207-7r98p-lvhqrwrlujzjbb",
"id-11134207-7r992-lvhqrwrlvyiw3d",
"id-11134207-7r98q-lvhqrwszsjb702",
"id-11134207-7r98t-lvhqrwrlujt56d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1574672804,
"sold": 24,
"historical_sold": 649,
"liked": false,
"liked_count": 1903,
"view_count": null,
"catid": 100010,
"brand": "Changhong",
"cmt_count": 255,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 374900000000,
"price_min": 374900000000,
"price_max": 374900000000,
"price_min_before_discount": 599900000000,
"price_max_before_discount": 599900000000,
"hidden_price_display": null,
"price_before_discount": 599900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-38%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvc-mdyfkybewc938b.16000081756372789.mp4",
"thumb_url": "id-11110105-6vdvc-mdyfkybewc938b_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6vdvc-mdyfkybewc938b",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvc-mdyfkybewc938b.16000081756372789.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvc-mdyfkybewc938b.16000081756372789.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvc-mdyfkybewc938b.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.837037037037037,
"rating_count": [
270,
5,
1,
3,
15,
246
],
"rcount_with_context": 74,
"rcount_with_image": 63
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-7r98t-lrn9f48hlc3d67",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227866059223042,
"price": 344900000000,
"strikethrough_price": 599900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1287522198765568,
"discount_text": "-38%",
"model_id": 247983314868,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1287522198765568,
"voucher_code": "CHANVOUCH",
"voucher_discount": 30000000000,
"time_info": {
"start_time": 1762943880,
"end_time": 1770741840,
"valid_duration": null
},
"groups": [],
"min_spend": 0
},
"recommended_platform_voucher_info": null,
"original_price": 599900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 649,
"rounded_local_monthly_sold_count": 24,
"local_monthly_sold_count_text": "24",
"rounded_display_sold_count": 649,
"display_sold_count_text": "649"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Changhong Home Appliance Official Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 537711538,
"campaignid": 418854133,
"distance": null,
"match_type": 1,
"ads_keyword": "ac changhong",
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT6ZVq6bRzs0CPQV+QELB0rypam8TU9snrW0E4n3y/09i/Qd4idMZDTVpVw3BUE0QjdicPSnl8gSXrS5R9jtqSaUcmkGsBBqCIQTkg2zYhyN9dN35a9TTswlmAKwK98CqwTRMTsb7wbUzX7jX4/pbRTb/URPw0gVsrJ5yXBWcvYZkfMwdypI/2ZKnVbEe1Bdn6eMDIQlFnsBB5BugXYo6qKQMRBAOEkr1fELWnsCl8V+lyCX463eBBikJsDI9xsoq7TJK5pZpF8qEYHAjatpRD40DuYg3TqLCqiU42xrBoo75lR8B4YcrM6xcN2n8esZMSgj0hlXp2I1+a4P4Yc+KvcMuH+2fvmFP4KMU+rjApsBrUqpZk8TFxt1LBi17WU/LG6xE70NdW9UIlUYdilz11IJfqQ8ZXW1TiO5Zwd+eY2rNmUZQpRSuN3Jf7NqgAvuOIg829k+Vd8ixn+WtT0GGhrld1ucAjFrcMilZQlSnTCR0qcuI5mBa0AiAORMHttQLCA==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8ELKns4ACGPXp3McBIgxhYyBjaGFuZ2hvbmcoATKYBGRXdGtWR0ZSUVVGQlFVSnpXakpHVDZaVnE2YlJ6czBDUFFWK1FFTEIwcnlwYW04VFU5c25yVzBFNG4zeS8wOWkvUWQ0aWRNWkRUVnBWdzNCVUUwUWpkaWNQU25sOGdTWHJTNVI5anRxU2FVY21rR3NCQnFDSVFUa2cyelloeU45ZE4zNWE5VFRzd2xtQUt3Szk4Q3F3VFJNVHNiN3diVXpYN2pYNC9wYlJUYi9VUlB3MGdWc3JKNXlYQldjdllaa2ZNd2R5cEkvMlpLblZiRWUxQmRuNmVNRElRbEZuc0JCNUJ1Z1hZbzZxS1FNUkJBT0VrcjFmRUxXbnNDbDhWK2x5Q1g0NjNlQkJpa0pzREk5eHNvcTdUSks1cFpwRjhxRVlIQWphdHBSRDQwRHVZZzNUcUxDcWlVNDJ4ckJvbzc1bFI4QjRZY3JNNnhjTjJuOGVzWk1TZ2owaGxYcDJJMSthNFA0WWMrS3ZjTXVIKzJmdm1GUDRLTVUrcmpBcHNCclVxcFprOFRGeHQxTEJpMTdXVS9MRzZ4RTcwTmRXOVVJbFVZZGlsejExSUpmcVE4WlhXMVRpTzVad2QrZVkyck5tVVpRcFJTdU4zSmY3TnFnQXZ1T0lnODI5aytWZDhpeG4rV3RUMEdHaHJsZDF1Y0FqRnJjTWlsWlFsU25UQ1IwcWN1STVtQmEwQWlBT1JNSHR0UUxDQT09UqMBYmZmLXNlYXJjaF9pZF9zZzEyXzEwLjE0OS40Ny44MV97YjExYmEzYWY0ODU1N2QyMmY0ZWNlMTRlMGVmMDZkMDA6MDIwMDAwYTIyNjZhYjc5OTowMTAwMDE1ZjA3ZTA5ODIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIxMjQ3MDY3MXEAAAAAAIxrP3lcj8L1KJAnP4IBCWFjIHdpbmRvd5ABrrudywbgAfKhwoXxBukBAAAA4JUl8T/xAQAAAOAUavA/yAwC4AwBiQ17FK5H4XqUP5ENAABAYjnJDkGhDQAAAACj4ZFBuQ1kGu7pqzFTQPgNgICW7doJsA6Ah6cO4g4Mqo0Gx40G1Y4G8JAGuQ8pXI/C9eBjP8EPSK+8mvLXyj7IDxLiGdwBRWxBekxqUXhNVGd5TmpFMk1qTTJOemszTkN3dE1Td3RNU3d0TVN3dE1Td3RNU3d0TVN3dE1Td3RNU3d0TVN3dE1Td3hNUzR6TXpjNE56UTBOQ3d6Tmk0eU16STVOemMwT1RVeU16azFOaXd0TVIwSFpSVk9JUEMrN1B3SExWeGJXa0ExQUFDQVA2RUNmWm9rNHFDc3drRzVBaGhjYzBmL3krRS93UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSUNRQkpzROoZBLpNwk36GaIGCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF81NjA4NDU4NTE2Cg0KB2lzX3Zza3USAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9ChIKDHZvdWNoZXJfbGVucxICEAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACi0KEHJlY2FsbF9xdWV1ZV9pZHMSGSIXMTExNTIwMzAxLDYxMTAzMDExMCxvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKGQoNYml6X3F1ZXVlX2lkcxIIIgYtMSxvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoALAfkIKAkICAgIAYyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklfZok4qCswkHZJWb7R2uZMVNA6SVkGu5pBf5SQPIlBlNFQVJDSA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
4
]
},
"itemid": 5608458516,
"shopid": 202812301,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":75000000,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-miworrj0lm9t68\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"ads\",\"label_ids\":[1000109,1000230,1000381,1000544,1002164,1011692,1400095067,1400285005,1000245,1000380,68,1000961,22,1001036,1113619,1015914,700190087,844931026694327,844931046478970,844931064601283,1400285055,1,298458335,1668726,1134053,700585046,1718072935,1718087960,1428713,2018618,1012763,298463379,1718093079,2153644,700830032,2213652,700005490,1049120,822059908662278,834403089593352,825465608497696,2008656,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4253,\"model_id\":247983314868,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":2,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":75000000,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-miworrj0lm9t68\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"ads\",\"label_ids\":[1000109,1000230,1000381,1000544,1002164,1011692,1400095067,1400285005,1000245,1000380,68,1000961,22,1001036,1113619,1015914,700190087,844931026694327,844931046478970,844931064601283,1400285055,1,298458335,1668726,1134053,700585046,1718072935,1718087960,1428713,2018618,1012763,298463379,1718093079,2153644,700830032,2213652,700005490,1049120,822059908662278,834403089593352,825465608497696,2008656,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4253,\"model_id\":247983314868,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":2,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": "",
"creative_id": "",
"creative_id_int": 0,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 2,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8ELKns4ACGPXp3McBIgxhYyBjaGFuZ2hvbmcoATKYBGRXdGtWR0ZSUVVGQlFVSnpXakpHVDZaVnE2YlJ6czBDUFFWK1FFTEIwcnlwYW04VFU5c25yVzBFNG4zeS8wOWkvUWQ0aWRNWkRUVnBWdzNCVUUwUWpkaWNQU25sOGdTWHJTNVI5anRxU2FVY21rR3NCQnFDSVFUa2cyelloeU45ZE4zNWE5VFRzd2xtQUt3Szk4Q3F3VFJNVHNiN3diVXpYN2pYNC9wYlJUYi9VUlB3MGdWc3JKNXlYQldjdllaa2ZNd2R5cEkvMlpLblZiRWUxQmRuNmVNRElRbEZuc0JCNUJ1Z1hZbzZxS1FNUkJBT0VrcjFmRUxXbnNDbDhWK2x5Q1g0NjNlQkJpa0pzREk5eHNvcTdUSks1cFpwRjhxRVlIQWphdHBSRDQwRHVZZzNUcUxDcWlVNDJ4ckJvbzc1bFI4QjRZY3JNNnhjTjJuOGVzWk1TZ2owaGxYcDJJMSthNFA0WWMrS3ZjTXVIKzJmdm1GUDRLTVUrcmpBcHNCclVxcFprOFRGeHQxTEJpMTdXVS9MRzZ4RTcwTmRXOVVJbFVZZGlsejExSUpmcVE4WlhXMVRpTzVad2QrZVkyck5tVVpRcFJTdU4zSmY3TnFnQXZ1T0lnODI5aytWZDhpeG4rV3RUMEdHaHJsZDF1Y0FqRnJjTWlsWlFsU25UQ1IwcWN1STVtQmEwQWlBT1JNSHR0UUxDQT09UqMBYmZmLXNlYXJjaF9pZF9zZzEyXzEwLjE0OS40Ny44MV97YjExYmEzYWY0ODU1N2QyMmY0ZWNlMTRlMGVmMDZkMDA6MDIwMDAwYTIyNjZhYjc5OTowMTAwMDE1ZjA3ZTA5ODIzfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIxMjQ3MDY3MXEAAAAAAIxrP3lcj8L1KJAnP4IBCWFjIHdpbmRvd5ABrrudywbgAfKhwoXxBukBAAAA4JUl8T/xAQAAAOAUavA/yAwC4AwBiQ17FK5H4XqUP5ENAABAYjnJDkGhDQAAAACj4ZFBuQ1kGu7pqzFTQPgNgICW7doJsA6Ah6cO4g4Mqo0Gx40G1Y4G8JAGuQ8pXI/C9eBjP8EPSK+8mvLXyj7IDxLiGdwBRWxBekxqUXhNVGd5TmpFMk1qTTJOemszTkN3dE1Td3RNU3d0TVN3dE1Td3RNU3d0TVN3dE1Td3RNU3d0TVN3dE1Td3hNUzR6TXpjNE56UTBOQ3d6Tmk0eU16STVOemMwT1RVeU16azFOaXd0TVIwSFpSVk9JUEMrN1B3SExWeGJXa0ExQUFDQVA2RUNmWm9rNHFDc3drRzVBaGhjYzBmL3krRS93UUlBQUFBQUFBQUFnTW9DQ3dnQkVRQUFBQUFBQUFBQXlnSUxDQUlSQUFBQUFBQUFBSUNRQkpzROoZBLpNwk36GaIGCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAohCg92c2t1X3VuaXF1ZV9rZXkSDiIMMF81NjA4NDU4NTE2Cg0KB2lzX3Zza3USAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo1NywiYXBpMV9sYXRlbmN5X21zIjozNywiYXBpMl9sYXRlbmN5X21zIjo2MywiYXBpM19sYXRlbmN5X21zIjoyLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMzLCJhcGkwX2Fkc19jb3VudCI6MjgyLCJhcGkxX2Fkc19jb3VudCI6MTUxMiwiYXBpMl9hZHNfY291bnQiOjMwNiwiYXBpM19hZHNfY291bnQiOjh9ChIKDHZvdWNoZXJfbGVucxICEAAKGgoNdHJhZmZpY19ib29zdBIJCQAAAAAAAAAACi0KEHJlY2FsbF9xdWV1ZV9pZHMSGSIXMTExNTIwMzAxLDYxMTAzMDExMCxvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoUCg5zaG9wX2JsYWNrbGlzdBICKAAKGQoNYml6X3F1ZXVlX2lkcxIIIgYtMSxvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoALAfkIKAkICAgIAYyB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklfZok4qCswkHZJWb7R2uZMVNA6SVkGu5pBf5SQPIlBlNFQVJDSA==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_5608458516",
"debug_info": null
},
{
"item_basic": {
"itemid": 42024860765,
"shopid": 273223463,
"name": "AC Reiwa CW0501RA Window 1/2 PK CW 0501RA 0,5 PK",
"label_ids": [
2018619,
2023641,
1428713,
1718087960,
844931064601283,
844931086908638,
298463379,
1049116,
1049117,
1718093079,
822059908662278,
825465608497696,
825465608492064,
825465608499232,
1015914,
700190087,
1400025118,
2048660,
2048661,
1400285055,
2108629,
1718088045,
997921049,
1718088046,
997921050,
298468389,
700585042,
1718093085
],
"image": "id-11134207-82252-mfyuh8utks24d0",
"images": [
"id-11134207-82252-mfyuh8utks24d0",
"id-11134207-8224s-mfyuh8utm6mk03",
"id-11134207-82250-mfyuh8utnl70ee",
"id-11134207-8224y-mfyuh8utozrg48",
"id-11134207-8224s-mfyuh8utqebw07",
"id-11134207-82251-mfyuh8uthyx836"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1760757869,
"sold": 2,
"historical_sold": 16,
"liked": false,
"liked_count": 20,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 9,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.777777777777778,
"rating_count": [
9,
0,
0,
0,
2,
7
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 249041350244,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 16,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 16,
"display_sold_count_text": "16"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "EJG Elektronik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
97,
4
]
},
"itemid": 42024860765,
"shopid": 273223463,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mfyuh8utks24d0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1049116,1049117,1718093079,822059908662278,825465608497696,825465608492064,825465608499232,1015914,700190087,1400025118,2048660,2048661,1400285055,2108629,1718088045,997921049,1718088046,997921050,298468389,700585042,1718093085],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":3112,\"model_id\":249041350244,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mfyuh8utks24d0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,1049116,1049117,1718093079,822059908662278,825465608497696,825465608492064,825465608499232,1015914,700190087,1400025118,2048660,2048661,1400285055,2108629,1718088045,997921049,1718088046,997921050,298468389,700585042,1718093085],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\"],\"merge_rank\":3112,\"model_id\":249041350244,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42024860765",
"debug_info": null
},
{
"item_basic": {
"itemid": 44458669661,
"shopid": 1580715481,
"name": "Window AC 1/2 PK REIWA CW0501RA / Tanpa Pipa AC / Window Air Conditioner 0,5 PK Palembang",
"label_ids": [
844931064601283,
844931086908638,
298463379,
1049128,
700005504,
822059908662278,
825465608499232,
834403089593352,
825465608497696,
825465608492064,
1718093079,
2023641,
1400285055,
2018619,
1718093065,
2048660,
2048661,
2108629,
298933384,
700765096,
1015914,
700190087,
1718088045,
298468389
],
"image": "id-11134207-7ra0l-mc8u2778g9txc5",
"images": [
"id-11134207-7ra0l-mc8u2778g9txc5",
"id-11134207-7ra0m-mc8u2778j2yt8d",
"sg-11134201-7rdws-mc8vovc5bkohb7",
"sg-11134201-7rdvq-mc8uoctqzmbl11",
"id-11134207-7ra0g-mc8u2778dgp170",
"id-11134207-7ra0n-mc8u2778ev9hc5",
"id-11134207-7ra0j-mc8u2778hoed81",
"sg-11134201-7rdw8-mc8vovqkqg7t6b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1752646727,
"sold": 0,
"historical_sold": 14,
"liked": false,
"liked_count": 6,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 8,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 223500000000,
"price_min": 223500000000,
"price_max": 223500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ko2h-mc923dylhi6f34.16000091752657496.mp4",
"thumb_url": "id-11110107-6ko2h-mc923dylhi6f34_cover",
"duration": 29,
"version": 2,
"vid": "id-11110107-6ko2h-mc923dylhi6f34",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ko2h-mc923dylhi6f34.16000091752657496.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko2h-mc923dylhi6f34.16000091752657496.mp4",
"width": 270,
"height": 480
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko2h-mc923dylhi6f34.default.mp4",
"width": 360,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
8,
0,
0,
0,
0,
8
],
"rcount_with_context": 3,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 223300000000,
"strikethrough_price": 223500000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1306322126520320,
"discount_text": null,
"model_id": 295730292897,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1306322126520320,
"voucher_code": "CIPTUFPIE",
"voucher_discount": 200000000,
"time_info": {
"start_time": 1765185015,
"end_time": 1768468080,
"valid_duration": null
},
"groups": [],
"min_spend": 5000000000
},
"recommended_platform_voucher_info": null,
"original_price": 223500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 14,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 14,
"display_sold_count_text": "14"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Toko Cipta jaya",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
0,
1000
]
},
"itemid": 44458669661,
"shopid": 1580715481,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0l-mc8u2778g9txc5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,825465608492064,1718093079,2023641,1400285055,2018619,1718093065,2048660,2048661,2108629,298933384,700765096,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":959,\"model_id\":295730292897,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0l-mc8u2778g9txc5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,825465608492064,1718093079,2023641,1400285055,2018619,1718093065,2048660,2048661,2108629,298933384,700765096,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":959,\"model_id\":295730292897,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44458669661",
"debug_info": null
},
{
"item_basic": {
"itemid": 29269741745,
"shopid": 466645045,
"name": "FLIFE AC 1/2 PK Standard - Turbo Mode - Gold Fin Anti Korosi - Fitur Dehumidifier - FAC-05FMOO3",
"label_ids": [
1002164,
1011692,
1428713,
1718087960,
844931064601283,
1059152,
1049122,
1718093079,
1015914,
700190087,
1000031,
1918643,
1400285055,
298813370,
2018618,
1993653,
298463379,
1012729,
298893311,
822059908662278,
834403089593352,
825465608497696,
825465608499232,
825465608494624,
2153644,
700830032,
298888358,
298938357,
2213652,
700810055,
700700063,
2008656,
1718088045,
2098629,
2098628,
298468389,
298938368
],
"image": "id-11134207-8224w-mivdnqjae9z79d",
"images": [
"id-11134207-8224w-mivdnqjae9z79d",
"id-11134207-81ztk-mepj18yz21ol6c",
"id-11134207-81zti-mepj18zan8cib1",
"id-11134207-81zte-mepj18yw63nq68",
"id-11134207-81ztm-mepj18zcr30k4f",
"id-11134207-81ztc-mepj18z7afib57",
"id-11134207-81zti-mepj18z7en7n4a",
"id-11134207-81ztn-meqw5cowu77mb5",
"id-11134207-81zte-meqw5cowssn627"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1733367869,
"sold": 45,
"historical_sold": 381,
"liked": false,
"liked_count": 884,
"view_count": null,
"catid": 100010,
"brand": "Flife",
"cmt_count": 153,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 304900000000,
"price_min": 304900000000,
"price_max": 304900000000,
"price_min_before_discount": 569900000000,
"price_max_before_discount": 569900000000,
"hidden_price_display": null,
"price_before_discount": 569900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-46%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6knay-m5v3skm5es4o03.16000041738737430.mp4",
"thumb_url": "id-11110105-6knay-m5v3skm5es4o03_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6knay-m5v3skm5es4o03",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knay-m5v3skm5es4o03.default.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m5v3skm5es4o03.default.mp4",
"width": 640,
"height": 360
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m5v3skm5es4o03.default.mp4",
"width": 640,
"height": 360
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Type",
"options": [
"1/2PK LOW WATT",
"1PK LOW WATT",
"1,5PK LOW WATT",
"1/2PK STANDARD",
"3/4PK STANDARD",
"1PK STANDARD",
"1,5PK STANDARD"
],
"images": [
"id-11134207-8224v-mivdnqjafojnea",
"id-11134207-8224s-mivdnqja5ukje8",
"id-11134207-82252-mivdnqja794z00",
"id-11134207-8224w-mivdnqjae9z79d",
"id-11134207-8224p-mivdnqjaa29v30",
"id-11134207-8224q-mivdnqjabgub40",
"id-11134207-8224s-mivdnqjacver10"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.928104575163399,
"rating_count": [
153,
1,
0,
0,
7,
145
],
"rcount_with_context": 57,
"rcount_with_image": 42
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134601-82251-mhh3zi3xepz418",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": true,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp508RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227858450755586,
"price": 304900000000,
"strikethrough_price": 569900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-46%",
"model_id": 253732819368,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 569900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 381,
"rounded_local_monthly_sold_count": 45,
"local_monthly_sold_count_text": "45",
"rounded_display_sold_count": 381,
"display_sold_count_text": "381"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp508RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Flife Official Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 398919469,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT5nL0kENNPyHMaGGxEBTysYx6BSALubRTaHIgJY9DxoFWsE52QKLyA7Eb3UHmDWYX+Crj7rGMHjdFzZ/QE04Ub1B89DZKBQXCwVC6BxofIL3hKxR/cvxkcRzMuXDcgbVxOimsvP7uEYrLwmLarXFt0MUspgCL1OTcmkWnOMOLaMx4vNCEGdYHILgIE4AiMel8TkAdvE8Y1/y+NVg8h0TfDNcP4Ta6RDBzozR/pZ06RWaQvK83mZ3U63bUjmqhdqbhI2C66rOv+KAKAFqQKRb7fcic56tN8I/zO2p71kHqyqo0EO539C7iypdNRHRu8H5BJlfJLvHKutvQpgW4aSlyqN/AbxNtIxlMmxE51UZqPNtNoaicONIVX5vx0NT8enWOPsIB6BM/d2uHLV3oPOj4FYzVX4136sF9qZAj5LIXFYg7iiGW8wiB/C8kMJuuLyyT2JBW1ryW9OjXprBVhiTHMTNaWDMoAc54KhXdhZbfPMMkdePFJguRMv3iBAWPLGiRw==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EK2OnL4BGJfTpIsBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNW5MMGtFTk5QeUhNYUdHeEVCVHlzWXg2QlNBTHViUlRhSElnSlk5RHhvRldzRTUyUUtMeUE3RWIzVUhtRFdZWCtDcmo3ckdNSGpkRnpaL1FFMDRVYjFCODlEWktCUVhDd1ZDNkJ4b2ZJTDNoS3hSL2N2eGtjUnpNdVhEY2diVnhPaW1zdlA3dUVZckx3bUxhclhGdDBNVXNwZ0NMMU9UY21rV25PTU9MYU14NHZOQ0VHZFlISUxnSUU0QWlNZWw4VGtBZHZFOFkxL3krTlZnOGgwVGZETmNQNFRhNlJEQnpvelIvcFowNlJXYVF2SzgzbVozVTYzYlVqbXFoZHFiaEkyQzY2ck92K0tBS0FGcVFLUmI3ZmNpYzU2dE44SS96TzJwNzFrSHF5cW8wRU81MzlDN2l5cGROUkhSdThINUJKbGZKTHZIS3V0dlFwZ1c0YVNseXFOL0FieE50SXhsTW14RTUxVVpxUE50Tm9haWNPTklWWDV2eDBOVDhlbldPUHNJQjZCTS9kMnVITFYzb1BPajRGWXpWWDQxMzZzRjlxWkFqNUxJWEZZZzdpaUdXOHdpQi9DOGtNSnV1THl5VDJKQlcxcnlXOU9qWHByQlZoaVRITVROYVdETW9BYzU0S2hYZGhaYmZQTU1rZGVQRkpndVJNdjNpQkFXUExHaVJ3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADIZz953SQGgZXDSD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHcrLPY+QbpAQAAAOCVJfE/8QEAAAAADB/2P8gMD+AMAekMAAAAoJmZqT+JDXsUrkfhepQ/kQ0AAMh2qF7jQKENAAAAIFwQakG5DS4z4ol4MVNA+A2AgNqkogiwDq7hlZEB4g4Mqo0Gx40G1Y4G8JAGuQ/pJjEIrJhRP8EPSXFWkNs5AT/IDxXiGZgLRXBRQk1TNDFNRE13TXpnNE9EYzFOREUyTXpnMUxDMHhMQzB4TEMweExDMHhMREV1TlRFNE1qSXhNRGs0TlRJMk9UQTNOaXd4TGpJc01DNHdNakV3TURRNU5ERTVOemc0T0RFM01UUXNNQzQ1TERBdU56UXlPVEV4TlRVeU56WTJNekU0Tml3eExqQXdNREF4TWpNc05EQTBMamt5T0RRek5qSXlOVE13TWpnMUxEQXVORGcyTnpjd09EQTJOekEyTnpRME5pd3RNUjFPY3dCTElPQ0Z3Z1l0bEdQQVB6VUFBSUEvT1ZEZ3RCTXhkQlZDUWFZZHNNWFNrbUZDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFBQUgyak0vZVFBQUFDREZJUjQvZ1FFQUFBQ0F3YnlXUVlrQkFBQUE0QWtaZ2tHUkFRQUFBSEJHeVo5Qm1RRUFBQUJBdSt5YlFhRUJBQUFBSUpwdWlFR3BBUUFBQUNnRUVxUkI2QUVCZ0FLVUE0b0NQakF1TURBd05EZ3lMREV1TURBd01EQXdMREV1TURrM01Ua3dMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUwrVXVRMG9rcjRQNkVDQUFBQUtBUVNwRUc1QXBzNmo0ci9PK0Uvd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnQlRQcHZyMDROQjRRS2d5YlF2eGNOd1Fla0M5dXRYU2ovVWtVR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkEraVpheWU0V1JWQ29RTVJQSTRWQStKaFFya0RFV0ZkL0pPVDVEL0JBNFllcXM0Q28rWS95UU9BanRQS3l0L3BQOUVEWFNZbm5HeGI3ai82QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBL29ERFFvSlQzSmtaWEpVYVdWeUVBUDZBeEVLRFVsMFpXMVFjbWxqWlZScFpYSVFBNEVFQUFBQW9QZE5MeitKQkFBQUFPQlZpQ2sva0FTYkE1Z0V1cW5Cb0psNm9BVGt4WmozSWFnRWdLekg4RGU0Qkp6bXJ2a1Z3QVNBck1md044a0VBQUFBQUFESVp6L2hCQUFBQUFBQXlHYy82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNBZVpZL1A2RUZBQUFBQUFBQThEK3BCUUFBQUtBWGp2RS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZBLhNyU36GYwGChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJx43Rc1lU40AKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQnTepoTfQJqQQoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yOTI2OTc0MTc0NQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChIKDHZvdWNoZXJfbGVucxICEAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lksB/PgoCAoICAKMgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJQAAACgEEqRB2SWz1/kkTDFTQOkl3ErPEQ7eUkDyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88
]
},
"itemid": 29269741745,
"shopid": 466645045,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":13664993,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mivdnqjae9z79d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1011692,1428713,1718087960,844931064601283,1059152,1049122,1718093079,1015914,700190087,1000031,1918643,1400285055,298813370,2018618,1993653,298463379,1012729,298893311,822059908662278,834403089593352,825465608497696,825465608499232,825465608494624,2153644,700830032,298888358,298938357,2213652,700810055,700700063,2008656,1718088045,2098629,2098628,298468389,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4696,\"model_id\":253732819368,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":13664993,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mivdnqjae9z79d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1002164,1011692,1428713,1718087960,844931064601283,1059152,1049122,1718093079,1015914,700190087,1000031,1918643,1400285055,298813370,2018618,1993653,298463379,1012729,298893311,822059908662278,834403089593352,825465608497696,825465608499232,825465608494624,2153644,700830032,298888358,298938357,2213652,700810055,700700063,2008656,1718088045,2098629,2098628,298468389,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4696,\"model_id\":253732819368,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDUwNTc5MHw1MzIzNjB8NTQ3Nzg0fDYyNzY2N3w2MjA5Nzl8NTc4ODc3fDYzMTU0OXw2MzQ3MjF8NjAwNDA2fDU1NDAwMHw1NzA0NjZ8NjMwNzc0fDUwMDUzNXw1NTQ3OTZ8NjE5OTU3fDYzNDc1MHw1MjY1MDh8NjA5MTM5fDU4MDc4Mnw2MjM1MDN8NjAyOTIzfDU0NDU1MXw1NjkwNDB8NTk3ODgzfDU1NjYwN3w2MDMzMzF8NjIwMjEzfDU4MDc4M3w2MDg5OTl8NjM1NzUyfDQ0MjYzN3w1Mjc0Mjl8NTk3MDk4fDYxODM3Nnw1MzQxNzh8NTM4NzU0fDU0NDU2MXw1OTM2Mjd8NjM1NzkwfDYwNTQ2N3w2MTM4NTl8NTQ0NTA0fDYxMzQyMnw2Mjk0NjB8NTk2NzU0fDYwOTMwNHw2MDkyODh8EK2OnL4BGJfTpIsBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUNW5MMGtFTk5QeUhNYUdHeEVCVHlzWXg2QlNBTHViUlRhSElnSlk5RHhvRldzRTUyUUtMeUE3RWIzVUhtRFdZWCtDcmo3ckdNSGpkRnpaL1FFMDRVYjFCODlEWktCUVhDd1ZDNkJ4b2ZJTDNoS3hSL2N2eGtjUnpNdVhEY2diVnhPaW1zdlA3dUVZckx3bUxhclhGdDBNVXNwZ0NMMU9UY21rV25PTU9MYU14NHZOQ0VHZFlISUxnSUU0QWlNZWw4VGtBZHZFOFkxL3krTlZnOGgwVGZETmNQNFRhNlJEQnpvelIvcFowNlJXYVF2SzgzbVozVTYzYlVqbXFoZHFiaEkyQzY2ck92K0tBS0FGcVFLUmI3ZmNpYzU2dE44SS96TzJwNzFrSHF5cW8wRU81MzlDN2l5cGROUkhSdThINUJKbGZKTHZIS3V0dlFwZ1c0YVNseXFOL0FieE50SXhsTW14RTUxVVpxUE50Tm9haWNPTklWWDV2eDBOVDhlbldPUHNJQjZCTS9kMnVITFYzb1BPajRGWXpWWDQxMzZzRjlxWkFqNUxJWEZZZzdpaUdXOHdpQi9DOGtNSnV1THl5VDJKQlcxcnlXOU9qWHByQlZoaVRITVROYVdETW9BYzU0S2hYZGhaYmZQTU1rZGVQRkpndVJNdjNpQkFXUExHaVJ3PT1IMlKjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzFxAAAAAADIZz953SQGgZXDSD+CAQlhYyB3aW5kb3eQAa67ncsGuAEB4AHcrLPY+QbpAQAAAOCVJfE/8QEAAAAADB/2P8gMD+AMAekMAAAAoJmZqT+JDXsUrkfhepQ/kQ0AAMh2qF7jQKENAAAAIFwQakG5DS4z4ol4MVNA+A2AgNqkogiwDq7hlZEB4g4Mqo0Gx40G1Y4G8JAGuQ/pJjEIrJhRP8EPSXFWkNs5AT/IDxXiGZgLRXBRQk1TNDFNRE13TXpnNE9EYzFOREUyTXpnMUxDMHhMQzB4TEMweExDMHhMREV1TlRFNE1qSXhNRGs0TlRJMk9UQTNOaXd4TGpJc01DNHdNakV3TURRNU5ERTVOemc0T0RFM01UUXNNQzQ1TERBdU56UXlPVEV4TlRVeU56WTJNekU0Tml3eExqQXdNREF4TWpNc05EQTBMamt5T0RRek5qSXlOVE13TWpnMUxEQXVORGcyTnpjd09EQTJOekEyTnpRME5pd3RNUjFPY3dCTElPQ0Z3Z1l0bEdQQVB6VUFBSUEvT1ZEZ3RCTXhkQlZDUWFZZHNNWFNrbUZDU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNElxdk9XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFBQUgyak0vZVFBQUFDREZJUjQvZ1FFQUFBQ0F3YnlXUVlrQkFBQUE0QWtaZ2tHUkFRQUFBSEJHeVo5Qm1RRUFBQUJBdSt5YlFhRUJBQUFBSUpwdWlFR3BBUUFBQUNnRUVxUkI2QUVCZ0FLVUE0b0NQakF1TURBd05EZ3lMREV1TURBd01EQXdMREV1TURrM01Ua3dMREV1TWpVd01EQXdMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUwrVXVRMG9rcjRQNkVDQUFBQUtBUVNwRUc1QXBzNmo0ci9PK0Uvd1FJQUFBQUFBQUFBZ01vQ0N3Z0JFUUFBQUFBQUFBQUF5Z0lMQ0FJUkFBQUFBQUFBQUlEWkFnQlRQcHZyMDROQjRRS2d5YlF2eGNOd1Fla0M5dXRYU2ovVWtVR0tBekFBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQrWkEraVpheWU0V1JWQ29RTVJQSTRWQStKaFFya0RFV0ZkL0pPVDVEL0JBNFllcXM0Q28rWS95UU9BanRQS3l0L3BQOUVEWFNZbm5HeGI3ai82QXdrS0JVbHpUbEJDRUFENkF3c0tCMUp2YVZScFpYSVFBL29ERFFvSlQzSmtaWEpVYVdWeUVBUDZBeEVLRFVsMFpXMVFjbWxqWlZScFpYSVFBNEVFQUFBQW9QZE5MeitKQkFBQUFPQlZpQ2sva0FTYkE1Z0V1cW5Cb0psNm9BVGt4WmozSWFnRWdLekg4RGU0Qkp6bXJ2a1Z3QVNBck1md044a0VBQUFBQUFESVp6L2hCQUFBQUFBQXlHYy82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUNBZVpZL1A2RUZBQUFBQUFBQThEK3BCUUFBQUtBWGp2RS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZBLhNyU36GYwGChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJx43Rc1lU40AKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFgoNYml6X3F1ZXVlX2lkcxIFIgNvcmcKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAACiAKE29yaV9kZWR1Y3Rpb25fcHJpY2USCQnTepoTfQJqQQoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8yOTI2OTc0MTc0NQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjU3LCJhcGkxX2xhdGVuY3lfbXMiOjM3LCJhcGkyX2xhdGVuY3lfbXMiOjYzLCJhcGkzX2xhdGVuY3lfbXMiOjIsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzMsImFwaTBfYWRzX2NvdW50IjoyODIsImFwaTFfYWRzX2NvdW50IjoxNTEyLCJhcGkyX2Fkc19jb3VudCI6MzA2LCJhcGkzX2Fkc19jb3VudCI6OH0KDQoHaXNfdnNrdRICKAAKFAoOdXNlcl9ibGFja2xpc3QSAigAChIKDHZvdWNoZXJfbGVucxICEAAKFAoOc2hvcF9ibGFja2xpc3QSAigAChgKEnJhcGlkX2Jvb3N0X3RvZ2dsZRICKAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lksB/PgoCAoICAKMgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJQAAACgEEqRB2SWz1/kkTDFTQOkl3ErPEQ7eUkDyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29269741745",
"debug_info": null
},
{
"item_basic": {
"itemid": 10654526997,
"shopid": 256661214,
"name": "AC Window CW-0501RA 1/2 PK 5000 Btu/h",
"label_ids": [
844931064601283,
1400285055,
844931086908638,
1049112,
1059151,
822059908662278,
837860934119952,
840955085144628,
825465608492064,
825465608494624,
825465608499232,
825465608497696,
840990690654214,
1213641,
1000031,
2018619,
298893311,
298933384,
1015914,
700190087,
2048661,
2048660,
2068629,
298938357,
298463379,
2023641,
298458396,
298468389,
298938368,
298458398,
298468390
],
"image": "id-11134207-7r98p-ls9sko2behfxef",
"images": [
"id-11134207-7r98p-ls9sko2behfxef",
"id-11134207-7r98q-ls9sko2bfw0d53",
"c1c7a8371b8f2314e5c927a2caae7715",
"3730078f04e61385387173c2ab318e59",
"698bb47bb6107aa6eef311e21c8bc379"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1632992193,
"sold": 0,
"historical_sold": 54,
"liked": false,
"liked_count": 431,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 23,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 221900000000,
"price_min": 221900000000,
"price_max": 221900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.897435897435898,
"rating_count": [
39,
0,
0,
0,
4,
35
],
"rcount_with_context": 14,
"rcount_with_image": 9
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp739RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 221900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 112806487994,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 221900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 54,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 54,
"display_sold_count_text": "54"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp739RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "PT.MaxindoTeknik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91,
0,
1000
]
},
"itemid": 10654526997,
"shopid": 256661214,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-ls9sko2behfxef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,844931086908638,1049112,1059151,822059908662278,837860934119952,840955085144628,825465608492064,825465608494624,825465608499232,825465608497696,840990690654214,1213641,1000031,2018619,298893311,298933384,1015914,700190087,2048661,2048660,2068629,298938357,298463379,2023641,298458396,298468389,298938368,298458398,298468390],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":3826,\"model_id\":112806487994,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-ls9sko2behfxef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,844931086908638,1049112,1059151,822059908662278,837860934119952,840955085144628,825465608492064,825465608494624,825465608499232,825465608497696,840990690654214,1213641,1000031,2018619,298893311,298933384,1015914,700190087,2048661,2048660,2068629,298938357,298463379,2023641,298458396,298468389,298938368,298458398,298468390],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":3826,\"model_id\":112806487994,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_10654526997",
"debug_info": null
},
{
"item_basic": {
"itemid": 25489786746,
"shopid": 1427006631,
"name": "WINDOW AC REIWA CW0501RA 1/2 PK WINDOW AIR CONDITIONER PALEMBANG",
"label_ids": [
844931064601283,
1400285055,
1213641,
2018619,
1015914,
700190087,
298893311,
844931086908638,
2023641,
298933384,
1049128,
700005504,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
700765096,
2108629,
834403089593352,
298458396
],
"image": "id-11134207-7rask-m45jg4qbiiho4a",
"images": [
"id-11134207-7rask-m45jg4qbiiho4a",
"id-11134207-7rbk3-m8fnps3qdpi6df",
"id-11134207-7rbka-m8fnps3qf42m90",
"id-11134207-7rbk9-m8fnps3qgin23a",
"id-11134207-7ra0h-mbkg1x18mimeb3",
"id-11134207-7ra0p-mbkg1x18pbrac2",
"id-11134207-7ra0i-mbkg1x18nx6u61"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1735028340,
"sold": 0,
"historical_sold": 86,
"liked": false,
"liked_count": 78,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 45,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 210000000000,
"price_min": 210000000000,
"price_max": 210000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6knay-m8pm30xnkkqq9b.16000081744942704.mp4",
"thumb_url": "id-11110105-6knay-m8pm30xnkkqq9b_cover",
"duration": 32,
"version": 2,
"vid": "id-11110105-6knay-m8pm30xnkkqq9b",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knay-m8pm30xnkkqq9b.16000081744942704.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m8pm30xnkkqq9b.16000081744942704.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m8pm30xnkkqq9b.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.977777777777778,
"rating_count": [
45,
0,
0,
0,
1,
44
],
"rcount_with_context": 12,
"rcount_with_image": 12
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 210000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 227195363817,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 210000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 86,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 86,
"display_sold_count_text": "86"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Pusatย Electronikย Palembang",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
1000,
1000,
0,
1000
]
},
"itemid": 25489786746,
"shopid": 1427006631,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m45jg4qbiiho4a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1213641,2018619,1015914,700190087,298893311,844931086908638,2023641,298933384,1049128,700005504,822059908662278,825465608499232,825465608497696,2048660,2048661,700765096,2108629,834403089593352,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":1089,\"model_id\":227195363817,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m45jg4qbiiho4a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1213641,2018619,1015914,700190087,298893311,844931086908638,2023641,298933384,1049128,700005504,822059908662278,825465608499232,825465608497696,2048660,2048661,700765096,2108629,834403089593352,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":1089,\"model_id\":227195363817,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25489786746",
"debug_info": null
},
{
"item_basic": {
"itemid": 26735859540,
"shopid": 302036739,
"name": "REIWA AC WINDOW CW-0901RA Pendingin Ruangan 1 PK Auto Voltage Garansi Resmi",
"label_ids": [
1002164,
2018618,
1718087960,
1428713,
844931086908638,
844931064601283,
298463379,
1049112,
700000501,
1718093079,
822059908662278,
822120592853526,
825465608494624,
825465608499232,
825465608497696,
1213641,
1718093065,
1015914,
700190087,
2153644,
2068629,
298938357,
2048660,
2048661,
700765096,
1400025118,
1400066568,
2213652,
2008656,
298468390,
1718088046,
1718093085,
997921050,
2098629,
1718088045,
700585042,
2108637,
298938368,
298458398,
2098628,
997921049,
2103632,
2098630,
1718088044,
298458396,
298838363,
298468389,
1718093084
],
"image": "id-11134207-81ztj-mf20n5o8u8suef",
"images": [
"id-11134207-81ztj-mf20n5o8u8suef",
"id-11134207-7rbka-m9jpccnghjot64",
"id-11134207-7rbk0-m9jpccngwzxp01",
"id-11134207-7rbk4-m9jpccp4f3oe74",
"id-11134207-7rbk4-m9jpccnglrejf1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1746253614,
"sold": 0,
"historical_sold": 3,
"liked": false,
"liked_count": 13,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 258000000000,
"price_min": 258000000000,
"price_max": 258000000000,
"price_min_before_discount": 642500000000,
"price_max_before_discount": 642500000000,
"hidden_price_display": null,
"price_before_discount": 642500000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-60%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp860RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 754217682272256,
"price": 258000000000,
"strikethrough_price": 642500000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-60%",
"model_id": 227788938026,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 642500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp860RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "OXO Warehouse Official Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26735859540,
"shopid": 302036739,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mf20n5o8u8suef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,1718087960,1428713,844931086908638,844931064601283,298463379,1049112,700000501,1718093079,822059908662278,822120592853526,825465608494624,825465608499232,825465608497696,1213641,1718093065,1015914,700190087,2153644,2068629,298938357,2048660,2048661,700765096,1400025118,1400066568,2213652,2008656,298468390,1718088046,1718093085,997921050,2098629,1718088045,700585042,2108637,298938368,298458398,2098628,997921049,2103632,2098630,1718088044,298458396,298838363,298468389,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4485,\"model_id\":227788938026,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztj-mf20n5o8u8suef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,2018618,1718087960,1428713,844931086908638,844931064601283,298463379,1049112,700000501,1718093079,822059908662278,822120592853526,825465608494624,825465608499232,825465608497696,1213641,1718093065,1015914,700190087,2153644,2068629,298938357,2048660,2048661,700765096,1400025118,1400066568,2213652,2008656,298468390,1718088046,1718093085,997921050,2098629,1718088045,700585042,2108637,298938368,298458398,2098628,997921049,2103632,2098630,1718088044,298458396,298838363,298468389,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4485,\"model_id\":227788938026,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26735859540",
"debug_info": null
},
{
"item_basic": {
"itemid": 24230058145,
"shopid": 363348820,
"name": "Reiwa - AC Window 1/2 PK - CW 0501RA",
"label_ids": [
700025282,
1049112,
700005493,
822059908662278,
844931064601283,
1015914,
700190087,
822120592853526,
2018619,
298463379,
825465608497696,
825465608499232,
1718093079,
298933384,
298468389,
1718088045
],
"image": "id-11134207-7ra0h-mc5x1nkzu6xtdb",
"images": [
"id-11134207-7ra0h-mc5x1nkzu6xtdb",
"id-11134207-7ra0p-mcekq9cm0ll3d6",
"id-11134207-7ra0j-mc5x1nkzvli9e7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1715481149,
"sold": 0,
"historical_sold": 6,
"liked": false,
"liked_count": 29,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 4,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 220000000000,
"price_min": 220000000000,
"price_max": 220000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1f-m2q88phi4jwx5b.16000101731904548.mp4",
"thumb_url": "id-11110105-7rask-m2q89g6x3e520b",
"duration": 60,
"version": 2,
"vid": "id-11110105-6ke1f-m2q88phi4jwx5b",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1f-m2q88phi4jwx5b.16000101731904548.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1f-m2q88phi4jwx5b.16000101731904548.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1f-m2q88phi4jwx5b.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "PILIH",
"options": [
"HANYA AC WINDOW",
"AC + PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
4,
0,
0,
0,
0,
4
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Cirebon",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 220000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 89590229102,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 220000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 6,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 6,
"display_sold_count_text": "6"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "AIO Store.",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000
]
},
"itemid": 24230058145,
"shopid": 363348820,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mc5x1nkzu6xtdb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,700005493,822059908662278,844931064601283,1015914,700190087,822120592853526,2018619,298463379,825465608497696,825465608499232,1718093079,298933384,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4121,\"model_id\":89590229102,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mc5x1nkzu6xtdb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,700005493,822059908662278,844931064601283,1015914,700190087,822120592853526,2018619,298463379,825465608497696,825465608499232,1718093079,298933384,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4121,\"model_id\":89590229102,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24230058145",
"debug_info": null
},
{
"item_basic": {
"itemid": 28625262201,
"shopid": 952672181,
"name": "JUAL AC MURAH WINDOW PORTABLE 1/2PK Reiwa CW-0501RA garansi resmi - serang banten [ SRG ]",
"label_ids": [
844931064601283,
700005490,
1049137,
822059908662278,
825465608492064,
825465608494624,
825465608499232,
825465608497696,
822120592853526,
1213641,
1400285055,
2018619,
1015914,
700190087,
1718093079,
298463379,
2048660,
2048661,
700765096,
2023641,
298933384,
1718088045,
298458398,
298458396,
1718088044,
1718093084,
298468390,
298468389
],
"image": "id-11134207-7rasm-m5wj4dobw7sye5",
"images": [
"id-11134207-7rasm-m5wj4dobw7sye5",
"id-11134207-7rasi-m5wj4doc7g6077",
"id-11134207-7rask-m5wj4dobxm8j79"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1738824144,
"sold": 0,
"historical_sold": 26,
"liked": false,
"liked_count": 26,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 9,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 209900000000,
"price_min": 209900000000,
"price_max": 209900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "packing",
"options": [
"dus bawaan",
"pcking kayu"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
9,
0,
0,
0,
0,
9
],
"rcount_with_context": 6,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Serang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 237341892863,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 26,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 26,
"display_sold_count_text": "26"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "pgps.co",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
1000,
88,
0,
1000
]
},
"itemid": 28625262201,
"shopid": 952672181,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m5wj4dobw7sye5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,1049137,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,822120592853526,1213641,1400285055,2018619,1015914,700190087,1718093079,298463379,2048660,2048661,700765096,2023641,298933384,1718088045,298458398,298458396,1718088044,1718093084,298468390,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":3344,\"model_id\":237341892863,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,1000,88,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m5wj4dobw7sye5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,1049137,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,822120592853526,1213641,1400285055,2018619,1015914,700190087,1718093079,298463379,2048660,2048661,700765096,2023641,298933384,1718088045,298458398,298458396,1718088044,1718093084,298468390,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"air conditioner\"],\"merge_rank\":3344,\"model_id\":237341892863,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000,1000,88,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28625262201",
"debug_info": null
},
{
"item_basic": {
"itemid": 28140387220,
"shopid": 85857077,
"name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK LOW WATT HEMAT LISTRIK AC PORTABLE",
"label_ids": [
2018619,
2023641,
844931064601283,
298463379,
1718093079,
700005505,
1049134,
822059908662278,
825465608497696,
825465608492064,
825465608499232,
1718093065,
2108629,
2048660,
2048661,
700765096,
2068629,
298938357,
298938368,
2098629,
2098628,
1718088045,
298468389
],
"image": "id-11134207-7ra0u-mdr4e4l0hzf203",
"images": [
"id-11134207-7ra0u-mdr4e4l0hzf203",
"id-11134207-7ra0t-mdr4e4k6j79qfe",
"id-11134207-7ra0p-mdr4e4kgisunb0",
"id-11134207-7ra0m-mdr4e4kqieh794",
"id-11134207-7ra0h-mdr4e4kgit0887"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1755930308,
"sold": 1,
"historical_sold": 8,
"liked": false,
"liked_count": 13,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 228900000000,
"price_min": 228900000000,
"price_max": 228900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp763RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 228900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 306223681193,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 228900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 8,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 8,
"display_sold_count_text": "8"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp763RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "elecstore_77",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
1000,
97,
88
]
},
"itemid": 28140387220,
"shopid": 85857077,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0u-mdr4e4l0hzf203\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1718093079,700005505,1049134,822059908662278,825465608497696,825465608492064,825465608499232,1718093065,2108629,2048660,2048661,700765096,2068629,298938357,298938368,2098629,2098628,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":199,\"model_id\":306223681193,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0u-mdr4e4l0hzf203\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1718093079,700005505,1049134,822059908662278,825465608497696,825465608492064,825465608499232,1718093065,2108629,2048660,2048661,700765096,2068629,298938357,298938368,2098629,2098628,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":199,\"model_id\":306223681193,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,1000,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28140387220",
"debug_info": null
},
{
"item_basic": {
"itemid": 43700836359,
"shopid": 76017981,
"name": "Reiwa AC Window / AC Reiwa 1/2 PK",
"label_ids": [
2018619,
2023641,
844931064601283,
1718093079,
1213641,
1015914,
700190087,
1400285055,
298463379,
700765096,
844931086908638,
1049116,
700005516,
822059908662278,
825465608494624,
825465608492064,
825465608499232,
840990690654214,
2048661,
840955085144628,
825465608497696,
837860934119952,
2048660,
1718088044,
1718088045,
298458398,
298468390,
298458396,
1718093084,
298468389
],
"image": "id-11134207-7rbke-m9qqrcmk2mml55",
"images": [
"id-11134207-7rbke-m9qqrcmk2mml55"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1747205798,
"sold": 0,
"historical_sold": 4,
"liked": false,
"liked_count": 4,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 3,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Sidoarjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 177179177135,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 4,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 4,
"display_sold_count_text": "4"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Lapak Beruntung",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 43700836359,
"shopid": 76017981,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbke-m9qqrcmk2mml55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,1213641,1015914,700190087,1400285055,298463379,700765096,844931086908638,1049116,700005516,822059908662278,825465608494624,825465608492064,825465608499232,840990690654214,2048661,840955085144628,825465608497696,837860934119952,2048660,1718088044,1718088045,298458398,298468390,298458396,1718093084,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4567,\"model_id\":177179177135,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbke-m9qqrcmk2mml55\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,1213641,1015914,700190087,1400285055,298463379,700765096,844931086908638,1049116,700005516,822059908662278,825465608494624,825465608492064,825465608499232,840990690654214,2048661,840955085144628,825465608497696,837860934119952,2048660,1718088044,1718088045,298458398,298468390,298458396,1718093084,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4567,\"model_id\":177179177135,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43700836359",
"debug_info": null
},
{
"item_basic": {
"itemid": 25287937756,
"shopid": 15287203,
"name": "REIWA CW-0901RA Ac Window 1 PK",
"label_ids": [
844931064601283,
298463379,
1400066568,
1718093079,
1059152,
700005489,
822059908662278,
822120592853526,
834403089593352,
1000031,
1400285055,
2018619,
2018618,
1213641,
825465608497696,
2153644,
1015914,
700190087,
2213652,
2008656,
1718088045,
1718088044,
1718093084,
298468390,
298458398,
298458396,
298468389
],
"image": "id-11134207-7ra0k-md6yl1lpg6qvf3",
"images": [
"id-11134207-7ra0k-md6yl1lpg6qvf3",
"id-11134207-7rbk8-m8ed132e6adnb2",
"id-11134207-7rasj-m267kaxtxpqic1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730706945,
"sold": 0,
"historical_sold": 33,
"liked": false,
"liked_count": 79,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 13,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 270000000000,
"price_min": 270000000000,
"price_max": 270000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
"thumb_url": "id-11110105-7rasi-m26fz1w2m14w2f",
"duration": 13,
"version": 2,
"vid": "id-11110105-6ke1n-m26fymniwex685",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "OPSI",
"options": [
"NON PACKING",
"Kargo-PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.615384615384615,
"rating_count": [
13,
0,
1,
1,
0,
11
],
"rcount_with_context": 3,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 270000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 205524940115,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 270000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 33,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 33,
"display_sold_count_text": "33"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ALWAYS BAHAGIA Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91,
97
]
},
"itemid": 25287937756,
"shopid": 15287203,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-md6yl1lpg6qvf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1400066568,1718093079,1059152,700005489,822059908662278,822120592853526,834403089593352,1000031,1400285055,2018619,2018618,1213641,825465608497696,2153644,1015914,700190087,2213652,2008656,1718088045,1718088044,1718093084,298468390,298458398,298458396,298468389],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4816,\"model_id\":205524940115,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-md6yl1lpg6qvf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1400066568,1718093079,1059152,700005489,822059908662278,822120592853526,834403089593352,1000031,1400285055,2018619,2018618,1213641,825465608497696,2153644,1015914,700190087,2213652,2008656,1718088045,1718088044,1718093084,298468390,298458398,298458396,298468389],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4816,\"model_id\":205524940115,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25287937756",
"debug_info": null
},
{
"item_basic": {
"itemid": 41072339850,
"shopid": 1582531231,
"name": "AC Reiwa Window 1/2 PK R32 CW-0501RA / CW-0501RA",
"label_ids": [
844931064601283,
844931086908638,
298463379,
1718093079,
1049128,
700005504,
822059908662278,
825465608499232,
834403089593352,
825465608497696,
1015914,
700190087,
2048660,
2048661,
700765096,
2023641,
2108629,
2018619,
298468389,
1718088045
],
"image": "id-11134207-81zte-mf91z5njponh0f",
"images": [
"id-11134207-81zte-mf91z5njponh0f",
"id-11134207-81ztl-mf91z5ouf2fi38",
"id-11134207-81ztf-mf91z5nsly4o81",
"id-11134207-81zth-mf91z5nj0efd5e",
"id-11134207-81ztm-mf91z5nt1edlf0",
"id-11134207-81ztk-mf91z5njmvil19",
"id-11134207-81ztm-mf91z5ngfoy695",
"id-11134207-81zte-mf91z5njoa3118",
"id-11134207-81ztg-mf91z5njr37x99"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1759195394,
"sold": 2,
"historical_sold": 4,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 219500000000,
"price_min": 219500000000,
"price_max": 219500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
"thumb_url": "id-11110107-6vena-mf921xk5girwd8_cover",
"duration": 14,
"version": 2,
"vid": "id-11110107-6vena-mf921xk5girwd8",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
"width": 480,
"height": 608
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.default.mp4",
"width": 506,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "TIPE",
"options": [
"1/2 PK",
"1PK"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 219500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 350080551106,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 219500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 4,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 4,
"display_sold_count_text": "4"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "CIPTA ABADI 888",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNDcuODFfe2IxMWJhM2FmNDg1NTdkMjJmNGVjZTE0ZTBlZjA2ZDAwOjAyMDAwMGEyMjY2YWI3OTk6MDEwMDAxNWYwN2UwOTgyM31fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMyMTI0NzA2NzE=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000
]
},
"itemid": 41072339850,
"shopid": 1582531231,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-mf91z5njponh0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2048660,2048661,700765096,2023641,2108629,2018619,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":704,\"model_id\":350080551106,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-mf91z5njponh0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2048660,2048661,700765096,2023641,2108629,2018619,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":704,\"model_id\":350080551106,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41072339850",
"debug_info": null
},
{
"item_basic": {
"itemid": 25287937756,
"shopid": 15287203,
"name": "REIWA CW-0901RA Ac Window 1 PK",
"label_ids": [
844931064601283,
298463379,
1400066568,
1718093079,
1059152,
700005489,
822059908662278,
822120592853526,
834403089593352,
1000031,
1400285055,
2018619,
2018618,
1213641,
825465608497696,
2153644,
1015914,
700190087,
2213652,
2008656,
298458398,
298458396,
1718088045,
298468389,
298468390,
1718093084,
1718088044
],
"image": "id-11134207-7ra0k-md6yl1lpg6qvf3",
"images": [
"id-11134207-7ra0k-md6yl1lpg6qvf3",
"id-11134207-7rbk8-m8ed132e6adnb2",
"id-11134207-7rasj-m267kaxtxpqic1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730706945,
"sold": 0,
"historical_sold": 33,
"liked": false,
"liked_count": 79,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 13,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 270000000000,
"price_min": 270000000000,
"price_max": 270000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
"thumb_url": "id-11110105-7rasi-m26fz1w2m14w2f",
"duration": 13,
"version": 2,
"vid": "id-11110105-6ke1n-m26fymniwex685",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.16000081730706825.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1n-m26fymniwex685.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "OPSI",
"options": [
"NON PACKING",
"Kargo-PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.615384615384615,
"rating_count": [
13,
0,
1,
1,
0,
11
],
"rcount_with_context": 3,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 270000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 205524940115,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 270000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 33,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 33,
"display_sold_count_text": "33"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ALWAYS BAHAGIA Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91,
97
]
},
"itemid": 25287937756,
"shopid": 15287203,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-md6yl1lpg6qvf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1400066568,1718093079,1059152,700005489,822059908662278,822120592853526,834403089593352,1000031,1400285055,2018619,2018618,1213641,825465608497696,2153644,1015914,700190087,2213652,2008656,298458398,298458396,1718088045,298468389,298468390,1718093084,1718088044],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4827,\"model_id\":205524940115,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-md6yl1lpg6qvf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1400066568,1718093079,1059152,700005489,822059908662278,822120592853526,834403089593352,1000031,1400285055,2018619,2018618,1213641,825465608497696,2153644,1015914,700190087,2213652,2008656,298458398,298458396,1718088045,298468389,298468390,1718093084,1718088044],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4827,\"model_id\":205524940115,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25287937756",
"debug_info": null
},
{
"item_basic": {
"itemid": 41072339850,
"shopid": 1582531231,
"name": "AC Reiwa Window 1/2 PK R32 CW-0501RA / CW-0501RA",
"label_ids": [
844931064601283,
844931086908638,
298463379,
1718093079,
1049128,
700005504,
822059908662278,
825465608499232,
834403089593352,
825465608497696,
1015914,
700190087,
2048660,
2048661,
700765096,
2023641,
2108629,
2018619,
1718088045,
298468389
],
"image": "id-11134207-81zte-mf91z5njponh0f",
"images": [
"id-11134207-81zte-mf91z5njponh0f",
"id-11134207-81ztl-mf91z5ouf2fi38",
"id-11134207-81ztf-mf91z5nsly4o81",
"id-11134207-81zth-mf91z5nj0efd5e",
"id-11134207-81ztm-mf91z5nt1edlf0",
"id-11134207-81ztk-mf91z5njmvil19",
"id-11134207-81ztm-mf91z5ngfoy695",
"id-11134207-81zte-mf91z5njoa3118",
"id-11134207-81ztg-mf91z5njr37x99"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1759195394,
"sold": 2,
"historical_sold": 4,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 219500000000,
"price_min": 219500000000,
"price_max": 219500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
"thumb_url": "id-11110107-6vena-mf921xk5girwd8_cover",
"duration": 14,
"version": 2,
"vid": "id-11110107-6vena-mf921xk5girwd8",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.16000031759195148.mp4",
"width": 480,
"height": 608
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vena-mf921xk5girwd8.default.mp4",
"width": 506,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "TIPE",
"options": [
"1/2 PK",
"1PK"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 219500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 350080551106,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 219500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 4,
"rounded_local_monthly_sold_count": 2,
"local_monthly_sold_count_text": "2",
"rounded_display_sold_count": 4,
"display_sold_count_text": "4"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "CIPTA ABADI 888",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000
]
},
"itemid": 41072339850,
"shopid": 1582531231,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-mf91z5njponh0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2048660,2048661,700765096,2023641,2108629,2018619,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":704,\"model_id\":350080551106,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zte-mf91z5njponh0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,2048660,2048661,700765096,2023641,2108629,2018619,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":704,\"model_id\":350080551106,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41072339850",
"debug_info": null
},
{
"item_basic": {
"itemid": 25391293614,
"shopid": 102037641,
"name": "AC Window Reiwa CW-0901RA 1 PK - GW0901RA 1pk",
"label_ids": [
844931064601283,
298463379,
1718093079,
2018619,
2023641,
1059154,
1059152,
825465608497696,
822059908662278,
837860934119952,
822120592853526,
834403089593352,
298623321,
998091078,
1993623,
1718088045,
298468389
],
"image": "sg-11134201-7rbkd-m63urvnq4jggd4",
"images": [
"sg-11134201-7rbkd-m63urvnq4jggd4",
"sg-11134201-7rbnc-m63urvsfxosgc6",
"sg-11134201-7rbmx-m63urvy9p3zo13",
"sg-11134201-7rbmu-m63urwar6u803c",
"sg-11134201-7rbka-m63urwg0z5y68e",
"sg-11134201-7rbls-m63urwroi2by51"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1739267073,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 243299900000,
"price_min": 243299900000,
"price_max": 243299900000,
"price_min_before_discount": 253000000000,
"price_max_before_discount": 253000000000,
"hidden_price_display": null,
"price_before_discount": 253000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-4%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 324,
"promotion_id": 10000010290,
"price": 243299900000,
"strikethrough_price": 253000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-4%",
"model_id": 198205820299,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 253000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "KiosElektronik",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 25391293614,
"shopid": 102037641,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rbkd-m63urvnq4jggd4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,2018619,2023641,1059154,1059152,825465608497696,822059908662278,837860934119952,822120592853526,834403089593352,298623321,998091078,1993623,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4646,\"model_id\":198205820299,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rbkd-m63urvnq4jggd4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,2018619,2023641,1059154,1059152,825465608497696,822059908662278,837860934119952,822120592853526,834403089593352,298623321,998091078,1993623,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4646,\"model_id\":198205820299,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25391293614",
"debug_info": null
},
{
"item_basic": {
"itemid": 40707202325,
"shopid": 127092802,
"name": "WINDOW AC 1/2 PK REIWA CW0501RA / TANPA PIPA AC / WINDOW AIR CONDITIONER 0,5 PK PALEMBANG",
"label_ids": [
2018619,
1718087960,
1428713,
844931064601283,
1049128,
700005504,
822059908662278,
825465608499232,
834403089593352,
825465608497696,
1015914,
700190087,
1400285055,
1718093079,
1718093065,
700830032,
844931086908638,
825465608492064,
822120592853526,
2023641,
298933384,
2048660,
2048661,
700765096,
700810080,
298463379,
1718088045,
298468389
],
"image": "id-11134207-7ra0h-mc1z4t0669893f",
"images": [
"id-11134207-7ra0h-mc1z4t0669893f",
"id-11134207-7ra0p-mc1z4t067nsp22",
"id-11134207-7ra0r-mc1z4t0692d5c5",
"id-11134207-7ra0h-mc1z4t06agxl21",
"id-11134207-7ra0l-mc1z4t0621ix5a",
"id-11134207-7ra0k-mc1z4t063g3d62",
"id-11134207-7ra0o-mc1z4t064unt30",
"id-11134207-7ra0r-mc1z4t06bvi100"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1751554249,
"sold": 0,
"historical_sold": 9,
"liked": false,
"liked_count": 28,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 5,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 220000000000,
"price_min": 220000000000,
"price_max": 220000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6kouh-mcw8m67o3lgj03.16000091754060757.mp4",
"thumb_url": "id-11110107-6kouh-mcw8m67o3lgj03_cover",
"duration": 60,
"version": 2,
"vid": "id-11110107-6kouh-mcw8m67o3lgj03",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6kouh-mcw8m67o3lgj03.16000091754060757.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kouh-mcw8m67o3lgj03.16000091754060757.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kouh-mcw8m67o3lgj03.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 3,
"rcount_with_image": 4
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 220000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 305609610551,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 220000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 9,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 9,
"display_sold_count_text": "9"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sinarjaya688",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000
]
},
"itemid": 40707202325,
"shopid": 127092802,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mc1z4t0669893f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,1400285055,1718093079,1718093065,700830032,844931086908638,825465608492064,822120592853526,2023641,298933384,2048660,2048661,700765096,700810080,298463379,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2602,\"model_id\":305609610551,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0h-mc1z4t0669893f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,1049128,700005504,822059908662278,825465608499232,834403089593352,825465608497696,1015914,700190087,1400285055,1718093079,1718093065,700830032,844931086908638,825465608492064,822120592853526,2023641,298933384,2048660,2048661,700765096,700810080,298463379,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":2602,\"model_id\":305609610551,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40707202325",
"debug_info": null
},
{
"item_basic": {
"itemid": 41904695535,
"shopid": 948608327,
"name": "AC Window REIWA 0501 Standard 0,5 PK - AC Reiwa 1/2PK Low Watt - AC Window bisa pasang sendiri",
"label_ids": [
844931064601283,
1718093065,
1428713,
1718087960,
2018619,
1400285055,
1015914,
700190087,
700830032,
700765096,
298463379,
1718093079,
1049117,
1049116,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
298933384,
2108629,
2023641,
1718088045,
298468389
],
"image": "id-11134207-7ra0s-mb3w0o6hgup7ab",
"images": [
"id-11134207-7ra0s-mb3w0o6hgup7ab"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1750077540,
"sold": 0,
"historical_sold": 36,
"liked": false,
"liked_count": 13,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 17,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 202500000000,
"price_min": 202500000000,
"price_max": 202500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"Kardus",
"Paking kayu"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.823529411764706,
"rating_count": [
17,
0,
0,
0,
3,
14
],
"rcount_with_context": 12,
"rcount_with_image": 9
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 202500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 300398624269,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 202500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 36,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 36,
"display_sold_count_text": "36"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Elektronic New Palapa rungkut",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
1000,
1000,
0,
1000
]
},
"itemid": 41904695535,
"shopid": 948608327,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mb3w0o6hgup7ab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093065,1428713,1718087960,2018619,1400285055,1015914,700190087,700830032,700765096,298463379,1718093079,1049117,1049116,822059908662278,825465608499232,825465608497696,2048660,2048661,298933384,2108629,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":3744,\"model_id\":300398624269,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0s-mb3w0o6hgup7ab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093065,1428713,1718087960,2018619,1400285055,1015914,700190087,700830032,700765096,298463379,1718093079,1049117,1049116,822059908662278,825465608499232,825465608497696,2048660,2048661,298933384,2108629,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":3744,\"model_id\":300398624269,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41904695535",
"debug_info": null
},
{
"item_basic": {
"itemid": 56903044971,
"shopid": 1697720829,
"name": "AC Window Reiwa 1/2PK CW 0501RA Low Watt 5000Btu Refrigerant R32 Direct Cooling Tanpa Instalasi Pipa",
"label_ids": [
844931064601283,
1400066568,
298463379,
1049116,
700005516,
1718093079,
822059908662278,
825465608497696,
1428713,
1718087960,
298488495,
298933384,
299033477,
1015914,
700190087,
2023641,
2108629,
298468389,
1718088045
],
"image": "id-11134207-82252-mjgls978s0zk00",
"images": [
"id-11134207-82252-mjgls978s0zk00",
"id-11134207-8224q-mi88fes0datk5e",
"id-11134207-8224w-mi88fes09348b2",
"id-11134207-8224q-mi88fes0ahood3",
"id-11134207-8224p-mi88fes07ojs4a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765683800,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 204900000000,
"price_min": 204900000000,
"price_max": 204900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvf-mi88hntqfzlwd1.16000081765683158.mp4",
"thumb_url": "id-11110105-6vdvf-mi88hntqfzlwd1_cover",
"duration": 15,
"version": 2,
"vid": "id-11110105-6vdvf-mi88hntqfzlwd1",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvf-mi88hntqfzlwd1.16000081765683158.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mi88hntqfzlwd1.16000081765683158.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mi88hntqfzlwd1.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 415519434092727,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sidoarjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 204500000000,
"strikethrough_price": 204900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1309213562388480,
"discount_text": null,
"model_id": 262253916752,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1309213562388480,
"voucher_code": "UNIV4000",
"voucher_discount": 400000000,
"time_info": {
"start_time": 1765529640,
"end_time": 1773568920,
"valid_duration": null
},
"groups": [],
"min_spend": 199900000000
},
"recommended_platform_voucher_info": null,
"original_price": 204900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UNIVITECH",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 56903044971,
"shopid": 1697720829,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjgls978s0zk00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,298463379,1049116,700005516,1718093079,822059908662278,825465608497696,1428713,1718087960,298488495,298933384,299033477,1015914,700190087,2023641,2108629,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3204,\"model_id\":262253916752,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjgls978s0zk00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,298463379,1049116,700005516,1718093079,822059908662278,825465608497696,1428713,1718087960,298488495,298933384,299033477,1015914,700190087,2023641,2108629,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3204,\"model_id\":262253916752,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56903044971",
"debug_info": null
},
{
"item_basic": {
"itemid": 25938588217,
"shopid": 42517678,
"name": "AC WINDOWS 1/2PK 05PK REIWA AC REIWA 0.5Pk CW-0501RA 1/2Pk Window Air Conditioner 0.5 Pk 1/2 Pk Ac Portable Ac Duduk Garansi Resmi",
"label_ids": [
1000167,
1428713,
1718087960,
844931064601283,
298463379,
2018619,
2023641,
1015914,
700190087,
1718093079,
1400285055,
700005505,
1049134,
822059908662278,
825465608499232,
825465608497696,
822120592853526,
700830032,
298933384,
2068629,
298938357,
298468389,
2098629,
2098628,
298938368,
1718088045
],
"image": "id-11134207-7rasi-m2uo7ba7dpslec",
"images": [
"id-11134207-7rasi-m2uo7ba7dpslec",
"id-11134207-7rash-m2uo7ba7f4d1c6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732180243,
"sold": 0,
"historical_sold": 10,
"liked": false,
"liked_count": 22,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 6,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 239900000000,
"price_min": 239900000000,
"price_max": 239900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
6,
0,
0,
0,
0,
6
],
"rcount_with_context": 3,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 239900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 215574292952,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 239900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 10,
"display_sold_count_text": "10"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "putra elektronik pontianak",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000,
0,
1000,
88,
97
]
},
"itemid": 25938588217,
"shopid": 42517678,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2uo7ba7dpslec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1428713,1718087960,844931064601283,298463379,2018619,2023641,1015914,700190087,1718093079,1400285055,700005505,1049134,822059908662278,825465608499232,825465608497696,822120592853526,700830032,298933384,2068629,298938357,298468389,2098629,2098628,298938368,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":3251,\"model_id\":215574292952,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2uo7ba7dpslec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1428713,1718087960,844931064601283,298463379,2018619,2023641,1015914,700190087,1718093079,1400285055,700005505,1049134,822059908662278,825465608499232,825465608497696,822120592853526,700830032,298933384,2068629,298938357,298468389,2098629,2098628,298938368,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":3251,\"model_id\":215574292952,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25938588217",
"debug_info": null
},
{
"item_basic": {
"itemid": 43712002743,
"shopid": 1341982589,
"name": "REIWA AC Window CW-0501RA / CW0901RA Pendingin Ruangan",
"label_ids": [
2018619,
2023641,
844931064601283,
298463379,
1049134,
700005505,
822059908662278,
822120592853526,
1718093065,
2068629,
298938357,
825465608497696,
1718093079,
1400066568,
1718088045,
2098629,
298938368,
298468389,
2098628
],
"image": "id-11134207-8224w-mhww6g0bop342a",
"images": [
"id-11134207-8224w-mhww6g0bop342a",
"id-11134207-8224s-mhww6g0bq3nkea",
"id-11134207-82251-mhww6g0bri8002",
"id-11134207-8224r-mhww6g0bswsged",
"id-11134207-7ra0h-md5gcl8a8v2451"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1754649540,
"sold": 0,
"historical_sold": 3,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 3,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 239900000000,
"price_min": 239900000000,
"price_max": 239900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vemw-mhwzvii78qo06e.16000101765002793.mp4",
"thumb_url": "id-11110105-6vemw-mhwzvii78qo06e_cover",
"duration": 27,
"version": 2,
"vid": "id-11110105-6vemw-mhwzvii78qo06e",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vemw-mhwzvii78qo06e.16000101765002793.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mhwzvii78qo06e.16000101765002793.mp4",
"width": 540,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mhwzvii78qo06e.default.mp4",
"width": 540,
"height": 720
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Ukuran",
"options": [
"CW-0501RA",
"CW-0901RA"
],
"images": [
"id-11134207-7ra0m-md5gcl8aa9mk35",
"id-11134207-7ra0g-md5gcl8abo70b1"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.666666666666667,
"rating_count": [
3,
0,
0,
0,
1,
2
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp799RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 239900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 306005415472,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 239900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp799RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Eraya Elektronik Online",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
1000,
1000,
0,
1000
]
},
"itemid": 43712002743,
"shopid": 1341982589,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhww6g0bop342a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049134,700005505,822059908662278,822120592853526,1718093065,2068629,298938357,825465608497696,1718093079,1400066568,1718088045,2098629,298938368,298468389,2098628],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":3564,\"model_id\":306005415472,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhww6g0bop342a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049134,700005505,822059908662278,822120592853526,1718093065,2068629,298938357,825465608497696,1718093079,1400066568,1718088045,2098629,298938368,298468389,2098628],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":3564,\"model_id\":306005415472,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43712002743",
"debug_info": null
},
{
"item_basic": {
"itemid": 27716968233,
"shopid": 17470865,
"name": "Reiwa AC Window 1 PK CW-0901RA 775 watt",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
834403089593352,
825465608497696,
822120592853526,
825465608499232,
825465608494624,
837860934119952,
1000031,
1400285055,
298463379,
2018619,
2018618,
1918643,
1718093079,
700700063,
1012763,
1015914,
700190087,
2048661,
2048660,
298893311,
700765096,
2108629,
298933384,
2153644,
700750053,
2213652,
1428713,
1718087960,
2008656,
298468389,
1718088045
],
"image": "id-11134207-7rase-m3uc9lmwy1en96",
"images": [
"id-11134207-7rase-m3uc9lmwy1en96",
"id-11134207-7rase-m2c55a5fyeryec",
"id-11134207-7rasg-m2c55a5g17wu09",
"id-11134207-7rask-m2c55a5fztce15",
"id-11134207-7rask-m2c55a5g2mhaab"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1731052095,
"sold": 5,
"historical_sold": 33,
"liked": false,
"liked_count": 76,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 18,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 259900000000,
"price_min": 259900000000,
"price_max": 259900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "packing",
"options": [
"wrapping",
"packing kayu"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.888888888888889,
"rating_count": [
18,
0,
0,
1,
0,
17
],
"rcount_with_context": 4,
"rcount_with_image": 4
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 259900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 260559009487,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 259900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 33,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 33,
"display_sold_count_text": "33"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "STARLYN Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
97
]
},
"itemid": 27716968233,
"shopid": 17470865,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m3uc9lmwy1en96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,834403089593352,825465608497696,822120592853526,825465608499232,825465608494624,837860934119952,1000031,1400285055,298463379,2018619,2018618,1918643,1718093079,700700063,1012763,1015914,700190087,2048661,2048660,298893311,700765096,2108629,298933384,2153644,700750053,2213652,1428713,1718087960,2008656,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4484,\"model_id\":260559009487,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m3uc9lmwy1en96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,834403089593352,825465608497696,822120592853526,825465608499232,825465608494624,837860934119952,1000031,1400285055,298463379,2018619,2018618,1918643,1718093079,700700063,1012763,1015914,700190087,2048661,2048660,298893311,700765096,2108629,298933384,2153644,700750053,2213652,1428713,1718087960,2008656,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4484,\"model_id\":260559009487,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27716968233",
"debug_info": null
},
{
"item_basic": {
"itemid": 26330156051,
"shopid": 1217324123,
"name": "AC REIWA CW-0901RA AC WINDOW 1 PK",
"label_ids": [
844931064601283,
298463379,
1059152,
1059154,
1718093079,
822059908662278,
837860934119952,
825465608492064,
825465608497696,
1213641,
2018619,
2048660,
2048661,
844931086908638,
700765096,
1718088045,
1718088044,
1718093084,
298468390,
298458398,
298458396,
298468389
],
"image": "id-11134207-7rbk0-m7j6a852285ge3",
"images": [
"id-11134207-7rbk0-m7j6a852285ge3",
"id-11134207-7rbk2-m7j6a8523mpw9d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1742374178,
"sold": 0,
"historical_sold": 2,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 249900000000,
"price_min": 249900000000,
"price_max": 249900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "VARIASI",
"options": [
"UNIT ONLY",
"UNIT+PASANG"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 249900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 216099495180,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 249900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "MASTERCOOL INDONESIA",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26330156051,
"shopid": 1217324123,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m7j6a852285ge3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1059152,1059154,1718093079,822059908662278,837860934119952,825465608492064,825465608497696,1213641,2018619,2048660,2048661,844931086908638,700765096,1718088045,1718088044,1718093084,298468390,298458398,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5111,\"model_id\":216099495180,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m7j6a852285ge3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1059152,1059154,1718093079,822059908662278,837860934119952,825465608492064,825465608497696,1213641,2018619,2048660,2048661,844931086908638,700765096,1718088045,1718088044,1718093084,298468390,298458398,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5111,\"model_id\":216099495180,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26330156051",
"debug_info": null
},
{
"item_basic": {
"itemid": 25333864260,
"shopid": 212026963,
"name": "Ac Window 1/2 PK Reiwa CW-0501RA CW 0501RA",
"label_ids": [
700025282,
1049112,
1049127,
822059908662278,
1213641,
2018619,
822120592853526,
825465608497696,
2048661,
2048660,
700765096,
1718093079,
298463379,
298933384,
700810080,
298468389,
1718088044,
298458396,
298458398,
1718088045,
298468390,
1718093084
],
"image": "id-11134207-8224v-mgho0llk7y1a9a",
"images": [
"id-11134207-8224v-mgho0llk7y1a9a",
"id-11134207-7r98o-ly3155f86qmzc9",
"id-11134207-7r98v-ly3155f8857fbf"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1721783814,
"sold": 0,
"historical_sold": 4,
"liked": false,
"liked_count": 12,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 210000000000,
"price_min": 210000000000,
"price_max": 210000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 210000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 236575196615,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 210000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 4,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 4,
"display_sold_count_text": "4"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ABC ELEKTRONIK 123",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000
]
},
"itemid": 25333864260,
"shopid": 212026963,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgho0llk7y1a9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,1049127,822059908662278,1213641,2018619,822120592853526,825465608497696,2048661,2048660,700765096,1718093079,298463379,298933384,700810080,298468389,1718088044,298458396,298458398,1718088045,298468390,1718093084],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3282,\"model_id\":236575196615,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgho0llk7y1a9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,1049127,822059908662278,1213641,2018619,822120592853526,825465608497696,2048661,2048660,700765096,1718093079,298463379,298933384,700810080,298468389,1718088044,298458396,298458398,1718088045,298468390,1718093084],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3282,\"model_id\":236575196615,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25333864260",
"debug_info": null
},
{
"item_basic": {
"itemid": 26826571846,
"shopid": 1366248929,
"name": "Ac Window Reiwa 1 Pk - CW-0901RA",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608497696,
825465608494624,
825465608499232,
2018619,
2048661,
2048660,
700765096,
298933384,
844931086908638
],
"image": "id-11134207-7rbkc-m9n3p0l5lan1a7",
"images": [
"id-11134207-7rbkc-m9n3p0l5lan1a7",
"id-11134207-7rbk5-m9h2nc8wshyzfd",
"id-11134207-7rbk6-m9h2nc8x55alf9",
"id-11134207-7rbkd-m9h2nc8x7y7hf6",
"id-11134207-7rbk3-m9h2nc8wshylef"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1739869875,
"sold": 0,
"historical_sold": 6,
"liked": false,
"liked_count": 4,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 236500000000,
"price_min": 236500000000,
"price_max": 236500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmj6-m9h2nlzwit8ybe.16000081746604997.mp4",
"thumb_url": "id-11110105-6kmj6-m9h2nlzwit8ybe_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6kmj6-m9h2nlzwit8ybe",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj6-m9h2nlzwit8ybe.16000081746604997.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj6-m9h2nlzwit8ybe.16000081746604997.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj6-m9h2nlzwit8ybe.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 236500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 138219255580,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 236500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 6,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 6,
"display_sold_count_text": "6"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Viviย Electrindo Official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26826571846,
"shopid": 1366248929,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m9n3p0l5lan1a7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,2018619,2048661,2048660,700765096,298933384,844931086908638],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4540,\"model_id\":138219255580,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m9n3p0l5lan1a7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608494624,825465608499232,2018619,2048661,2048660,700765096,298933384,844931086908638],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4540,\"model_id\":138219255580,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26826571846",
"debug_info": null
},
{
"item_basic": {
"itemid": 27267141698,
"shopid": 31400119,
"name": "AC Window Reiwa 1 PK CW-0901RA R32 1PK Garansi Resmi - Instalasi Mudah",
"label_ids": [
1400066568,
1000167,
844931064601283,
1000031,
2018619,
298463379,
700005490,
700005510,
822059908662278,
825465608497696,
822120592853526,
834403089593352,
1718093079,
844931086908638,
298933384,
2023641,
298623321,
1993623,
998091078,
1718088045,
298468389
],
"image": "id-11134207-7rasf-m2et3lwobq03ad",
"images": [
"id-11134207-7rasf-m2et3lwobq03ad"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1731213312,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 244899900000,
"price_min": 244899900000,
"price_max": 244899900000,
"price_min_before_discount": 246736700000,
"price_max_before_discount": 246736700000,
"hidden_price_display": null,
"price_before_discount": 246736700000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-1%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1b-m31lnjc4f9hf02.16000101732592951.mp4",
"thumb_url": "id-11110105-7rasi-m31lnom6toya02",
"duration": 60,
"version": 2,
"vid": "id-11110105-6ke1b-m31lnjc4f9hf02",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1b-m31lnjc4f9hf02.16000101732592951.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m31lnjc4f9hf02.16000101732592951.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m31lnjc4f9hf02.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 324,
"promotion_id": 10000017140,
"price": 244899900000,
"strikethrough_price": 246736700000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-1%",
"model_id": 237002587247,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 246736700000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "multielektronik1",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27267141698,
"shopid": 31400119,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m2et3lwobq03ad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1000167,844931064601283,1000031,2018619,298463379,700005490,700005510,822059908662278,825465608497696,822120592853526,834403089593352,1718093079,844931086908638,298933384,2023641,298623321,1993623,998091078,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4393,\"model_id\":237002587247,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasf-m2et3lwobq03ad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1000167,844931064601283,1000031,2018619,298463379,700005490,700005510,822059908662278,825465608497696,822120592853526,834403089593352,1718093079,844931086908638,298933384,2023641,298623321,1993623,998091078,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4393,\"model_id\":237002587247,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27267141698",
"debug_info": null
},
{
"item_basic": {
"itemid": 28916352789,
"shopid": 144447241,
"name": "AC Window Reiwa 1PK CW 0901RA Low Watt 9000Btu Refrigerant R32 Direct Cooling Tanpa Instalasi Pipa",
"label_ids": [
1400066568,
1000167,
844931064601283,
822059908662278,
825465608492064,
1718093079,
700005516,
1049116,
1918643,
1400285055,
1213641,
1015914,
700190087,
1000031,
2018619,
825465608497696,
844931086908638,
298933384,
2068629,
298938357,
2098629,
298458396,
1718093084
],
"image": "id-11134207-8224r-mgnl8zqk7u3320",
"images": [
"id-11134207-8224r-mgnl8zqk7u3320",
"id-11134207-7rasg-m2b0cfnxeuv417",
"id-11134207-7rash-m2b0cfnxg9fkb7",
"id-11134207-7rash-m2b0cfnxho007d",
"id-11134207-7rash-m2b0cfnxj2kgb1",
"id-11134207-7rask-m2b2p2tg2ssu7c",
"id-11134207-7rasi-m2b2p2tg47da19",
"id-11134207-7rasi-m2f2mp6dw72bd7",
"id-11134207-7ras9-m2f2mp6dz07772"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730555881,
"sold": 0,
"historical_sold": 79,
"liked": false,
"liked_count": 154,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 41,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 199778000000,
"price_min": 199778000000,
"price_max": 199778000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke16-m28zwv1sdscj8c.16000081730861430.mp4",
"thumb_url": "id-11110105-7rasb-m28zx0wntjtj33",
"duration": 15,
"version": 2,
"vid": "id-11110105-6ke16-m28zwv1sdscj8c",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke16-m28zwv1sdscj8c.16003251732988188.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-m28zwv1sdscj8c.16003251732988188.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke16-m28zwv1sdscj8c.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Kapasitas",
"options": [
"1/2PK (CW-0501RA)",
"1PK (CW-0901RA)"
],
"images": [
"id-11134207-8224p-mgnl8zqk50y769",
"id-11134207-8224t-mgnl8zqk6fin4b"
],
"properties": [],
"type": 0
},
{
"name": "Paket Bonus",
"options": [
"AC Only",
"AC + Packing Kayu"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.878048780487805,
"rating_count": [
41,
1,
0,
0,
1,
39
],
"rcount_with_context": 14,
"rcount_with_image": 7
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sidoarjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199478000000,
"strikethrough_price": 199778000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1293973935374336,
"discount_text": null,
"model_id": 420072535811,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1293973935374336,
"voucher_code": "GRAN1499",
"voucher_discount": 300000000,
"time_info": {
"start_time": 1763713440,
"end_time": 1771752240,
"valid_duration": null
},
"groups": [],
"min_spend": 149900000000
},
"recommended_platform_voucher_info": null,
"original_price": 199778000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 79,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 79,
"display_sold_count_text": "79"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "grandivo",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
88
]
},
"itemid": 28916352789,
"shopid": 144447241,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mgnl8zqk7u3320\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1000167,844931064601283,822059908662278,825465608492064,1718093079,700005516,1049116,1918643,1400285055,1213641,1015914,700190087,1000031,2018619,825465608497696,844931086908638,298933384,2068629,298938357,2098629,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4276,\"model_id\":420072535811,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mgnl8zqk7u3320\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1000167,844931064601283,822059908662278,825465608492064,1718093079,700005516,1049116,1918643,1400285055,1213641,1015914,700190087,1000031,2018619,825465608497696,844931086908638,298933384,2068629,298938357,2098629,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4276,\"model_id\":420072535811,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28916352789",
"debug_info": null
},
{
"item_basic": {
"itemid": 28653651024,
"shopid": 1214971896,
"name": "REIWA AC Window 1/2 PK CW-0501RA AC Low Watt 0,5 PK",
"label_ids": [
844931064601283,
1059156,
700000553,
822059908662278,
1718093079,
1000031,
1213641,
1015914,
700190087,
1400285055,
2018619,
825465608497696,
298463379,
2048660,
2048661,
700765096,
2023641,
2068629,
298938357,
700810080,
1718093084,
1718088045,
2098629,
1718088044,
298458398,
298468389,
298458396,
2098628,
298938368,
298468390
],
"image": "id-11134207-7rbk0-m9y3keg95xjxb4",
"images": [
"id-11134207-7rbk0-m9y3keg95xjxb4",
"id-11134207-7r98w-lwxmpwzry7il4a",
"id-11134207-7r98t-lwxms95yqhii43",
"id-11134207-7r98q-lwxmpwzrwsve90",
"id-11134207-7r98z-lwxmppyq8i8r70",
"id-11134207-7r98u-lwxmpwzrwsy58e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1719277365,
"sold": 0,
"historical_sold": 9,
"liked": false,
"liked_count": 17,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 6,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 220000000000,
"price_min": 220000000000,
"price_max": 220000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
6,
0,
0,
0,
0,
6
],
"rcount_with_context": 2,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tegal",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp733RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 220000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 166541272953,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 220000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 9,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 9,
"display_sold_count_text": "9"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp733RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Mataram Tegal",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
97
]
},
"itemid": 28653651024,
"shopid": 1214971896,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m9y3keg95xjxb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000553,822059908662278,1718093079,1000031,1213641,1015914,700190087,1400285055,2018619,825465608497696,298463379,2048660,2048661,700765096,2023641,2068629,298938357,700810080,1718093084,1718088045,2098629,1718088044,298458398,298468389,298458396,2098628,298938368,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":1281,\"model_id\":166541272953,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m9y3keg95xjxb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000553,822059908662278,1718093079,1000031,1213641,1015914,700190087,1400285055,2018619,825465608497696,298463379,2048660,2048661,700765096,2023641,2068629,298938357,700810080,1718093084,1718088045,2098629,1718088044,298458398,298468389,298458396,2098628,298938368,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":1281,\"model_id\":166541272953,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28653651024",
"debug_info": null
},
{
"item_basic": {
"itemid": 24638538780,
"shopid": 234197686,
"name": "REIWA Ac Window 1 PK - CW0901RA - 100% ORI",
"label_ids": [
1428713,
1718087960,
844931064601283,
844931086908638,
1059152,
700005489,
1718093079,
822059908662278,
825465608499232,
834403089593352,
825465608497696,
837860934119952,
1000031,
2018619,
2023641,
1015914,
700190087,
298463379,
298468389,
1718088045
],
"image": "id-11134207-7rasi-m2tcgm1dcf8161",
"images": [
"id-11134207-7rasi-m2tcgm1dcf8161",
"id-11134207-7ras9-m2tcgm1ddtshdd",
"id-11134207-7rash-m2tcgm1df8cx95"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732095947,
"sold": 0,
"historical_sold": 2,
"liked": false,
"liked_count": 10,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 244500000000,
"price_min": 244500000000,
"price_max": 244500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 244500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 59489284990,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 244500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ReeSeLL",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 24638538780,
"shopid": 234197686,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2tcgm1dcf8161\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1059152,700005489,1718093079,822059908662278,825465608499232,834403089593352,825465608497696,837860934119952,1000031,2018619,2023641,1015914,700190087,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4461,\"model_id\":59489284990,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2tcgm1dcf8161\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1059152,700005489,1718093079,822059908662278,825465608499232,834403089593352,825465608497696,837860934119952,1000031,2018619,2023641,1015914,700190087,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4461,\"model_id\":59489284990,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24638538780",
"debug_info": null
},
{
"item_basic": {
"itemid": 40511260787,
"shopid": 1086389122,
"name": "WINDOW AC 1 PK REIWA CW-0901RA /INSTALASI MUDAH/TANPA PIPA/ WINDOW AIR CONDITIONER 1PK",
"label_ids": [
2018619,
1428713,
1718087960,
844931064601283,
298463379,
1049128,
700005504,
1718093079,
822059908662278,
834403089593352,
825465608497696,
825465608492064,
825465608499232,
1015914,
700190087,
1718093065,
2048660,
2048661,
700765096,
2023641,
298933384,
844931086908638,
2068629,
298938357,
298468389,
1718088045,
2098628,
2098629,
298938368
],
"image": "sg-11134201-7rdyt-mcx71v1784iuc3",
"images": [
"sg-11134201-7rdyt-mcx71v1784iuc3",
"sg-11134201-7rdvx-mcx71uvxfu9209",
"sg-11134201-7rdwu-mcx71uq3od7q4a",
"sg-11134201-7rdxy-mcx71v5x17snc3",
"sg-11134201-7rdyw-mcx71vawtwx296",
"sg-11134201-7rdy2-mcx71vhupdivf9",
"sg-11134201-7rdya-mcx71vned2s4a9",
"sg-11134201-7rdyg-mcx71vso3yhg66",
"sg-11134201-7rdwi-mcx71vzvtd1qf8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1754118658,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 289900000000,
"price_min": 289900000000,
"price_max": 289900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ko2b-mcx830mbtuljaa.16000041754120401.mp4",
"thumb_url": "id-11110107-6ko2b-mcx830mbtuljaa_cover",
"duration": 52,
"version": 2,
"vid": "id-11110107-6ko2b-mcx830mbtuljaa",
"formats": [
{
"format": 1600004,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ko2b-mcx830mbtuljaa.16000041754120401.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko2b-mcx830mbtuljaa.16000041754120401.mp4",
"width": 360,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko2b-mcx830mbtuljaa.default.mp4",
"width": 360,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp966RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 289900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 270944340780,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 289900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp966RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sinarjaya1688",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000,
88
]
},
"itemid": 40511260787,
"shopid": 1086389122,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdyt-mcx71v1784iuc3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1049128,700005504,1718093079,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1015914,700190087,1718093065,2048660,2048661,700765096,2023641,298933384,844931086908638,2068629,298938357,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":2672,\"model_id\":270944340780,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdyt-mcx71v1784iuc3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1049128,700005504,1718093079,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1015914,700190087,1718093065,2048660,2048661,700765096,2023641,298933384,844931086908638,2068629,298938357,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\",\"ac window\"],\"merge_rank\":2672,\"model_id\":270944340780,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40511260787",
"debug_info": null
},
{
"item_basic": {
"itemid": 24324027411,
"shopid": 825863,
"name": "REIWA AC Window 1/2 PK CW-0501RA AC Low Watt 0,5 PK - Khusus Jabotabek",
"label_ids": [
47,
1000167,
1059152,
700005487,
822059908662278,
844931064601283,
844931086908638,
1000031,
1400066568,
1718087960,
1428713,
1400285055,
1015914,
700190087,
825465608499232,
1718093079,
825465608494624,
1918643,
2018619,
825465608497696,
298463379,
298933384,
1718088045,
298468389
],
"image": "id-11134207-7r98z-lu39oxla5wunbf",
"images": [
"id-11134207-7r98z-lu39oxla5wunbf",
"id-11134207-7r98z-lu39oxla7bf3ef",
"id-11134207-7r98r-lu39oxla8pzja7",
"id-11134207-7rasb-m1mecmvwj6fw93",
"id-11134207-7rase-m1mecmvwkl0c64"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1713080800,
"sold": 0,
"historical_sold": 25,
"liked": false,
"liked_count": 91,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 15,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 215000000000,
"price_min": 215000000000,
"price_max": 215000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke14-m1mfpllop4yn20.16000101729495700.mp4",
"thumb_url": "id-11110105-7rasg-m1mfppfb43lj8b",
"duration": 57,
"version": 2,
"vid": "id-11110105-6ke14-m1mfpllop4yn20",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke14-m1mfpllop4yn20.16000101729495700.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m1mfpllop4yn20.16000101729495700.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-m1mfpllop4yn20.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
17,
0,
0,
0,
0,
17
],
"rcount_with_context": 7,
"rcount_with_image": 6
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 215000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 118333438661,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 215000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 25,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 25,
"display_sold_count_text": "25"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Mega Solution",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 24324027411,
"shopid": 825863,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98z-lu39oxla5wunbf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1059152,700005487,822059908662278,844931064601283,844931086908638,1000031,1400066568,1718087960,1428713,1400285055,1015914,700190087,825465608499232,1718093079,825465608494624,1918643,2018619,825465608497696,298463379,298933384,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4218,\"model_id\":118333438661,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98z-lu39oxla5wunbf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1059152,700005487,822059908662278,844931064601283,844931086908638,1000031,1400066568,1718087960,1428713,1400285055,1015914,700190087,825465608499232,1718093079,825465608494624,1918643,2018619,825465608497696,298463379,298933384,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4218,\"model_id\":118333438661,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24324027411",
"debug_info": null
},
{
"item_basic": {
"itemid": 27132983145,
"shopid": 616226822,
"name": "AC WIDOW REIWA 1/2 Pk Tanpa Pipa / AC Pakai Freon R32 / AC REIWA Window 1/2 / AC PORTABLE / AC MOBILE / PENDINGIN RUANGAN",
"label_ids": [
2018619,
2023641,
844931064601283,
1049112,
700005512,
822059908662278,
825465608492064,
834403089593352,
1718093079,
1213641,
825465608499232,
825465608497696,
298463379,
844931086908638,
298933384,
1015914,
700190087,
1718093084,
298468389,
298468390,
298458398,
298458396,
1718088044,
1718088045
],
"image": "sg-11134201-7rdwc-mbt5quspuurd04",
"images": [
"sg-11134201-7rdwc-mbt5quspuurd04",
"sg-11134201-7rdx5-mbt5qv6lajxh3b",
"sg-11134201-7rdyg-mbt5qve2zmzga9",
"sg-11134201-7rdwn-mbt5qvlkvneh10",
"sg-11134201-7rdxa-mbt5qvu6dg1186",
"sg-11134201-7rdvz-mbt5qw2rzi32cf",
"sg-11134201-7rdxe-mbt5qw9ppcm41e",
"sg-11134201-7rdwk-mbt5qwgdfk7ua7",
"sg-11134201-7rdxt-mbt5qwpt4klybc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1744345159,
"sold": 0,
"historical_sold": 2,
"liked": false,
"liked_count": 6,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 199207300000,
"price_min": 199207300000,
"price_max": 199207300000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199207300000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 258147256956,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199207300000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Megajaya Sukses Abadi",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000,
0,
1000,
97
]
},
"itemid": 27132983145,
"shopid": 616226822,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdwc-mbt5quspuurd04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1718093079,1213641,825465608499232,825465608497696,298463379,844931086908638,298933384,1015914,700190087,1718093084,298468389,298468390,298458398,298458396,1718088044,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2573,\"model_id\":258147256956,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdwc-mbt5quspuurd04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1718093079,1213641,825465608499232,825465608497696,298463379,844931086908638,298933384,1015914,700190087,1718093084,298468389,298468390,298458398,298458396,1718088044,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":2573,\"model_id\":258147256956,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,1000,0,1000,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27132983145",
"debug_info": null
},
{
"item_basic": {
"itemid": 26279785437,
"shopid": 887499464,
"name": "REIWA AC PORTABLE WINDOW 1/2 PK CW-0501RA 0,5 PK",
"label_ids": [
2018619,
2023641,
844931064601283,
1718093079,
1049117,
1049116,
822059908662278,
825465608499232,
834403089593352,
825465608497696,
822120592853526,
825465608492064,
1213641,
1400285055,
298463379,
298933384,
2108629,
298458398,
298458396,
1718088044,
298468389,
1718093084,
298468390,
1718088045
],
"image": "id-11134207-7rbk9-m7eiwj0zkt1i9e",
"images": [
"id-11134207-7rbk9-m7eiwj0zkt1i9e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1742093074,
"sold": 1,
"historical_sold": 3,
"liked": false,
"liked_count": 15,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 206100000000,
"price_min": 206100000000,
"price_max": 206100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 206100000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 178785471374,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 206100000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "JASINDO SUKSES",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91,
97,
88
]
},
"itemid": 26279785437,
"shopid": 887499464,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m7eiwj0zkt1i9e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,1049117,1049116,822059908662278,825465608499232,834403089593352,825465608497696,822120592853526,825465608492064,1213641,1400285055,298463379,298933384,2108629,298458398,298458396,1718088044,298468389,1718093084,298468390,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":4307,\"model_id\":178785471374,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk9-m7eiwj0zkt1i9e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,1718093079,1049117,1049116,822059908662278,825465608499232,834403089593352,825465608497696,822120592853526,825465608492064,1213641,1400285055,298463379,298933384,2108629,298458398,298458396,1718088044,298468389,1718093084,298468390,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":4307,\"model_id\":178785471374,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,97,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26279785437",
"debug_info": null
},
{
"item_basic": {
"itemid": 26376262669,
"shopid": 10511402,
"name": "Reiwa AC Window 1/2 PK CW-0501RA",
"label_ids": [
844931064601283,
1059152,
700005489,
1718093079,
822059908662278,
825465608499232,
822120592853526,
825465608492064,
1213641,
2018619,
837860934119952,
825465608497696,
298463379,
2048660,
2048661,
700765096,
1718088045,
298458398,
1718093084,
298468389,
298468390,
298458396,
1718088044
],
"image": "id-11134207-7rbk7-m69enh4wal5kaf",
"images": [
"id-11134207-7rbk7-m69enh4wal5kaf",
"id-11134207-7rbk3-m69enh4wbzq08d",
"id-11134207-7rbk9-m69enh4wdeag72"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1739604015,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 138215763971,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "rinz olshop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000
]
},
"itemid": 26376262669,
"shopid": 10511402,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-m69enh4wal5kaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,822120592853526,825465608492064,1213641,2018619,837860934119952,825465608497696,298463379,2048660,2048661,700765096,1718088045,298458398,1718093084,298468389,298468390,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"air conditioner\"],\"merge_rank\":3420,\"model_id\":138215763971,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-m69enh4wal5kaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,822120592853526,825465608492064,1213641,2018619,837860934119952,825465608497696,298463379,2048660,2048661,700765096,1718088045,298458398,1718093084,298468389,298468390,298458396,1718088044],\"matched_keywords\":[\"ac window\",\"air conditioner\"],\"merge_rank\":3420,\"model_id\":138215763971,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26376262669",
"debug_info": null
},
{
"item_basic": {
"itemid": 26471943768,
"shopid": 104115537,
"name": "Ac Window Reiwa CW 0501 RA / CW0501RA, Air Conditioner Portable 0.5PK Low Watt Turbo Cooling",
"label_ids": [
844931064601283,
2018619,
1015914,
700190087,
700700063,
1400285055,
298463379,
1718093079,
700005490,
700005523,
1428713,
1718087960,
1400066568,
700765096,
298933384,
822059908662278,
825465608497696,
2048660,
2048661,
825465608494624,
822120592861206,
825465608499232,
298623321,
1993623,
998091078,
2023641,
1718088045,
298468389
],
"image": "id-11134207-7ra0o-mcer76cle2md25",
"images": [
"id-11134207-7ra0o-mcer76cle2md25",
"sg-11134201-7rcci-m66nrj7fwk0ob8",
"sg-11134201-7rccn-m66nriq8lopa9b",
"id-11134207-7rbk1-maxk5s5t0sv2a2",
"sg-11134201-7rcdc-m66nrhvzvcjy1f",
"id-11134207-7rbk4-maxk5s5t27fi4d",
"id-11134207-7rbk8-maxk5s5t3lzyb4",
"sg-11134201-7rcc5-m66nrhkccg5m10"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1735306649,
"sold": 0,
"historical_sold": 5,
"liked": false,
"liked_count": 16,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 4,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 198552100000,
"price_min": 198552100000,
"price_max": 198552100000,
"price_min_before_discount": 260000000000,
"price_max_before_discount": 260000000000,
"hidden_price_display": null,
"price_before_discount": 260000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-24%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kou9-mdv7dx2e99xs9f.16000081756177395.mp4",
"thumb_url": "id-11110105-6kou9-mdv7dx2e99xs9f_cover",
"duration": 15,
"version": 2,
"vid": "id-11110105-6kou9-mdv7dx2e99xs9f",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kou9-mdv7dx2e99xs9f.16000081756177395.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou9-mdv7dx2e99xs9f.16000081756177395.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou9-mdv7dx2e99xs9f.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "VARIASI",
"options": [
"CW0501RA + Bubble",
"CW 0501 RA + Kayu",
"CW 0901 RA + Bubble",
"CW 0901 RA + Kayu"
],
"images": [
"id-11134207-7ra0r-mcer76clfh6t83",
"sg-11134201-7rcd2-m66nqh83hi2yd4",
"id-11134201-8224o-mhy9llvnh24k2e",
"id-11134207-8224x-mhy9kk9ivu2sae"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
4,
0,
0,
0,
0,
4
],
"rcount_with_context": 4,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Serang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 324,
"promotion_id": 10000014360,
"price": 198352100000,
"strikethrough_price": 260000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1326463954075648,
"discount_text": "-24%",
"model_id": 370261743493,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1326463954075648,
"voucher_code": "AMBA001",
"voucher_discount": 200000000,
"time_info": {
"start_time": 1767586500,
"end_time": 1769836500,
"valid_duration": null
},
"groups": [],
"min_spend": 100000000
},
"recommended_platform_voucher_info": null,
"original_price": 260000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 5,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 5,
"display_sold_count_text": "5"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "TRISULA ELEKTRONIK SERANG",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26471943768,
"shopid": 104115537,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0o-mcer76cle2md25\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1015914,700190087,700700063,1400285055,298463379,1718093079,700005490,700005523,1428713,1718087960,1400066568,700765096,298933384,822059908662278,825465608497696,2048660,2048661,825465608494624,822120592861206,825465608499232,298623321,1993623,998091078,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4285,\"model_id\":370261743493,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0o-mcer76cle2md25\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1015914,700190087,700700063,1400285055,298463379,1718093079,700005490,700005523,1428713,1718087960,1400066568,700765096,298933384,822059908662278,825465608497696,2048660,2048661,825465608494624,822120592861206,825465608499232,298623321,1993623,998091078,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4285,\"model_id\":370261743493,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26471943768",
"debug_info": null
},
{
"item_basic": {
"itemid": 25717778883,
"shopid": 11252525,
"name": "Reiwa AC Window Air Conditioner 0.5 PK Pendingin Ruangan CW-0501RA",
"label_ids": [
1000167,
1400066568,
1134053,
844931064601283,
844931086908638,
1213641,
298458395,
1718087960,
1428713,
1015914,
700190087,
1718093079,
1918643,
1000031,
2018619,
2023641,
700700063,
700005489,
1059152,
822059908662278,
825465608497696,
837860934119952,
825465608492064,
825465608494624,
825465608499232,
2048660,
2048661,
1718093084,
298458396
],
"image": "sg-11134201-7rccu-lsnyahfh07ahe5",
"images": [
"sg-11134201-7rccu-lsnyahfh07ahe5",
"sg-11134201-7rce7-lsnyahk6talz7e",
"sg-11134201-7rcdy-lsnyahpgll2id4",
"sg-11134201-7rcc5-lsnyahyc8ky05e",
"sg-11134201-7rce4-lsnyai9zsxqxaa",
"sg-11134201-7rce6-lsnyaifjjeu251",
"sg-11134201-7rcdb-lsnyaiof6fejf0",
"id-11134207-7rbk3-m8h8upm5uixqd3",
"id-11134207-7rbk1-m8h8upjdylf182"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1709974312,
"sold": 0,
"historical_sold": 3,
"liked": false,
"liked_count": 19,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1a-m15fwig0gbuq71.16000041728466948.mp4",
"thumb_url": "id-11110105-7rasm-m15fwuqkh2ilcd",
"duration": 33,
"version": 2,
"vid": "id-11110105-6ke1a-m15fwig0gbuq71",
"formats": [
{
"format": 1600004,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1a-m15fwig0gbuq71.16000041728466948.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m15fwig0gbuq71.16000041728466948.mp4",
"width": 638,
"height": 360
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m15fwig0gbuq71.default.mp4",
"width": 848,
"height": 478
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Packing",
"options": [
"Bubble Wrap",
"Paking Kayu"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 177107662867,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Puserba",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 25717778883,
"shopid": 11252525,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rccu-lsnyahfh07ahe5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1400066568,1134053,844931064601283,844931086908638,1213641,298458395,1718087960,1428713,1015914,700190087,1718093079,1918643,1000031,2018619,2023641,700700063,700005489,1059152,822059908662278,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,2048660,2048661,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":3600,\"model_id\":177107662867,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rccu-lsnyahfh07ahe5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1400066568,1134053,844931064601283,844931086908638,1213641,298458395,1718087960,1428713,1015914,700190087,1718093079,1918643,1000031,2018619,2023641,700700063,700005489,1059152,822059908662278,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,2048660,2048661,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":3600,\"model_id\":177107662867,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25717778883",
"debug_info": null
},
{
"item_basic": {
"itemid": 25217774208,
"shopid": 27731826,
"name": "Reiwa CW-0501RA AC Window 0.5PK 370 Watt Pendingin Ruangan",
"label_ids": [
1400066568,
1134053,
844931064601283,
844931086908638,
1213641,
1718087960,
1428713,
1718093079,
1015914,
700190087,
1000031,
1918643,
2018619,
1059152,
700005489,
822059908662278,
825465608492064,
825465608494624,
825465608499232,
825465608497696,
837860934119952,
2048660,
2048661,
1718093084,
298458396
],
"image": "sg-11134201-7rcfd-lsny61kay6mpf9",
"images": [
"sg-11134201-7rcfd-lsny61kay6mpf9",
"sg-11134201-7rces-lsny61puq2db4a",
"sg-11134201-7rcds-lsny61uajkyc07",
"sg-11134201-7rcbu-lsny620eanht3d",
"sg-11134201-7rcec-lsny6268246qb8",
"id-11134207-7rbk7-m8h93d4fzslq75",
"id-11134207-7rbk5-m8h93d4fzsp953"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1709974103,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmir-mb1r3chtu2hwee.16000041750036022.mp4",
"thumb_url": "id-11110105-6kmir-mb1r3chtu2hwee_cover",
"duration": 33,
"version": 2,
"vid": "id-11110105-6kmir-mb1r3chtu2hwee",
"formats": [
{
"format": 1600004,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmir-mb1r3chtu2hwee.16000041750036022.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmir-mb1r3chtu2hwee.16000041750036022.mp4",
"width": 638,
"height": 360
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmir-mb1r3chtu2hwee.default.mp4",
"width": 848,
"height": 478
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Packing",
"options": [
"Bubble Wrap",
"Packing Kayu"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 237668910348,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Master Networks",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 25217774208,
"shopid": 27731826,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rcfd-lsny61kay6mpf9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1134053,844931064601283,844931086908638,1213641,1718087960,1428713,1718093079,1015914,700190087,1000031,1918643,2018619,1059152,700005489,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,837860934119952,2048660,2048661,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":809,\"model_id\":237668910348,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rcfd-lsny61kay6mpf9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,1134053,844931064601283,844931086908638,1213641,1718087960,1428713,1718093079,1015914,700190087,1000031,1918643,2018619,1059152,700005489,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696,837860934119952,2048660,2048661,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":809,\"model_id\":237668910348,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25217774208",
"debug_info": null
},
{
"item_basic": {
"itemid": 27752750922,
"shopid": 1005115671,
"name": "Ac Window Reiwa 0.5pk Protecth 5.000BTU/h",
"label_ids": [
298458395,
700005490,
700005495,
822059908662278,
825465608494624,
825465608499232,
834403089593352,
825465608497696,
837860934119952,
844931064601283,
1000031,
1718093079,
2018619,
298463379,
298468389,
1718088045
],
"image": "id-11134207-7r98p-lwh1e9jho0715c",
"images": [
"id-11134207-7r98p-lwh1e9jho0715c",
"id-11134207-7r98u-lwh1e9jhperh71"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1718273472,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 22,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199999900000,
"price_min": 199999900000,
"price_max": 199999900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199999900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 246013967241,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199999900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "KITCHEN_TOOLS",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27752750922,
"shopid": 1005115671,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lwh1e9jho0715c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298458395,700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,844931064601283,1000031,1718093079,2018619,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5346,\"model_id\":246013967241,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lwh1e9jho0715c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298458395,700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,844931064601283,1000031,1718093079,2018619,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5346,\"model_id\":246013967241,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27752750922",
"debug_info": null
},
{
"item_basic": {
"itemid": 26669277120,
"shopid": 27092381,
"name": "REIWA CW 0901RA AC WINDOW 1 PK 775 LOW WATT DIRECT COOLING SISTEM PORTABLE AC CEPAT DINGIN 9.000BTU",
"label_ids": [
844931064601283,
1059156,
700005499,
822059908662278,
825465608492064,
834403089593352,
1015914,
700190087,
1213641,
1000031,
2018619,
1400285055,
825465608497696,
834230400556567,
844931086908638,
298463379,
298933384,
822120592853526,
2048660,
2048661,
2108629,
1718093079,
1718093084,
298458396,
1718088044,
298468390,
1718088045,
298458398,
298468389
],
"image": "id-11134207-7rasg-m37ja0gljrprfb",
"images": [
"id-11134207-7rasg-m37ja0gljrprfb",
"id-11134207-7rasa-m37ja0mzafin32",
"id-11134207-7rasi-m37ja0gbk6paf4",
"id-11134207-7ras8-m37ja0hpi5skc2",
"id-11134207-7rasm-m37ja0krdotq5c",
"id-11134207-7ras8-m37ja0i9hcns90"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732952271,
"sold": 1,
"historical_sold": 11,
"liked": false,
"liked_count": 21,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 5,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 271900000000,
"price_min": 271900000000,
"price_max": 271900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1a-m37ja5dcd55kbd.16000081732952166.mp4",
"thumb_url": "id-11110105-7rasf-m37ja812hd2s9c",
"duration": 15,
"version": 2,
"vid": "id-11110105-6ke1a-m37ja5dcd55kbd",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1a-m37ja5dcd55kbd.16000081732952166.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m37ja5dcd55kbd.16000081732952166.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m37ja5dcd55kbd.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "ac reiwa",
"options": [
"REIWA CW 0901RA 1 PK"
],
"images": [
"id-11134207-7rasd-m37ja0gbll9q12"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 271900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 227093232142,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 271900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 11,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 11,
"display_sold_count_text": "11"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Toko Elektronik Semarang",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26669277120,
"shopid": 27092381,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m37ja0gljrprfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700005499,822059908662278,825465608492064,834403089593352,1015914,700190087,1213641,1000031,2018619,1400285055,825465608497696,834230400556567,844931086908638,298463379,298933384,822120592853526,2048660,2048661,2108629,1718093079,1718093084,298458396,1718088044,298468390,1718088045,298458398,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4351,\"model_id\":227093232142,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasg-m37ja0gljrprfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700005499,822059908662278,825465608492064,834403089593352,1015914,700190087,1213641,1000031,2018619,1400285055,825465608497696,834230400556567,844931086908638,298463379,298933384,822120592853526,2048660,2048661,2108629,1718093079,1718093084,298458396,1718088044,298468390,1718088045,298458398,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4351,\"model_id\":227093232142,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26669277120",
"debug_info": null
},
{
"item_basic": {
"itemid": 27709291351,
"shopid": 1329886519,
"name": "REIWA AC Window CW-0501RA 1/2 PK 370 WATT - AC 0,5 PK-Garansi Resmi",
"label_ids": [
844931064601283,
844931086908638,
1400066568,
1718093079,
1000031,
1059152,
700005487,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
837860934119952,
1718087960,
1428713,
2018619,
1015914,
700190087,
834403089593352,
298463379,
298468389,
1718088045
],
"image": "id-11134207-7r98y-lzh173pz49j97d",
"images": [
"id-11134207-7r98y-lzh173pz49j97d",
"id-11134207-7r98u-lzh173pz5o3pe2",
"id-11134207-7r98u-lzh173pz72o587",
"id-11134207-7r98w-lzh173pz8h8l47",
"id-11134207-7r98w-lzh173pz9vt140"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1724811179,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 4,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 248000000000,
"price_min": 248000000000,
"price_max": 248000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1b-lzkh15n9e49s08.16000081725018377.mp4",
"thumb_url": "id-11110105-7r98s-lzkh1dk7uvb3c7",
"duration": 60,
"version": 2,
"vid": "id-11110105-6ke1b-lzkh15n9e49s08",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1b-lzkh15n9e49s08.16000081725018377.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-lzkh15n9e49s08.16000081725018377.mp4",
"width": 576,
"height": 1024
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-lzkh15n9e49s08.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 248000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 157437968754,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 248000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "electronik blora",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27709291351,
"shopid": 1329886519,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lzh173pz49j97d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400066568,1718093079,1000031,1059152,700005487,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,1718087960,1428713,2018619,1015914,700190087,834403089593352,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":1805,\"model_id\":157437968754,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lzh173pz49j97d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400066568,1718093079,1000031,1059152,700005487,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,1718087960,1428713,2018619,1015914,700190087,834403089593352,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":1805,\"model_id\":157437968754,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27709291351",
"debug_info": null
},
{
"item_basic": {
"itemid": 25617814373,
"shopid": 6689912,
"name": "Reiwa AC Window Air Conditioner Pendingin AC Ruangan 0.5 PK CW-0501RA",
"label_ids": [
1000167,
1213641,
844931086908638,
1400066568,
298458395,
1718087960,
1428713,
1015914,
700190087,
1718093079,
1400285055,
1000031,
1918643,
2018619,
2023641,
700005489,
1059152,
822059908662278,
825465608497696,
837860934119952,
825465608492064,
825465608499232,
825465608494624,
2048661,
2048660,
298933384,
298458396,
1718093084
],
"image": "sg-11134201-7rcdi-lsoa364pubzya7",
"images": [
"sg-11134201-7rcdi-lsoa364pubzya7",
"sg-11134201-7rcda-lsoa368lon6144",
"sg-11134201-7rcby-lsoa36ezfay5ea",
"sg-11134201-7rcch-lsoa36j598fff0",
"sg-11134201-7rccc-lsoa36pszgv6d8",
"id-11134207-7rbk0-m8h8f0e1f0r2da",
"id-11134207-7rbkb-m8h8f0e0zki61b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1709994147,
"sold": 0,
"historical_sold": 3,
"liked": false,
"liked_count": 17,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmj7-mb1r28vnt36z38.16000041750035970.mp4",
"thumb_url": "id-11110105-6kmj7-mb1r28vnt36z38_cover",
"duration": 33,
"version": 2,
"vid": "id-11110105-6kmj7-mb1r28vnt36z38",
"formats": [
{
"format": 1600004,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj7-mb1r28vnt36z38.16000041750035970.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj7-mb1r28vnt36z38.16000041750035970.mp4",
"width": 638,
"height": 360
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj7-mb1r28vnt36z38.default.mp4",
"width": 848,
"height": 478
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Packing",
"options": [
"Bubble Wrap",
"Packing Kayu"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 1,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 243156728558,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ACC SuperMart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 25617814373,
"shopid": 6689912,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rcdi-lsoa364pubzya7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1213641,844931086908638,1400066568,298458395,1718087960,1428713,1015914,700190087,1718093079,1400285055,1000031,1918643,2018619,2023641,700005489,1059152,822059908662278,825465608497696,837860934119952,825465608492064,825465608499232,825465608494624,2048661,2048660,298933384,298458396,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4446,\"model_id\":243156728558,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rcdi-lsoa364pubzya7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1213641,844931086908638,1400066568,298458395,1718087960,1428713,1015914,700190087,1718093079,1400285055,1000031,1918643,2018619,2023641,700005489,1059152,822059908662278,825465608497696,837860934119952,825465608492064,825465608499232,825465608494624,2048661,2048660,298933384,298458396,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4446,\"model_id\":243156728558,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25617814373",
"debug_info": null
},
{
"item_basic": {
"itemid": 27951043219,
"shopid": 9500163,
"name": "REIWA AC Window CW-0501RA 1/2 PK 370 WATT - AC 0,5 PK-Garansi Resmi",
"label_ids": [
47,
1000167,
1000544,
1001176,
700005487,
1059152,
822059908662278,
827380695406658,
837860934119952,
822120592861206,
840990690654214,
840955085144628,
825465608494624,
834403089593352,
825465608499232,
825465608497696,
298458395,
1428713,
1718087960,
1000031,
844931086908638,
1015914,
700190087,
1718093079,
1400285055,
2018619,
2023641,
298893311,
2048661,
2048660,
700765096,
298463379,
700750053,
298933384,
298888358,
298938357,
700700063,
2098629,
2098628,
298468389,
1718088045,
298938368
],
"image": "id-11134207-7r98x-lvshtwiq897398",
"images": [
"id-11134207-7r98x-lvshtwiq897398",
"id-11134207-7r98x-lvshtwiq9nrjee",
"id-11134207-7r98y-lvshtwiqb2bzb3",
"id-11134207-7r98w-lvshtwiqcgwf91",
"id-11134207-7r98w-lvshtwiqdvgv9a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1716787535,
"sold": 0,
"historical_sold": 6,
"liked": false,
"liked_count": 121,
"view_count": null,
"catid": 100010,
"brand": "Sogo",
"cmt_count": 5,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 247500000000,
"price_min": 247500000000,
"price_max": 247500000000,
"price_min_before_discount": 250000000000,
"price_max_before_discount": 250000000000,
"hidden_price_display": null,
"price_before_discount": 250000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-1%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1e-lzkh8a7rxlm577.16000081725018704.mp4",
"thumb_url": "id-11110105-7r98o-lzkh8dij45qd61",
"duration": 15,
"version": 2,
"vid": "id-11110105-6ke1e-lzkh8a7rxlm577",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1e-lzkh8a7rxlm577.16000081725018704.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-lzkh8a7rxlm577.16000081725018704.mp4",
"width": 576,
"height": 1024
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1e-lzkh8a7rxlm577.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 2,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 395652702158877,
"bundle_deal_label": "Pilih 2, diskon 1%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp412RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 791300580884480,
"price": 247500000000,
"strikethrough_price": 250000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-1%",
"model_id": 255900725256,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 250000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 6,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 6,
"display_sold_count_text": "6"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp412RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Toko Blora Electrik ",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27951043219,
"shopid": 9500163,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lvshtwiq897398\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,1001176,700005487,1059152,822059908662278,827380695406658,837860934119952,822120592861206,840990690654214,840955085144628,825465608494624,834403089593352,825465608499232,825465608497696,298458395,1428713,1718087960,1000031,844931086908638,1015914,700190087,1718093079,1400285055,2018619,2023641,298893311,2048661,2048660,700765096,298463379,700750053,298933384,298888358,298938357,700700063,2098629,2098628,298468389,1718088045,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4355,\"model_id\":255900725256,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-lvshtwiq897398\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,1001176,700005487,1059152,822059908662278,827380695406658,837860934119952,822120592861206,840990690654214,840955085144628,825465608494624,834403089593352,825465608499232,825465608497696,298458395,1428713,1718087960,1000031,844931086908638,1015914,700190087,1718093079,1400285055,2018619,2023641,298893311,2048661,2048660,700765096,298463379,700750053,298933384,298888358,298938357,700700063,2098629,2098628,298468389,1718088045,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4355,\"model_id\":255900725256,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27951043219",
"debug_info": null
},
{
"item_basic": {
"itemid": 27312149044,
"shopid": 141331730,
"name": "AC Window 1/2PK REIWA CW-0501RA 370 Watt AC Windows 1/2 PK Reiwa CW0501RA",
"label_ids": [
844931064601283,
1015914,
700190087,
1213641,
1918643,
1000031,
2018619,
700765096,
844931086908638,
298933384,
1718093079,
298463379,
1049116,
1049117,
2048660,
2048661,
822059908662278,
825465608499232,
825465608497696,
822120592853526,
2108629,
1718088045,
298458396,
298468389,
1718093084,
298458398,
1718088044,
298468390
],
"image": "id-11134207-7rasj-m0icrt3u9cek71",
"images": [
"id-11134207-7rasj-m0icrt3u9cek71"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1727084310,
"sold": 1,
"historical_sold": 5,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 195413687133,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 5,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 5,
"display_sold_count_text": "5"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Perdana Elektronik SBY",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTIuMjEyX3tiMTFiYTNhZjQ4NTU3ZDQ3YTZiNGY4OWI2YWJkMjcwMDowMjAwMDA4NTFjZTFiZjgwOjAxMDAwMTkyNGJhZTdhYWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27312149044,
"shopid": 141331730,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m0icrt3u9cek71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1015914,700190087,1213641,1918643,1000031,2018619,700765096,844931086908638,298933384,1718093079,298463379,1049116,1049117,2048660,2048661,822059908662278,825465608499232,825465608497696,822120592853526,2108629,1718088045,298458396,298468389,1718093084,298458398,1718088044,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4372,\"model_id\":195413687133,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasj-m0icrt3u9cek71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1015914,700190087,1213641,1918643,1000031,2018619,700765096,844931086908638,298933384,1718093079,298463379,1049116,1049117,2048660,2048661,822059908662278,825465608499232,825465608497696,822120592853526,2108629,1718088045,298458396,298468389,1718093084,298458398,1718088044,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4372,\"model_id\":195413687133,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27312149044",
"debug_info": null
},
{
"item_basic": {
"itemid": 29470478435,
"shopid": 1306217813,
"name": "AC Window Reiwa 1/2 PK CW 0501RA Direct Cooling REIWA AC Window 1/2 PK 370 watt CW-0501RA",
"label_ids": [
844931064601283,
1049112,
700005486,
1718093079,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
837860934119952,
1000031,
2018619,
2023641,
298463379,
844931086908638,
298933384,
2068629,
298938357,
700810080,
2098628,
298938368,
2098629,
298468389,
1718088045
],
"image": "id-11134207-7ras9-m3ovt9tgkhug91",
"images": [
"id-11134207-7ras9-m3ovt9tgkhug91",
"id-11134207-7rasm-m3ovt9tgkh73bd",
"id-11134207-7rasc-m3ovt9tgj36c2a",
"id-11134207-7rask-m3ovvhsphlng24",
"id-11134207-7rasj-m3ovvhsphli54e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1734001798,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 11,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 215000000000,
"price_min": 215000000000,
"price_max": 215000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ke1i-m3ovw17n2ui60e.16000031734002461.mp4",
"thumb_url": "id-11110107-6ke1i-m3ovw17n2ui60e_cover",
"duration": 60,
"version": 2,
"vid": "id-11110107-6ke1i-m3ovw17n2ui60e",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke1i-m3ovw17n2ui60e.16000031734002461.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1i-m3ovw17n2ui60e.16000031734002461.mp4",
"width": 480,
"height": 848
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1i-m3ovw17n2ui60e.default.mp4",
"width": 480,
"height": 848
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp716RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 215000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 252238627664,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 215000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp716RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Bandaraย Sparepart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 29470478435,
"shopid": 1306217813,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m3ovt9tgkhug91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005486,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,1000031,2018619,2023641,298463379,844931086908638,298933384,2068629,298938357,700810080,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4432,\"model_id\":252238627664,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m3ovt9tgkhug91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005486,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,1000031,2018619,2023641,298463379,844931086908638,298933384,2068629,298938357,700810080,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4432,\"model_id\":252238627664,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29470478435",
"debug_info": null
},
{
"item_basic": {
"itemid": 50750573007,
"shopid": 190065806,
"name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK",
"label_ids": [
1000167,
2018619,
2023641,
844931064601283,
298463379,
1049112,
1049133,
1718093079,
822059908662278,
825465608497696,
822120592853526,
2098621,
298468389,
1718088045
],
"image": "id-11134207-8224v-mgho0llk7y1a9a",
"images": [
"id-11134207-8224v-mgho0llk7y1a9a",
"id-11134207-8224q-mgho0ljh3ytlca",
"id-11134207-82250-mgho0llngj67ac",
"id-11134207-8224o-mgho0llk9clq94",
"id-11134207-8224t-mgho0ljbuc5q0f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1761896181,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 222099000000,
"price_min": 222099000000,
"price_max": 222099000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Opsi Kirim",
"options": [
"Kurir toko",
"Kargo"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 222099000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 415051301071,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 222099000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Jayaabadijaya1",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 50750573007,
"shopid": 190065806,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgho0llk7y1a9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,2023641,844931064601283,298463379,1049112,1049133,1718093079,822059908662278,825465608497696,822120592853526,2098621,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4921,\"model_id\":415051301071,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mgho0llk7y1a9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,2023641,844931064601283,298463379,1049112,1049133,1718093079,822059908662278,825465608497696,822120592853526,2098621,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4921,\"model_id\":415051301071,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50750573007",
"debug_info": null
},
{
"item_basic": {
"itemid": 28677627452,
"shopid": 123734508,
"name": "AC Window Reiwa CW 0501RA 1/2PK Digital Remote",
"label_ids": [
1400066568,
844931064601283,
1718093079,
1049134,
700005505,
822059908662278,
825465608499232,
298463379,
1213641,
2018619,
1015914,
700190087,
298893311,
825465608497696,
2108629,
2048660,
2048661,
700765096,
822120592853526,
2023641,
1400285055,
1400025118,
298933384,
1718088045,
997921049,
298458396,
298468389,
997921050,
700585042,
1718088044,
1718093084,
1718088046,
298458398,
298838363,
298468390,
1718093085
],
"image": "id-11134207-7rbk8-m6pr6zrv3lf8d3",
"images": [
"id-11134207-7rbk8-m6pr6zrv3lf8d3",
"id-11134207-7rbke-m6pr6zrv3lbh08"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1740593035,
"sold": 0,
"historical_sold": 18,
"liked": false,
"liked_count": 25,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 10,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 239900000000,
"price_min": 239900000000,
"price_max": 239900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Option",
"options": [
"AC Reiwa 1/2PK",
"AC+ Packing kayu"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8,
"rating_count": [
10,
0,
0,
0,
2,
8
],
"rcount_with_context": 3,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 239900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 285155192796,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 239900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 18,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 18,
"display_sold_count_text": "18"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "demishops/ Tk Harko Audio",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
0,
1000,
1000,
1000
]
},
"itemid": 28677627452,
"shopid": 123734508,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6pr6zrv3lf8d3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1718093079,1049134,700005505,822059908662278,825465608499232,298463379,1213641,2018619,1015914,700190087,298893311,825465608497696,2108629,2048660,2048661,700765096,822120592853526,2023641,1400285055,1400025118,298933384,1718088045,997921049,298458396,298468389,997921050,700585042,1718088044,1718093084,1718088046,298458398,298838363,298468390,1718093085],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1491,\"model_id\":285155192796,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6pr6zrv3lf8d3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1718093079,1049134,700005505,822059908662278,825465608499232,298463379,1213641,2018619,1015914,700190087,298893311,825465608497696,2108629,2048660,2048661,700765096,822120592853526,2023641,1400285055,1400025118,298933384,1718088045,997921049,298458396,298468389,997921050,700585042,1718088044,1718093084,1718088046,298458398,298838363,298468390,1718093085],\"matched_keywords\":[\"ac window\",\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1491,\"model_id\":285155192796,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28677627452",
"debug_info": null
},
{
"item_basic": {
"itemid": 3807237887,
"shopid": 184185674,
"name": "Top Brand Ac 1/2PK Window Uchida-MP-W5MZ Murah",
"label_ids": [
1059152,
700005489,
822059908662278,
825465608494624,
822120592839702,
825465608496160,
822120592842774,
825465608499232,
822120592844310,
822120592899094,
844931026694327,
844931046478970,
844931064601283,
1015914,
700190087
],
"image": "046ae8ccfb2ff791bb8dbfc3ee29493b",
"images": [
"046ae8ccfb2ff791bb8dbfc3ee29493b",
"80f0f0ceb7d420a17d393d62fe103568",
"1eb5f021060ca449e3323e554631ead8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1573891652,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 26,
"view_count": null,
"catid": 100010,
"brand": "0",
"cmt_count": 0,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 239850000000,
"price_min": 239850000000,
"price_max": 239850000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 239850000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 52856687622,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 239850000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "nazhimahhlaila",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88
]
},
"itemid": 3807237887,
"shopid": 184185674,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"046ae8ccfb2ff791bb8dbfc3ee29493b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,700005489,822059908662278,825465608494624,822120592839702,825465608496160,822120592842774,825465608499232,822120592844310,822120592899094,844931026694327,844931046478970,844931064601283,1015914,700190087],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4900,\"model_id\":52856687622,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"046ae8ccfb2ff791bb8dbfc3ee29493b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,700005489,822059908662278,825465608494624,822120592839702,825465608496160,822120592842774,825465608499232,822120592844310,822120592899094,844931026694327,844931046478970,844931064601283,1015914,700190087],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4900,\"model_id\":52856687622,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_3807237887",
"debug_info": null
},
{
"item_basic": {
"itemid": 51502942451,
"shopid": 230127244,
"name": "REIWA AC WINDOW 1/2 PK WAC0501RA / CW-0501RA",
"label_ids": [
700700063,
2018619,
844931064601283,
2108629,
1049141,
1049156,
822059908662278,
822120592853526,
2023641
],
"image": "id-11134207-82251-mi4i9vq5ibk355",
"images": [
"id-11134207-82251-mi4i9vq5ibk355",
"id-11134207-8224w-mi4i9vq5jq4jfa",
"id-11134207-8224z-mi4i9vq5l4oz0c",
"id-11134207-82251-mi4i9vq5mj9f83",
"id-11134207-82251-mi4i9vq5nxtve8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765457655,
"sold": 1,
"historical_sold": 1,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sleman",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435284670067,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ATAKRIB ELEKTRONIK JOGJA",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000
]
},
"itemid": 51502942451,
"shopid": 230127244,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi4i9vq5ibk355\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,2108629,1049141,1049156,822059908662278,822120592853526,2023641],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1948,\"model_id\":435284670067,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi4i9vq5ibk355\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,2108629,1049141,1049156,822059908662278,822120592853526,2023641],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":1948,\"model_id\":435284670067,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51502942451",
"debug_info": null
},
{
"item_basic": {
"itemid": 29666803773,
"shopid": 29127246,
"name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK CW0501RA",
"label_ids": [
844931064601283,
1400066568,
1213641,
1000031,
2018619,
1718093079,
1059156,
700005499,
822059908662278,
825465608497696,
834403089593352,
844931086908638,
2023641,
298463379,
1718088045,
298468389,
298458396,
298458398,
1718088044,
298468390,
1718093084
],
"image": "id-11134207-7rbkd-m7roeyt1jykhd1",
"images": [
"id-11134207-7rbkd-m7roeyt1jykhd1",
"id-11134207-7rasj-m2ahzwanel56d4",
"id-11134207-7rase-m2ahzwanekzn14",
"id-11134207-7rasm-m2ahzwadezj772",
"id-11134207-7rasa-m2ahzwanekzk3d",
"id-11134207-7rasi-m2ahzwanelfd3d",
"id-11134207-7rasc-m2ahzwanelbobe"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730952614,
"sold": 0,
"historical_sold": 5,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 208000000000,
"price_min": 208000000000,
"price_max": 208000000000,
"price_min_before_discount": 267100000000,
"price_max_before_discount": 267100000000,
"hidden_price_display": null,
"price_before_discount": 267100000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-22%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PACKINGAN",
"options": [
"STANDART",
"EXTRA PACKING"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 755738285244416,
"price": 208000000000,
"strikethrough_price": 267100000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-22%",
"model_id": 176784109285,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 267100000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 5,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 5,
"display_sold_count_text": "5"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ELEKTRONIIK MURAH SEMARANG",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
97
]
},
"itemid": 29666803773,
"shopid": 29127246,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkd-m7roeyt1jykhd1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1213641,1000031,2018619,1718093079,1059156,700005499,822059908662278,825465608497696,834403089593352,844931086908638,2023641,298463379,1718088045,298468389,298458396,298458398,1718088044,298468390,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4543,\"model_id\":176784109285,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkd-m7roeyt1jykhd1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1213641,1000031,2018619,1718093079,1059156,700005499,822059908662278,825465608497696,834403089593352,844931086908638,2023641,298463379,1718088045,298468389,298458396,298458398,1718088044,298468390,1718093084],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4543,\"model_id\":176784109285,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29666803773",
"debug_info": null
},
{
"item_basic": {
"itemid": 24388845380,
"shopid": 1393119746,
"name": "REIWA 1 PK CW-0901RA CW0901 RA 0901RA 1 PK STANDARD LOW WATT AC WINDOW REIWA",
"label_ids": [
844931064601283,
1400066568,
1049112,
1718093079,
1428713,
1718087960,
822059908662278,
298463379,
2023641,
2018619,
825465608497696,
1015914,
700190087,
700830032,
1059151,
2048660,
2048661,
2068629,
298938357,
298468389,
1718088045,
298938368,
2098628,
2098629
],
"image": "id-11134207-7ras8-m33l7hedide5cb",
"images": [
"id-11134207-7ras8-m33l7hedide5cb",
"id-11134207-7rasc-m33l7hede5ot09",
"id-11134207-7rasg-m33l7hedfk99c7",
"id-11134207-7rasl-m33l7hedgytp5b",
"id-11134207-7ras9-m33l7hedjryl93"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732718405,
"sold": 0,
"historical_sold": 4,
"liked": false,
"liked_count": 16,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 259900000000,
"price_min": 259900000000,
"price_max": 259900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1j-m33o3kzl7l7t41.16000081732718128.mp4",
"thumb_url": "id-11110105-7rasf-m33o3mtcjonf31",
"duration": 15,
"version": 2,
"vid": "id-11110105-6ke1j-m33o3kzl7l7t41",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1j-m33o3kzl7l7t41.16000081732718128.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-m33o3kzl7l7t41.16000081732718128.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-m33o3kzl7l7t41.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Packing",
"options": [
"Instant Dus",
"Instant Bubble",
"Expedisi Dus",
"Expedisi Palet Kayu",
"Expedisi Bubble"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp866RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 259900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 208016698872,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 259900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 4,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 4,
"display_sold_count_text": "4"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp866RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Kerta Electronics",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 24388845380,
"shopid": 1393119746,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m33l7hedide5cb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1049112,1718093079,1428713,1718087960,822059908662278,298463379,2023641,2018619,825465608497696,1015914,700190087,700830032,1059151,2048660,2048661,2068629,298938357,298468389,1718088045,298938368,2098628,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4548,\"model_id\":208016698872,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m33l7hedide5cb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1049112,1718093079,1428713,1718087960,822059908662278,298463379,2023641,2018619,825465608497696,1015914,700190087,700830032,1059151,2048660,2048661,2068629,298938357,298468389,1718088045,298938368,2098628,2098629],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4548,\"model_id\":208016698872,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24388845380",
"debug_info": null
},
{
"item_basic": {
"itemid": 40250426847,
"shopid": 204649203,
"name": "Reiwa AC Window 1/2 PK 0,5 PK Direct Cooling 370 Watt CW-0501RA CW 0501RA CW0501RA CW0501",
"label_ids": [
2018619,
700700063,
1000167,
1428713,
1718087960,
844931064601283,
1049141,
1049154,
298463379,
822059908662278,
825465608492064,
837860934119952,
822120592853526,
1718093065,
1213641,
825465608497696,
700830032,
2048660,
2048661,
298933384,
1015914,
700190087,
1718093079,
298468390,
1718088044,
298458396,
298458398,
1718093084,
298468389,
1718088045
],
"image": "id-11134207-7rbkb-m9lb284kp52lf2",
"images": [
"id-11134207-7rbkb-m9lb284kp52lf2",
"id-11134207-7rbk7-m9lb284kqjn116",
"id-11134207-7rbke-m9lb284ktcrx02",
"id-11134207-7rbk1-m9lb284kurcdb9",
"id-11134207-7rbk2-m9lb284kry7h62"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1746861971,
"sold": 0,
"historical_sold": 3,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 206000000000,
"price_min": 206000000000,
"price_max": 206000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6knan-m9lbbcy1l90t3f.16000081746861696.mp4",
"thumb_url": "id-11110105-6knan-m9lbbcy1l90t3f_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6knan-m9lbbcy1l90t3f",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knan-m9lbbcy1l90t3f.16000081746861696.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m9lbbcy1l90t3f.16000081746861696.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knan-m9lbbcy1l90t3f.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4,
"rating_count": [
2,
0,
0,
1,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Yogyakarta",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 206000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 285032916936,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 206000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "CVSumberCahaya",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000
]
},
"itemid": 40250426847,
"shopid": 204649203,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m9lb284kp52lf2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,1000167,1428713,1718087960,844931064601283,1049141,1049154,298463379,822059908662278,825465608492064,837860934119952,822120592853526,1718093065,1213641,825465608497696,700830032,2048660,2048661,298933384,1015914,700190087,1718093079,298468390,1718088044,298458396,298458398,1718093084,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":731,\"model_id\":285032916936,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m9lb284kp52lf2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,1000167,1428713,1718087960,844931064601283,1049141,1049154,298463379,822059908662278,825465608492064,837860934119952,822120592853526,1718093065,1213641,825465608497696,700830032,2048660,2048661,298933384,1015914,700190087,1718093079,298468390,1718088044,298458396,298458398,1718093084,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"air conditioner\"],\"merge_rank\":731,\"model_id\":285032916936,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40250426847",
"debug_info": null
},
{
"item_basic": {
"itemid": 27414748570,
"shopid": 397250638,
"name": "REIWA AC Window CW-0501RA (0,5 PK) / CW-0501 RA",
"label_ids": [
844931064601283,
1059152,
700005489,
822059908662278,
825465608492064,
2018619,
2048660,
2048661,
700765096
],
"image": "id-11134207-7rasd-m2qckqgmd22r6c",
"images": [
"id-11134207-7rasd-m2qckqgmd22r6c",
"id-11134207-7rasm-m1mnjleit0wf22",
"id-11134207-7rasf-m1mnjleiufgve7",
"id-11134207-7rasa-m1mnjleivu1be0",
"id-11134207-7rasd-m1mnjleix8lrd3",
"id-11134207-7rasb-m1mnjleiyn671e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1729508931,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 8,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 201500000000,
"price_min": 201500000000,
"price_max": 201500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 201500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 195480397980,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 201500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Ok One Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27414748570,
"shopid": 397250638,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2qckqgmd22r6c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,822059908662278,825465608492064,2018619,2048660,2048661,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4994,\"model_id\":195480397980,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2qckqgmd22r6c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,822059908662278,825465608492064,2018619,2048660,2048661,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4994,\"model_id\":195480397980,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27414748570",
"debug_info": null
},
{
"item_basic": {
"itemid": 28774776327,
"shopid": 1119774676,
"name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK// AC WINDOW REIWA 0,5 PK GARANSI RESMI[GE]",
"label_ids": [
844931064601283,
1400066568,
1213641,
2018619,
2023641,
1059156,
700005499,
822059908662278,
1015914,
700190087,
298893311,
825465608497696,
844931086908638,
298933384,
298463379,
298468389,
298468390,
298458396,
298458398
],
"image": "sg-11134201-7rdxu-mbxmgyvfx4jdae",
"images": [
"sg-11134201-7rdxu-mbxmgyvfx4jdae",
"sg-11134201-7rblk-m5l4uxf4txse7d",
"sg-11134201-7rbkf-m5l4uxi6qvke21",
"sg-11134201-7rblz-m5l4uxlikna6a5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1738133875,
"sold": 0,
"historical_sold": 4,
"liked": false,
"liked_count": 5,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 210000000000,
"price_min": 210000000000,
"price_max": 210000000000,
"price_min_before_discount": 267150000000,
"price_max_before_discount": 267150000000,
"hidden_price_display": null,
"price_before_discount": 267150000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-21%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PACKINGAN",
"options": [
"STANDART",
"EXTRAPACKING"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 758021546901504,
"price": 210000000000,
"strikethrough_price": 267150000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-21%",
"model_id": 242562454583,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 267150000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 4,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 4,
"display_sold_count_text": "4"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "grosir elektronic murah",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28774776327,
"shopid": 1119774676,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxu-mbxmgyvfx4jdae\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1213641,2018619,2023641,1059156,700005499,822059908662278,1015914,700190087,298893311,825465608497696,844931086908638,298933384,298463379,298468389,298468390,298458396,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4630,\"model_id\":242562454583,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxu-mbxmgyvfx4jdae\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1213641,2018619,2023641,1059156,700005499,822059908662278,1015914,700190087,298893311,825465608497696,844931086908638,298933384,298463379,298468389,298468390,298458396,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4630,\"model_id\":242562454583,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28774776327",
"debug_info": null
},
{
"item_basic": {
"itemid": 41266948646,
"shopid": 1467639276,
"name": "AC WINDOW BESTLIFE 0,5PK/BWA05PLD/1/2pk GOLDFIN Remot control",
"label_ids": [
298463379,
844931064601283,
1049142,
1049143,
1718093079,
822059908662278,
825465608499232,
2018619,
2048661,
2048660,
700765096,
834403089593352,
825465608497696,
1718088045,
298468389
],
"image": "id-11134207-81zto-me484xf67ugx3d",
"images": [
"id-11134207-81zto-me484xf67ugx3d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756744463,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "Bestlife",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 235000000000,
"price_min": 235000000000,
"price_max": 235000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pekanbaru",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 235000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 243844943368,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 235000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ELEKTRONIK AL-FATH",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000
]
},
"itemid": 41266948646,
"shopid": 1467639276,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-me484xf67ugx3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049142,1049143,1718093079,822059908662278,825465608499232,2018619,2048661,2048660,700765096,834403089593352,825465608497696,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":797,\"model_id\":243844943368,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-me484xf67ugx3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049142,1049143,1718093079,822059908662278,825465608499232,2018619,2048661,2048660,700765096,834403089593352,825465608497696,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":797,\"model_id\":243844943368,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41266948646",
"debug_info": null
},
{
"item_basic": {
"itemid": 28804568437,
"shopid": 144447241,
"name": "AC Window Reiwa 1/2PK CW 0501RA Low Watt 5000Btu Refrigerant R32 Direct Cooling Tanpa Instalasi Pipa",
"label_ids": [
1000167,
844931064601283,
1400066568,
1049116,
700005516,
822059908662278,
1213641,
1015914,
700190087,
1400285055,
1918643,
1000031,
2018619,
825465608497696,
844931086908638,
298933384,
1718093079,
825465608492064,
2068629,
298938357,
298458396,
1718093084,
2098629
],
"image": "id-11134207-8224z-mgnl8zqk3mdrc2",
"images": [
"id-11134207-8224z-mgnl8zqk3mdrc2",
"id-11134207-7r98v-lxc3tk4r8dum78",
"id-11134207-7r98x-lxc3tk4rcljyaa",
"id-11134207-7r98y-lxc3tk4r9sf250",
"id-11134207-7r98r-lxc3tk4rb6zifb",
"id-11134207-7r98r-lxc3tk4r6za6c4",
"id-11134207-7r98r-lxc3tk4re04e75",
"id-11134207-7r98w-lxc3tk4rfeou0a",
"id-11134207-7r98o-lxc3tk4rgt9a83"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1720153777,
"sold": 0,
"historical_sold": 601,
"liked": false,
"liked_count": 1098,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 331,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 199778000000,
"price_min": 199778000000,
"price_max": 199778000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1c-lxc3uxk4to2md4.16000081720153466.mp4",
"thumb_url": "id-11110105-7r98q-lxc3v2f7pt0yfb",
"duration": 33,
"version": 2,
"vid": "id-11110105-6ke1c-lxc3uxk4to2md4",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1c-lxc3uxk4to2md4.16003251726289200.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-lxc3uxk4to2md4.16003251726289200.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-lxc3uxk4to2md4.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Paket Bonus",
"options": [
"AC Only",
"AC + Packing Kayu"
],
"images": [
"id-11134207-8224t-mg528hm5yqko36",
"id-11134207-82250-mgnl8zqli6tkbb"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.893805309734513,
"rating_count": [
339,
1,
0,
4,
24,
310
],
"rcount_with_context": 140,
"rcount_with_image": 91
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sidoarjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199478000000,
"strikethrough_price": 199778000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1293973935374336,
"discount_text": null,
"model_id": 360072459389,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1293973935374336,
"voucher_code": "GRAN1499",
"voucher_discount": 300000000,
"time_info": {
"start_time": 1763713440,
"end_time": 1771752240,
"valid_duration": null
},
"groups": [],
"min_spend": 149900000000
},
"recommended_platform_voucher_info": null,
"original_price": 199778000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 601,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 601,
"display_sold_count_text": "601"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "grandivo",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
91,
97
]
},
"itemid": 28804568437,
"shopid": 144447241,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mgnl8zqk3mdrc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1400066568,1049116,700005516,822059908662278,1213641,1015914,700190087,1400285055,1918643,1000031,2018619,825465608497696,844931086908638,298933384,1718093079,825465608492064,2068629,298938357,298458396,1718093084,2098629],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":2888,\"model_id\":360072459389,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mgnl8zqk3mdrc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1400066568,1049116,700005516,822059908662278,1213641,1015914,700190087,1400285055,1918643,1000031,2018619,825465608497696,844931086908638,298933384,1718093079,825465608492064,2068629,298938357,298458396,1718093084,2098629],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":2888,\"model_id\":360072459389,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28804568437",
"debug_info": null
},
{
"item_basic": {
"itemid": 42475305623,
"shopid": 170906193,
"name": "REIWA AC Window CW-0501RA Pendingin Ruangan 0.5 PK GARANSI RESMI",
"label_ids": [
2023641,
2018619,
1428713,
1718087960,
844931064601283,
298463379,
1718093079,
1049112,
1049133,
822059908662278,
822120592853526,
825465608497696,
298468389,
1718088045
],
"image": "id-11134207-8224y-mg3avc3q8qvdbf",
"images": [
"id-11134207-8224y-mg3avc3q8qvdbf",
"id-11134207-8224y-mg3el1w0tszx2d",
"id-11134207-8224u-mg3el1w1ant6b0",
"id-11134207-8224t-mg3el1w1dgy2df"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1761032581,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 213500000000,
"price_min": 213500000000,
"price_max": 213500000000,
"price_min_before_discount": 299500000000,
"price_max_before_discount": 299500000000,
"hidden_price_display": null,
"price_before_discount": 299500000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-29%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdv5-mg3ehiiwgutr8c.16000031761032090.mp4",
"thumb_url": "id-11110105-6vdv5-mg3ehiiwgutr8c_cover",
"duration": 34,
"version": 2,
"vid": "id-11110105-6vdv5-mg3ehiiwgutr8c",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv5-mg3ehiiwgutr8c.16000031761032090.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv5-mg3ehiiwgutr8c.16000031761032090.mp4",
"width": 480,
"height": 854
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv5-mg3ehiiwgutr8c.default.mp4",
"width": 480,
"height": 854
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 769462257648640,
"price": 213500000000,
"strikethrough_price": 299500000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-29%",
"model_id": 254053055979,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 299500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "TOKOLESTARIHAPPY1208",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 42475305623,
"shopid": 170906193,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mg3avc3q8qvdbf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,298463379,1718093079,1049112,1049133,822059908662278,822120592853526,825465608497696,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4842,\"model_id\":254053055979,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mg3avc3q8qvdbf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,298463379,1718093079,1049112,1049133,822059908662278,822120592853526,825465608497696,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4842,\"model_id\":254053055979,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:1 match_weight:1 loss_weight:1 extra_info:\\\"CaoU2WmhqwjAESCZlkp2CQjAGRGxgDm56KQ/ITCGrueZ3ZvA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3794801429990008\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42475305623",
"debug_info": null
},
{
"item_basic": {
"itemid": 28453328196,
"shopid": 27569236,
"name": "AC REIWA AC Window 1/2 PK CW-0501RA 0,5 PK AC 1/2PK",
"label_ids": [
47,
1000167,
1000544,
1400095067,
1400285005,
844931064601283,
1015914,
700190087,
1400285055,
1000031,
1400066568,
2018619,
2023641,
298893311,
700005490,
700005495,
822059908662278,
834403089593352,
2048660,
2048661,
822120592853526,
825465608497696,
700765096,
1718093079,
700750053,
700810080
],
"image": "id-11134207-7r98w-lwr0s8jw1p9qa7",
"images": [
"id-11134207-7r98w-lwr0s8jw1p9qa7",
"id-11134207-7r98s-lwr0s8jvxhke85",
"id-11134207-7r98z-lwr0s8jvyw4ucc",
"id-11134207-7r98v-lwr0s8jw0apa9a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1718877218,
"sold": 0,
"historical_sold": 42,
"liked": false,
"liked_count": 28,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 16,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 205000000000,
"price_min": 205000000000,
"price_max": 205000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "packing",
"options": [
"packing buble",
"polos",
"packing kayu"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.782608695652174,
"rating_count": [
23,
1,
0,
0,
1,
21
],
"rcount_with_context": 12,
"rcount_with_image": 8
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 205000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 79457019306,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 205000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 42,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 42,
"display_sold_count_text": "42"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Barat Daya Elektronik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
97,
91
]
},
"itemid": 28453328196,
"shopid": 27569236,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-lwr0s8jw1p9qa7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,1400095067,1400285005,844931064601283,1015914,700190087,1400285055,1000031,1400066568,2018619,2023641,298893311,700005490,700005495,822059908662278,834403089593352,2048660,2048661,822120592853526,825465608497696,700765096,1718093079,700750053,700810080],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":4472,\"model_id\":79457019306,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-lwr0s8jw1p9qa7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,1400095067,1400285005,844931064601283,1015914,700190087,1400285055,1000031,1400066568,2018619,2023641,298893311,700005490,700005495,822059908662278,834403089593352,2048660,2048661,822120592853526,825465608497696,700765096,1718093079,700750053,700810080],\"matched_keywords\":[\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":4472,\"model_id\":79457019306,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28453328196",
"debug_info": null
},
{
"item_basic": {
"itemid": 26366076613,
"shopid": 1386437279,
"name": "AC WINDOW 1/2 PK REIWA CW 0501RA",
"label_ids": [
844931064601283,
1718093079,
700005490,
1049137,
822059908662278,
825465608492064,
837860934119952,
1400066568,
1213641,
1000031,
2018619,
825465608497696,
298463379,
1015914,
700190087,
2048660,
2048661,
700765096,
1718093084,
298468390,
1718088044,
298458398,
298458396,
1718088045,
298468389
],
"image": "id-11134207-7ras9-m20f2jkzvlko01",
"images": [
"id-11134207-7ras9-m20f2jkzvlko01",
"id-11134207-7rasj-m20f2jkzx05418"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730342501,
"sold": 0,
"historical_sold": 4,
"liked": false,
"liked_count": 4,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 4,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 217300000000,
"price_min": 217300000000,
"price_max": 217300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
4,
0,
0,
0,
0,
4
],
"rcount_with_context": 2,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Serang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 217300000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 256916457776,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 217300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 4,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 4,
"display_sold_count_text": "4"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Alfamegaelectronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26366076613,
"shopid": 1386437279,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m20f2jkzvlko01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,1049137,822059908662278,825465608492064,837860934119952,1400066568,1213641,1000031,2018619,825465608497696,298463379,1015914,700190087,2048660,2048661,700765096,1718093084,298468390,1718088044,298458398,298458396,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5173,\"model_id\":256916457776,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m20f2jkzvlko01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,1049137,822059908662278,825465608492064,837860934119952,1400066568,1213641,1000031,2018619,825465608497696,298463379,1015914,700190087,2048660,2048661,700765096,1718093084,298468390,1718088044,298458398,298458396,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5173,\"model_id\":256916457776,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26366076613",
"debug_info": null
},
{
"item_basic": {
"itemid": 27268080687,
"shopid": 141331730,
"name": "AC Window 1PK Reiwa CW0901RA",
"label_ids": [
844931064601283,
1049116,
1049117,
822059908662278,
825465608499232,
822120592853526,
2018619,
298893311,
825465608497696,
837860934119952,
844931086908638,
1718093079,
298463379,
298468389,
1718088045
],
"image": "id-11134207-7rasc-m2rn4ltkrfs0cb",
"images": [
"id-11134207-7rasc-m2rn4ltkrfs0cb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732017886,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 239500000000,
"price_min": 239500000000,
"price_max": 239500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 239500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 252062074889,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 239500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Perdana Elektronik SBY",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27268080687,
"shopid": 141331730,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasc-m2rn4ltkrfs0cb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608499232,822120592853526,2018619,298893311,825465608497696,837860934119952,844931086908638,1718093079,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4313,\"model_id\":252062074889,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasc-m2rn4ltkrfs0cb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608499232,822120592853526,2018619,298893311,825465608497696,837860934119952,844931086908638,1718093079,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4313,\"model_id\":252062074889,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27268080687",
"debug_info": null
},
{
"item_basic": {
"itemid": 27641206050,
"shopid": 192403421,
"name": "Ac Window Reiwa 1/2 PK dan 1 PK Low Watt Original",
"label_ids": [
1000167,
2023641,
2018619,
844931064601283,
298463379,
1049116,
1049117,
1718093079,
822059908662278,
825465608497696,
840990690654214,
2048660,
2048661,
840955085144628,
825465608499232,
700765096,
700750053,
298933384,
1718088045,
298468389
],
"image": "id-11134207-81ztc-mebb2pzzztoj32",
"images": [
"id-11134207-81ztc-mebb2pzzztoj32",
"id-11134207-81ztc-mebb2pzia3uvf3",
"id-11134207-81ztg-mebb2pzibifbef",
"id-11134207-81zti-mebb2pztlgjmb4",
"id-11134207-81ztn-mebb2pzx6osl58",
"id-11134207-81ztg-mebb2pzuhrly16",
"id-11134207-81ztm-mebb2pzi5w5j65",
"id-11134207-81ztm-mebb2pzi7apzd2",
"id-11134207-81ztj-mebb2pzi8pafa8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1757152645,
"sold": 1,
"historical_sold": 3,
"liked": false,
"liked_count": 8,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 205900000000,
"price_min": 205900000000,
"price_max": 205900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Ukuran",
"options": [
"1 PK",
"1/2PK"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.5,
"rating_count": [
2,
0,
0,
0,
1,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 205900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 296465474949,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 205900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "BESTMARKET99",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27641206050,
"shopid": 192403421,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mebb2pzzztoj32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2023641,2018619,844931064601283,298463379,1049116,1049117,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608499232,700765096,700750053,298933384,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4440,\"model_id\":296465474949,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztc-mebb2pzzztoj32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2023641,2018619,844931064601283,298463379,1049116,1049117,1718093079,822059908662278,825465608497696,840990690654214,2048660,2048661,840955085144628,825465608499232,700765096,700750053,298933384,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4440,\"model_id\":296465474949,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27641206050",
"debug_info": null
},
{
"item_basic": {
"itemid": 29017675307,
"shopid": 257396949,
"name": "AC Window REIWA CW 0901RA / CW0901RA 1 PK 370 Watt Low Watt",
"label_ids": [
844931064601283,
1049127,
1049112,
822059908662278,
825465608492064,
825465608499232,
822120592853526,
1718093079,
1213641,
2018619,
298463379,
2048661,
2048660,
700765096,
298468389,
1718093084,
298458398,
1718088045,
298458396,
298468390,
1718088044
],
"image": "id-11134207-7ras9-m2lr293d3zoyb2",
"images": [
"id-11134207-7ras9-m2lr293d3zoyb2",
"id-11134207-7rasj-m2lr293d16k237"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1731636258,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 4,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 252000000000,
"price_min": 252000000000,
"price_max": 252000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 252000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 158885994843,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 252000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "grosirelektronik1",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 29017675307,
"shopid": 257396949,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m2lr293d3zoyb2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049127,1049112,822059908662278,825465608492064,825465608499232,822120592853526,1718093079,1213641,2018619,298463379,2048661,2048660,700765096,298468389,1718093084,298458398,1718088045,298458396,298468390,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4754,\"model_id\":158885994843,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m2lr293d3zoyb2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049127,1049112,822059908662278,825465608492064,825465608499232,822120592853526,1718093079,1213641,2018619,298463379,2048661,2048660,700765096,298468389,1718093084,298458398,1718088045,298458396,298468390,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4754,\"model_id\":158885994843,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29017675307",
"debug_info": null
},
{
"item_basic": {
"itemid": 24386748029,
"shopid": 60560992,
"name": "REIWA AC WINDOW 1/2 PK CW 0501 RA - GARANSI RESMI",
"label_ids": [
844931064601283,
1059154,
1059152,
822120592853526,
2018619,
298463379,
2023641,
298468389
],
"image": "id-11134207-7rasm-m0y43tszokz7e6",
"images": [
"id-11134207-7rasm-m0y43tszokz7e6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1728028595,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 205000000000,
"price_min": 205000000000,
"price_max": 205000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1f-m1z4ruk5viel8b.16000041730264254.mp4",
"thumb_url": "id-11110105-7ras9-m1z4rwmiv12q82",
"duration": 12,
"version": 2,
"vid": "id-11110105-6ke1f-m1z4ruk5viel8b",
"formats": [
{
"format": 1600004,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1f-m1z4ruk5viel8b.16000041730264254.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1f-m1z4ruk5viel8b.16000041730264254.mp4",
"width": 360,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1f-m1z4ruk5viel8b.default.mp4",
"width": 478,
"height": 850
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 205000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 185438227162,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 205000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "pusatglobal",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 24386748029,
"shopid": 60560992,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0y43tszokz7e6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822120592853526,2018619,298463379,2023641,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5121,\"model_id\":185438227162,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0y43tszokz7e6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822120592853526,2018619,298463379,2023641,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5121,\"model_id\":185438227162,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24386748029",
"debug_info": null
},
{
"item_basic": {
"itemid": 28902148732,
"shopid": 102037641,
"name": "AC Window Reiwa CW-0501RA 1/2 PK - GW0501RA 0.5pk 0.5 pk 1/2pk",
"label_ids": [
298463379,
298458395,
1213641,
1718093079,
2018619,
2023641,
1059152,
1059154,
825465608497696,
822059908662278,
825465608492064,
834403089593352,
837860934119952,
2048660,
2048661,
700765096,
1718088044,
1718088045,
298458398,
1718093084,
298468389,
298468390,
298458396
],
"image": "sg-11134201-7rd58-lw9so6opltx1ea",
"images": [
"sg-11134201-7rd58-lw9so6opltx1ea",
"sg-11134201-7rd4f-lw9so6tze3ji7c",
"sg-11134201-7rd48-lw9so6yf7lm7ee",
"sg-11134201-7rd57-lw9so72l1ix854",
"sg-11134201-7rd3q-lw9so77ku7yab5",
"sg-11134201-7rd4a-lw9so7cumi303a",
"sg-11134201-7rd50-lw9so7hkfl3s07",
"sg-11134201-7rd5r-lw9so7ma8p4f5b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1717834341,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 207500000000,
"price_min": 207500000000,
"price_max": 207500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 207500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 226421117102,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 207500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "KiosElektronik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28902148732,
"shopid": 102037641,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rd58-lw9so6opltx1ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,298458395,1213641,1718093079,2018619,2023641,1059152,1059154,825465608497696,822059908662278,825465608492064,834403089593352,837860934119952,2048660,2048661,700765096,1718088044,1718088045,298458398,1718093084,298468389,298468390,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4961,\"model_id\":226421117102,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rd58-lw9so6opltx1ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,298458395,1213641,1718093079,2018619,2023641,1059152,1059154,825465608497696,822059908662278,825465608492064,834403089593352,837860934119952,2048660,2048661,700765096,1718088044,1718088045,298458398,1718093084,298468389,298468390,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4961,\"model_id\":226421117102,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28902148732",
"debug_info": null
},
{
"item_basic": {
"itemid": 26515760499,
"shopid": 436536134,
"name": "AC Paling Murah Reiwa AC Window 1/2 PK CW-0501RA FREE ONGKIR (JABODETABEK) GARANSI RESMI",
"label_ids": [
844931064601283,
1918643,
298463379,
2018619,
700700063,
1059152,
1049122,
822059908662278,
822120592853526,
825465608499232,
825465608497696,
298468389
],
"image": "id-11134207-7rasi-m1wfby5vsp5r5e",
"images": [
"id-11134207-7rasi-m1wfby5vsp5r5e",
"id-11134207-7rasj-m1wfby5vu3q7c3",
"id-11134207-7ras9-m2pjosubtns0e7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730100532,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 5,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 195900000000,
"price_min": 195900000000,
"price_max": 195900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6knar-m95nf0oiq2du2e.16000031745913498.mp4",
"thumb_url": "id-11110105-6knar-m95nf0oiq2du2e_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6knar-m95nf0oiq2du2e",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knar-m95nf0oiq2du2e.16000031745913498.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knar-m95nf0oiq2du2e.16000031745913498.mp4",
"width": 480,
"height": 848
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knar-m95nf0oiq2du2e.default.mp4",
"width": 480,
"height": 848
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 195900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 233386702923,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 195900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Prisma Elektro",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26515760499,
"shopid": 436536134,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m1wfby5vsp5r5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1918643,298463379,2018619,700700063,1059152,1049122,822059908662278,822120592853526,825465608499232,825465608497696,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5228,\"model_id\":233386702923,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m1wfby5vsp5r5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1918643,298463379,2018619,700700063,1059152,1049122,822059908662278,822120592853526,825465608499232,825465608497696,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5228,\"model_id\":233386702923,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26515760499",
"debug_info": null
},
{
"item_basic": {
"itemid": 28526037830,
"shopid": 36168193,
"name": "AC Window Reiwa 0,5pk CW-0501RA 1/2pk Low Watt 370watt CW 0501 RA",
"label_ids": [
844931064601283,
1049112,
700005512,
822059908662278,
825465608492064,
834403089593352,
1213641,
2018619,
2023641,
1400066568,
837860934119952,
825465608499232,
825465608497696,
1718093079,
298463379,
2048660,
2048661,
298468390,
298458396,
1718093084,
298468389,
1718088044,
1718088045,
298458398
],
"image": "sg-11134201-7repz-m8vx7r7s3hd3f3",
"images": [
"sg-11134201-7repz-m8vx7r7s3hd3f3",
"sg-11134201-7reqp-m8vx7ri1n3o944",
"sg-11134201-7reop-m8vx7rvx1e8pea",
"sg-11134201-7reo0-m8vx7s84p3mv70",
"sg-11134201-7renb-m8vx7skc1m7b5f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1739426901,
"sold": 0,
"historical_sold": 2,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199207300000,
"price_min": 199207300000,
"price_max": 199207300000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199207300000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 242629738056,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199207300000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Zhuper Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28526037830,
"shopid": 36168193,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7repz-m8vx7r7s3hd3f3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,2018619,2023641,1400066568,837860934119952,825465608499232,825465608497696,1718093079,298463379,2048660,2048661,298468390,298458396,1718093084,298468389,1718088044,1718088045,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4345,\"model_id\":242629738056,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7repz-m8vx7r7s3hd3f3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,2018619,2023641,1400066568,837860934119952,825465608499232,825465608497696,1718093079,298463379,2048660,2048661,298468390,298458396,1718093084,298468389,1718088044,1718088045,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4345,\"model_id\":242629738056,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28526037830",
"debug_info": null
},
{
"item_basic": {
"itemid": 29274149321,
"shopid": 512607519,
"name": "REIWA AC Window 1/2 PK CW-0501RA",
"label_ids": [
844931064601283,
1059156,
700005525,
822059908662278,
2018619,
298463379,
1718093079,
825465608497696,
1400066568,
298468389,
1718088045
],
"image": "id-11134207-8224p-mfyuh8y62dqga4",
"images": [
"id-11134207-8224p-mfyuh8y62dqga4",
"id-11134207-7rash-m5a0u0qag8t929"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1737468164,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 209900000000,
"price_min": 209900000000,
"price_max": 209900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Jepara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 252518127161,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "bintangelecto",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 29274149321,
"shopid": 512607519,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mfyuh8y62dqga4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700005525,822059908662278,2018619,298463379,1718093079,825465608497696,1400066568,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4580,\"model_id\":252518127161,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mfyuh8y62dqga4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700005525,822059908662278,2018619,298463379,1718093079,825465608497696,1400066568,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4580,\"model_id\":252518127161,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29274149321",
"debug_info": null
},
{
"item_basic": {
"itemid": 25032507133,
"shopid": 91105112,
"name": "Reiwa AC Window 1/2 PK CW-0501RA",
"label_ids": [
1000167,
844931064601283,
1049147,
1049112,
822059908662278,
837860934119952,
1718093079,
2018619,
825465608497696,
298463379,
2023641,
700810080,
1718088045,
298468389
],
"image": "id-11134207-7r992-lws5sh6t9mqj6d",
"images": [
"id-11134207-7r992-lws5sh6t9mqj6d",
"id-11134207-7r98u-lws5sh6tb1az44"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1718946250,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 210000000000,
"price_min": 210000000000,
"price_max": 210000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 210000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 251059843604,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 210000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "FOE_BOGOR",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 25032507133,
"shopid": 91105112,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-lws5sh6t9mqj6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1049147,1049112,822059908662278,837860934119952,1718093079,2018619,825465608497696,298463379,2023641,700810080,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5374,\"model_id\":251059843604,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-lws5sh6t9mqj6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1049147,1049112,822059908662278,837860934119952,1718093079,2018619,825465608497696,298463379,2023641,700810080,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5374,\"model_id\":251059843604,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25032507133",
"debug_info": null
},
{
"item_basic": {
"itemid": 28472154562,
"shopid": 785619959,
"name": "AC REIWA WINDOW CW-0501RA 1/2PK",
"label_ids": [
844931064601283,
1049137,
700005490,
822059908662278,
825465608492064,
822120592853526,
1213641,
2018619,
2023641,
825465608497696,
825465608499232,
298463379,
1718093079,
2048660,
2048661,
700765096,
298468390,
1718093084,
298458396,
1718088045,
298468389,
1718088044,
298458398
],
"image": "sg-11134201-7rfig-m4efdc2a7o63d5",
"images": [
"sg-11134201-7rfig-m4efdc2a7o63d5",
"sg-11134201-7rffp-m4efdcd3ru8872",
"sg-11134201-7rfh1-m4efdcm9egdw89",
"sg-11134201-7rfg8-m4efdcq58q2n11",
"sg-11134201-7rfh9-m4efdd6skejm18"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1735548569,
"sold": 0,
"historical_sold": 2,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 218000000000,
"price_min": 218000000000,
"price_max": 218000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PACKING",
"options": [
"DUS BAWAAN",
"+BUBBLE WRAP"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Serang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 218000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 237218854375,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 218000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Global Elektronic Serang",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28472154562,
"shopid": 785619959,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rfig-m4efdc2a7o63d5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049137,700005490,822059908662278,825465608492064,822120592853526,1213641,2018619,2023641,825465608497696,825465608499232,298463379,1718093079,2048660,2048661,700765096,298468390,1718093084,298458396,1718088045,298468389,1718088044,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4530,\"model_id\":237218854375,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rfig-m4efdc2a7o63d5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049137,700005490,822059908662278,825465608492064,822120592853526,1213641,2018619,2023641,825465608497696,825465608499232,298463379,1718093079,2048660,2048661,700765096,298468390,1718093084,298458396,1718088045,298468389,1718088044,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4530,\"model_id\":237218854375,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28472154562",
"debug_info": null
},
{
"item_basic": {
"itemid": 26818931564,
"shopid": 1003418508,
"name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK CW0501RA [SG]",
"label_ids": [
844931064601283,
1213641,
1000031,
1400066568,
2018619,
2023641,
1059156,
700005499,
822059908662278,
825465608497696,
1718093079,
1400285055,
1015914,
700190087,
844931086908638,
298463379,
298458398,
1718088045,
298468389,
298468390,
1718093084,
298458396,
1718088044
],
"image": "sg-11134201-7rfg0-m3399z42jb0p44",
"images": [
"sg-11134201-7rfg0-m3399z42jb0p44",
"sg-11134201-7rfg2-m3399zb09689e1",
"sg-11134201-7rffd-m3399zhxz0ftdc",
"sg-11134201-7rfhj-m3399ztvizok83",
"sg-11134201-7rfgj-m339a02h4zzt2e",
"sg-11134201-7rfhv-m339a0eenifae2",
"sg-11134201-7rfhs-m339a0s050jdf3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732693204,
"sold": 0,
"historical_sold": 9,
"liked": false,
"liked_count": 6,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 5,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 210000000000,
"price_min": 210000000000,
"price_max": 210000000000,
"price_min_before_discount": 234150000000,
"price_max_before_discount": 234150000000,
"hidden_price_display": null,
"price_before_discount": 234150000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-10%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmiw-mamgypoafvqj39.16000081749110974.mp4",
"thumb_url": "id-11110105-6kmiw-mamgypoafvqj39_cover",
"duration": 46,
"version": 2,
"vid": "id-11110105-6kmiw-mamgypoafvqj39",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmiw-mamgypoafvqj39.16000081749110974.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiw-mamgypoafvqj39.16000081749110974.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiw-mamgypoafvqj39.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "PACKINGAN",
"options": [
"STANDART",
"EXTRA PACKING"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 755020295881728,
"price": 210000000000,
"strikethrough_price": 234150000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-10%",
"model_id": 119333158040,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 234150000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 9,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 9,
"display_sold_count_text": "9"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sentra Grosir SGE",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26818931564,
"shopid": 1003418508,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rfg0-m3399z42jb0p44\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1000031,1400066568,2018619,2023641,1059156,700005499,822059908662278,825465608497696,1718093079,1400285055,1015914,700190087,844931086908638,298463379,298458398,1718088045,298468389,298468390,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4367,\"model_id\":119333158040,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rfg0-m3399z42jb0p44\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1000031,1400066568,2018619,2023641,1059156,700005499,822059908662278,825465608497696,1718093079,1400285055,1015914,700190087,844931086908638,298463379,298458398,1718088045,298468389,298468390,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4367,\"model_id\":119333158040,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26818931564",
"debug_info": null
},
{
"item_basic": {
"itemid": 27050844641,
"shopid": 782357050,
"name": "REIWA AC WINDOW 1/2 PK CW-0501RA CW0501 RA 0501RA 0.5 PK STANDARD LOW WATT AC WINDOW REIWA",
"label_ids": [
700005495,
700005490,
822059908662278,
834403089593352,
825465608497696,
837860934119952,
825465608492064,
825465608494624,
825465608499232,
1213641,
1000031,
1718093079,
298933384,
1718093084,
298458396
],
"image": "id-11134207-7r98t-lvof0jnplkjdde",
"images": [
"id-11134207-7r98t-lvof0jnplkjdde"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1716543617,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 219500000000,
"price_min": 219500000000,
"price_max": 219500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1m-lvogyhygaoi7c9.16000081716543431.mp4",
"thumb_url": "id-11110105-7r98s-lvogyr2yzokidd",
"duration": 33,
"version": 2,
"vid": "id-11110105-6ke1m-lvogyhygaoi7c9",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1m-lvogyhygaoi7c9.16000081716543431.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1m-lvogyhygaoi7c9.16000081716543431.mp4",
"width": 848,
"height": 478
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1m-lvogyhygaoi7c9.default.mp4",
"width": 848,
"height": 478
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 219500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 250887054417,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 219500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "officialelectroniccenter",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27050844641,
"shopid": 782357050,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-lvof0jnplkjdde\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005495,700005490,822059908662278,834403089593352,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,1213641,1000031,1718093079,298933384,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5091,\"model_id\":250887054417,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-lvof0jnplkjdde\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005495,700005490,822059908662278,834403089593352,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,1213641,1000031,1718093079,298933384,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5091,\"model_id\":250887054417,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27050844641",
"debug_info": null
},
{
"item_basic": {
"itemid": 26502890173,
"shopid": 10409718,
"name": "REIWA AC Window CW-0501RA 1/2 PK 370 WATT - AC 0,5 PK-Garansi Resmi",
"label_ids": [
47,
1000167,
1000544,
298458395,
1428713,
1718087960,
844931064601283,
844931086908638,
1213641,
1015914,
700190087,
1718093079,
1000031,
1059152,
700005487,
822059908662278,
837860934119952,
840955085144628,
825465608494624,
825465608499232,
825465608497696,
840990690654214,
1400066568,
2018619,
2023641,
825465608492064,
298463379,
2068629,
298938357,
298938368,
2098629,
1718088045,
2098628,
1718088044,
298458398,
298468390,
1718093084,
298458396,
298468389
],
"image": "id-11134207-7r98q-lwihwftoelxm3a",
"images": [
"id-11134207-7r98q-lwihwftoelxm3a",
"id-11134207-7r98z-lwihwftog0i276",
"id-11134207-7r98u-lwinrlmtq5ca19",
"id-11134207-7r991-lwinrlmtrjwqc3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1718371223,
"sold": 0,
"historical_sold": 3,
"liked": false,
"liked_count": 10,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 210000000000,
"price_min": 210000000000,
"price_max": 210000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 2.5,
"rating_count": [
2,
1,
0,
0,
1,
0
],
"rcount_with_context": 2,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp700RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 210000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 236445503191,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 210000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp700RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Blora Store Electrik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26502890173,
"shopid": 10409718,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwihwftoelxm3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,298458395,1428713,1718087960,844931064601283,844931086908638,1213641,1015914,700190087,1718093079,1000031,1059152,700005487,822059908662278,837860934119952,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1400066568,2018619,2023641,825465608492064,298463379,2068629,298938357,298938368,2098629,1718088045,2098628,1718088044,298458398,298468390,1718093084,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4517,\"model_id\":236445503191,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-lwihwftoelxm3a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000167,1000544,298458395,1428713,1718087960,844931064601283,844931086908638,1213641,1015914,700190087,1718093079,1000031,1059152,700005487,822059908662278,837860934119952,840955085144628,825465608494624,825465608499232,825465608497696,840990690654214,1400066568,2018619,2023641,825465608492064,298463379,2068629,298938357,298938368,2098629,1718088045,2098628,1718088044,298458398,298468390,1718093084,298458396,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4517,\"model_id\":236445503191,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26502890173",
"debug_info": null
},
{
"item_basic": {
"itemid": 26165749971,
"shopid": 179876625,
"name": "Reiwa AC Window 1/2 PK CW 0501RA Pendingin Ruangan 370W Low Watt",
"label_ids": [
844931064601283,
1049116,
1049117,
822059908662278,
822120592853526,
2018619,
298463379,
2068629,
298938357,
2023641,
298938368,
298468389
],
"image": "id-11134207-7ras9-m1wgvfbvjd1r98",
"images": [
"id-11134207-7ras9-m1wgvfbvjd1r98"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730103903,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 7,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 220000000000,
"price_min": 220000000000,
"price_max": 220000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1c-m1z54lwhokqxac.16000041730264850.mp4",
"thumb_url": "id-11110105-7rasc-m1z54odu3lxp33",
"duration": 12,
"version": 2,
"vid": "id-11110105-6ke1c-m1z54lwhokqxac",
"formats": [
{
"format": 1600004,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1c-m1z54lwhokqxac.16000041730264850.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m1z54lwhokqxac.16000041730264850.mp4",
"width": 360,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1c-m1z54lwhokqxac.default.mp4",
"width": 478,
"height": 850
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp733RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 220000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 215504531914,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 220000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp733RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Global Surabaya",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26165749971,
"shopid": 179876625,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m1wgvfbvjd1r98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,822120592853526,2018619,298463379,2068629,298938357,2023641,298938368,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5359,\"model_id\":215504531914,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras9-m1wgvfbvjd1r98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,822120592853526,2018619,298463379,2068629,298938357,2023641,298938368,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5359,\"model_id\":215504531914,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26165749971",
"debug_info": null
},
{
"item_basic": {
"itemid": 24872837167,
"shopid": 1961543,
"name": "AC REIWA WINDOW CW-0501RA 1/2PK",
"label_ids": [
844931064601283,
1213641,
298458395,
1015914,
700190087,
1718093079,
700005490,
1049137,
822059908662278,
837860934119952,
822120592853526,
825465608492064,
298463379,
2018619,
825465608497696,
2023641,
2048661,
2048660,
700765096,
298468390,
1718093084,
298458396,
1718088044,
298458398,
1718088045,
298468389
],
"image": "id-11134207-7r992-ltufdxof2nmrb5",
"images": [
"id-11134207-7r992-ltufdxof2nmrb5",
"id-11134207-7r98y-ltufdxof192b64",
"id-11134207-7r98v-ltufdxoeyfxfac",
"id-11134207-7r98u-ltufdxoezuhv58",
"id-11134207-7rasl-m4efcjlvupssbd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1712545649,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 215000000000,
"price_min": 215000000000,
"price_max": 215000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PACKING",
"options": [
"DUS BAWAAN",
"+BUBBLE WRAP",
"INSTAN AREA SERANG"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Serang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 215000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 178635742984,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 215000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Cahaya Banten",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTc2LjU0X3tiMTFiYTNhZjQ4NTU3ZDY4Mjg2ZmI2YTc4MGQzMzcwMDowMjAwMDBkYTYwNDc3MjNkOjAxMDAwMTA5NjkxZmVmMTJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjAyNDcyNTQ2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 24872837167,
"shopid": 1961543,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-ltufdxof2nmrb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,298458395,1015914,700190087,1718093079,700005490,1049137,822059908662278,837860934119952,822120592853526,825465608492064,298463379,2018619,825465608497696,2023641,2048661,2048660,700765096,298468390,1718093084,298458396,1718088044,298458398,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4422,\"model_id\":178635742984,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r992-ltufdxof2nmrb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,298458395,1015914,700190087,1718093079,700005490,1049137,822059908662278,837860934119952,822120592853526,825465608492064,298463379,2018619,825465608497696,2023641,2048661,2048660,700765096,298468390,1718093084,298458396,1718088044,298458398,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4422,\"model_id\":178635742984,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24872837167",
"debug_info": null
},
{
"item_basic": {
"itemid": 12609345399,
"shopid": 222774965,
"name": "AC WINDOW ยฝ PK CW-0501RA 0,5PK UNIT ONLY FREE ONGKIR BEKASI - JAKARTA TIMUR",
"label_ids": [
1000167,
1001026,
1015914,
844931026694327,
844931046478970,
844931064601283,
1400285055,
1049112,
1059151,
822059908662278,
837860934119952,
700190087,
840955085144628,
825465608494624,
825465608499232,
825465608497696,
825465608492064,
840990690654214,
844931086908638,
1213641,
1000031,
2018619,
298463379,
298458398,
298468389,
298468390,
298458396
],
"image": "id-11134207-7r98u-ls9rfmjjkqd554",
"images": [
"id-11134207-7r98u-ls9rfmjjkqd554",
"id-11134207-7r991-ls9rfmjjm4xl5e",
"id-11134207-7r98w-ls9rfmjjnji16a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1631595762,
"sold": 0,
"historical_sold": 44,
"liked": false,
"liked_count": 972,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 22,
"flag": 983040,
"cb_option": 0,
"item_status": "normal",
"price": 207500000000,
"price_min": 207500000000,
"price_max": 207500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.739130434782608,
"rating_count": [
23,
0,
0,
1,
4,
18
],
"rcount_with_context": 17,
"rcount_with_image": 14
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 207500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 67287966599,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 207500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 44,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 44,
"display_sold_count_text": "44"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Pontieknik09",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 12609345399,
"shopid": 222774965,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-ls9rfmjjkqd554\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1001026,1015914,844931026694327,844931046478970,844931064601283,1400285055,1049112,1059151,822059908662278,837860934119952,700190087,840955085144628,825465608494624,825465608499232,825465608497696,825465608492064,840990690654214,844931086908638,1213641,1000031,2018619,298463379,298458398,298468389,298468390,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":2686,\"model_id\":67287966599,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-ls9rfmjjkqd554\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1001026,1015914,844931026694327,844931046478970,844931064601283,1400285055,1049112,1059151,822059908662278,837860934119952,700190087,840955085144628,825465608494624,825465608499232,825465608497696,825465608492064,840990690654214,844931086908638,1213641,1000031,2018619,298463379,298458398,298468389,298468390,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":2686,\"model_id\":67287966599,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_12609345399",
"debug_info": null
},
{
"item_basic": {
"itemid": 28322068555,
"shopid": 297751724,
"name": "BIG PROMO SALE AC REIWA AC WINDOW REIWA 1PK CW-0901RA - Hemat Listrik 770W",
"label_ids": [
1428713,
1718087960,
844931086908638,
844931064601283,
1400066568,
1015914,
700190087,
1213641,
2018619,
1718093079,
1059152,
700005487,
822059908662278,
825465608497696,
825465608492064,
825465608494624,
840990690654214,
825465608499232,
840955085144628,
834403089593352,
822120592853526,
2023641,
298463379,
700830032,
298933384,
1400025118,
1400285055,
2068629,
298938357,
700585042,
1718093085,
298468389,
298468390,
997921050,
2098629,
2103632,
997921049,
1718088046,
298458396,
2108637,
1718088044,
1718088045,
298938368,
2098630,
298838363,
2098628,
1718093084,
298458398
],
"image": "id-11134207-7rask-m4cxpse1hh9ff6",
"images": [
"id-11134207-7rask-m4cxpse1hh9ff6",
"id-11134207-7rase-m4cxpse1agf70d",
"id-11134207-7ras9-m4zz5emnps5v23",
"id-11134207-7rasa-m4cxpse1buznce",
"id-11134207-7rasb-m4cxpse1d9k380",
"id-11134207-7rasb-m4cxpse1eo4j08",
"id-11134207-7rasd-m4cxpse1g2oz3e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1735460462,
"sold": 0,
"historical_sold": 17,
"liked": false,
"liked_count": 33,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 8,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 205429200000,
"price_min": 205429200000,
"price_max": 205429200000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke18-m4cyv3en6jy035.16000101735460283.mp4",
"thumb_url": "id-11110105-6ke18-m4cyv3en6jy035_cover",
"duration": 15,
"version": 2,
"vid": "id-11110105-6ke18-m4cyv3en6jy035",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke18-m4cyv3en6jy035.default.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke18-m4cyv3en6jy035.default.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke18-m4cyv3en6jy035.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "UKURAN AC",
"options": [
"1/2 PK/CW0501",
"1PK/CW0901"
],
"images": [
"id-11134207-7rasb-m4zz5emnmz0z76",
"id-11134207-7rasb-m4zz5emnodlf75"
],
"properties": [],
"type": 0
},
{
"name": "PENGIRIMAN",
"options": [
"REGULER/CARGO",
"INSTANT JKT"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
8,
0,
0,
0,
0,
8
],
"rcount_with_context": 2,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp684RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 205429200000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 39511219628,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 205429200000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 17,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 17,
"display_sold_count_text": "17"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp684RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "FANCY Market ",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91,
88
]
},
"itemid": 28322068555,
"shopid": 297751724,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4cxpse1hh9ff6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,1400066568,1015914,700190087,1213641,2018619,1718093079,1059152,700005487,822059908662278,825465608497696,825465608492064,825465608494624,840990690654214,825465608499232,840955085144628,834403089593352,822120592853526,2023641,298463379,700830032,298933384,1400025118,1400285055,2068629,298938357,700585042,1718093085,298468389,298468390,997921050,2098629,2103632,997921049,1718088046,298458396,2108637,1718088044,1718088045,298938368,2098630,298838363,2098628,1718093084,298458398],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4342,\"model_id\":39511219628,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rask-m4cxpse1hh9ff6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931086908638,844931064601283,1400066568,1015914,700190087,1213641,2018619,1718093079,1059152,700005487,822059908662278,825465608497696,825465608492064,825465608494624,840990690654214,825465608499232,840955085144628,834403089593352,822120592853526,2023641,298463379,700830032,298933384,1400025118,1400285055,2068629,298938357,700585042,1718093085,298468389,298468390,997921050,2098629,2103632,997921049,1718088046,298458396,2108637,1718088044,1718088045,298938368,2098630,298838363,2098628,1718093084,298458398],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4342,\"model_id\":39511219628,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[91,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28322068555",
"debug_info": null
},
{
"item_basic": {
"itemid": 432992579,
"shopid": 31519428,
"name": "REIWA AC Window 1/2 & 1 PK Portable 1/2PK 1PK CW-0501RA 0,5 PK CW-0901RA",
"label_ids": [
27,
38,
39,
47,
1000544,
1000030,
25,
30,
31,
44,
46,
1001036,
844931026694327,
844931046478970,
844931064601283,
1400285055,
700025282,
2018619,
1718093079,
1213641,
1400066568,
2023641,
1059151,
1049112,
822059908662278,
825465608497696,
825465608492064,
2048661,
2048660,
700765096,
298933384,
298463379,
298468390,
298458396,
298458398,
298468389,
1718088044,
1718088045,
1718093084
],
"image": "id-11134207-81ztl-memdy1rmvdhha3",
"images": [
"id-11134207-81ztl-memdy1rmvdhha3",
"id-11134207-7rbk4-m7hn4qpsks8c54",
"id-11134207-7rbkd-m7ejgiyycas56e",
"id-11134207-7rbkd-m7ejgiyydpclbf",
"id-11134207-7rbke-m7ekf9cua11y90",
"id-11134207-7rbk2-m7ekf9cubfmeb6",
"id-11134207-7rbk8-m7ekf9cucu6ua2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1503375741,
"sold": 0,
"historical_sold": 18,
"liked": false,
"liked_count": 215,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 11,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 254900000000,
"price_min": 254900000000,
"price_max": 254900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmiw-m7eki974feoub9.16000081742094935.mp4",
"thumb_url": "id-11110105-6kmiw-m7eki974feoub9_cover",
"duration": 57,
"version": 2,
"vid": "id-11110105-6kmiw-m7eki974feoub9",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmiw-m7eki974feoub9.16000081742094935.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiw-m7eki974feoub9.16000081742094935.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiw-m7eki974feoub9.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "UKURAN",
"options": [
"0.5 PK",
"1 PK"
],
"images": [
"id-11134207-7rbka-m7ekf9cu8mhic7",
"id-11134207-7rbkc-m7ejgiyyf3x138"
],
"properties": [],
"type": 0
},
{
"name": "PACKING",
"options": [
"Tanpa Packing",
"Packing Kayu"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.714285714285714,
"rating_count": [
7,
0,
0,
0,
2,
5
],
"rcount_with_context": 4,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 254900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 188317349915,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 254900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 18,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 18,
"display_sold_count_text": "18"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SME STAR",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 432992579,
"shopid": 31519428,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-memdy1rmvdhha3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,38,39,47,1000544,1000030,25,30,31,44,46,1001036,844931026694327,844931046478970,844931064601283,1400285055,700025282,2018619,1718093079,1213641,1400066568,2023641,1059151,1049112,822059908662278,825465608497696,825465608492064,2048661,2048660,700765096,298933384,298463379,298468390,298458396,298458398,298468389,1718088044,1718088045,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4479,\"model_id\":188317349915,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztl-memdy1rmvdhha3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,38,39,47,1000544,1000030,25,30,31,44,46,1001036,844931026694327,844931046478970,844931064601283,1400285055,700025282,2018619,1718093079,1213641,1400066568,2023641,1059151,1049112,822059908662278,825465608497696,825465608492064,2048661,2048660,700765096,298933384,298463379,298468390,298458396,298458398,298468389,1718088044,1718088045,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4479,\"model_id\":188317349915,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_432992579",
"debug_info": null
},
{
"item_basic": {
"itemid": 27770254147,
"shopid": 27475432,
"name": "AC WINDOW REIWA AC WINDOW 1/2 PK CW-0501RA / CW0501RA / CW0501 0,5 PK UNIT ONLY",
"label_ids": [
844931064601283,
1049124,
1059152,
822059908662278,
1213641,
1000031,
2018619,
825465608492064,
2023641,
298458396
],
"image": "id-11134207-7ras8-m3ltcjr16ve73f",
"images": [
"id-11134207-7ras8-m3ltcjr16ve73f",
"id-11134207-7ras8-m3ltcjr12nov8a",
"id-11134207-7rasc-m3ltcjr1429b03",
"id-11134207-7ras9-m3ltcjr15gtr2b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1733823196,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 194900000000,
"price_min": 194900000000,
"price_max": 194900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 194900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 247222124157,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 194900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "AJ EXPRESS",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27770254147,
"shopid": 27475432,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m3ltcjr16ve73f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049124,1059152,822059908662278,1213641,1000031,2018619,825465608492064,2023641,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5311,\"model_id\":247222124157,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ras8-m3ltcjr16ve73f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049124,1059152,822059908662278,1213641,1000031,2018619,825465608492064,2023641,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5311,\"model_id\":247222124157,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27770254147",
"debug_info": null
},
{
"item_basic": {
"itemid": 27619587030,
"shopid": 40162236,
"name": "AC WINDOW REIWA CW 0501 RA / AC WINDOW REIWA 1/2 PK / AC WINDOW REIWA 0.5 PK / REIWA CN 0501RA",
"label_ids": [
1000167,
844931064601283,
1049112,
700005512,
1718093079,
822059908662278,
825465608492064,
825465608493600,
834403089593352,
1213641,
1000031,
2018619,
1015914,
700190087,
298463379,
2023641,
2048661,
2048660,
844931086908638,
700810080,
298468390,
1718093084,
298458396,
298468389,
1718088045,
1718088044,
298458398
],
"image": "id-11134207-7rbkc-m966tnwsy23115",
"images": [
"id-11134207-7rbkc-m966tnwsy23115",
"id-11134207-7rbkb-m966tnwiyg663a",
"id-11134207-7rbk8-m966tnvf02y5a0",
"id-11134207-7rask-m3bk3woh1o0s36",
"id-11134207-7rash-m3bk3woh4h5od7",
"id-11134207-7rasm-m3bk3woh5vq438",
"id-11134207-7rbkb-m966tnwiyghnfe"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1733231157,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 226481500000,
"price_min": 226481500000,
"price_max": 226481500000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6kmiy-m9681pg8qk8yc0.16000091745948186.mp4",
"thumb_url": "id-11110107-6kmiy-m9681pg8qk8yc0_cover",
"duration": 30,
"version": 2,
"vid": "id-11110107-6kmiy-m9681pg8qk8yc0",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6kmiy-m9681pg8qk8yc0.16000091745948186.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kmiy-m9681pg8qk8yc0.16000091745948186.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kmiy-m9681pg8qk8yc0.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 226481500000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 242174644068,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 226481500000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ElektronikBekasi",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27619587030,
"shopid": 40162236,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m966tnwsy23115\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1049112,700005512,1718093079,822059908662278,825465608492064,825465608493600,834403089593352,1213641,1000031,2018619,1015914,700190087,298463379,2023641,2048661,2048660,844931086908638,700810080,298468390,1718093084,298458396,298468389,1718088045,1718088044,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4974,\"model_id\":242174644068,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkc-m966tnwsy23115\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1049112,700005512,1718093079,822059908662278,825465608492064,825465608493600,834403089593352,1213641,1000031,2018619,1015914,700190087,298463379,2023641,2048661,2048660,844931086908638,700810080,298468390,1718093084,298458396,298468389,1718088045,1718088044,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4974,\"model_id\":242174644068,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27619587030",
"debug_info": null
},
{
"item_basic": {
"itemid": 28867715811,
"shopid": 382304192,
"name": "Reiwa AC Window 1 PK CW-0901RA / CW0901RA 1 PK Turbo Cooling",
"label_ids": [
844931064601283,
1059152,
1049122,
822059908662278,
825465608499232,
825465608497696,
822120592853526,
1428713,
1718087960,
1918643,
1000031,
825465608492064,
1213641,
2018618,
2018619,
1015914,
700190087,
2153644,
1718093079,
298463379,
700700063,
2213652,
298468389,
1718088045,
298468390,
298458398,
1718093084,
298458396,
1718088044
],
"image": "id-11134207-7rasd-m2m3zyk6u9xt6e",
"images": [
"id-11134207-7rasd-m2m3zyk6u9xt6e",
"id-11134207-7rasb-m2m3zyk6voi9bc",
"id-11134207-7rasm-m2m3zyk6yhn55e",
"id-11134207-7ras8-m2m3zyk6x32p74",
"id-11134207-7rash-m2m3zyk6zw7le6",
"id-11134207-7rash-m2m3zyk71as1b6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1731660711,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 221900000000,
"price_min": 221900000000,
"price_max": 221900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "VARIAN",
"options": [
"REIWA 1 PK",
"BESTLIFE 0.5 PK"
],
"images": [
"id-11134207-7ra0u-mdmr688hjz4c34",
"id-11134207-7ra0g-mdmr688hldosaf"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 221900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 186214711316,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 221900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Bonbon Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28867715811,
"shopid": 382304192,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2m3zyk6u9xt6e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,822120592853526,1428713,1718087960,1918643,1000031,825465608492064,1213641,2018618,2018619,1015914,700190087,2153644,1718093079,298463379,700700063,2213652,298468389,1718088045,298468390,298458398,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4923,\"model_id\":186214711316,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m2m3zyk6u9xt6e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,822120592853526,1428713,1718087960,1918643,1000031,825465608492064,1213641,2018618,2018619,1015914,700190087,2153644,1718093079,298463379,700700063,2213652,298468389,1718088045,298468390,298458398,1718093084,298458396,1718088044],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4923,\"model_id\":186214711316,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28867715811",
"debug_info": null
},
{
"item_basic": {
"itemid": 20496591414,
"shopid": 132460060,
"name": "AC Window 1/2 PK REIWA CW 0501RA",
"label_ids": [
1000016,
844931064601283,
1400066568,
1049137,
700005490,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1015914,
700190087,
1213641,
822120592853526,
1000031,
2018619,
2023641,
298463379,
2048660,
2048661,
700765096,
2068629,
298938357,
2098628,
298938368,
2098629,
298468390,
1718093084,
1718088044,
298458396,
298458398,
1718088045,
298468389
],
"image": "id-11134207-7r98u-lyrebix3jt9703",
"images": [
"id-11134207-7r98u-lyrebix3jt9703",
"id-11134207-7r98x-lyrebix3jtgof2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1723258395,
"sold": 0,
"historical_sold": 3,
"liked": false,
"liked_count": 5,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 229400000000,
"price_min": 229400000000,
"price_max": 229400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Serang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp764RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 229400000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 223086788465,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 229400000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp764RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "AM Store Serang",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 20496591414,
"shopid": 132460060,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-lyrebix3jt9703\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,844931064601283,1400066568,1049137,700005490,822059908662278,825465608499232,825465608497696,1718093079,1015914,700190087,1213641,822120592853526,1000031,2018619,2023641,298463379,2048660,2048661,700765096,2068629,298938357,2098628,298938368,2098629,298468390,1718093084,1718088044,298458396,298458398,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4750,\"model_id\":223086788465,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-lyrebix3jt9703\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,844931064601283,1400066568,1049137,700005490,822059908662278,825465608499232,825465608497696,1718093079,1015914,700190087,1213641,822120592853526,1000031,2018619,2023641,298463379,2048660,2048661,700765096,2068629,298938357,2098628,298938368,2098629,298468390,1718093084,1718088044,298458396,298458398,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4750,\"model_id\":223086788465,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_20496591414",
"debug_info": null
},
{
"item_basic": {
"itemid": 28418256842,
"shopid": 1036364118,
"name": "Reiwa AC Window 1 PK CW-0901RA 775 watt",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
837860934119952,
822120592853526,
1718093079,
1000031,
2018619,
2023641,
825465608497696,
298463379,
1718088045,
298468389
],
"image": "id-11134207-7rase-m2uk7n446p8bd9",
"images": [
"id-11134207-7rase-m2uk7n446p8bd9",
"id-11134207-7rash-m2uk7n446pht40",
"id-11134207-7rasm-m2uk7n44m5t9dd",
"id-11134207-7rasg-m2uk7n446p756f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732167032,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 259900000000,
"price_min": 259900000000,
"price_max": 259900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 259900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 158895167652,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 259900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Mrย Hotย &ย Cool",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28418256842,
"shopid": 1036364118,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m2uk7n446p8bd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,837860934119952,822120592853526,1718093079,1000031,2018619,2023641,825465608497696,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5170,\"model_id\":158895167652,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m2uk7n446p8bd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,837860934119952,822120592853526,1718093079,1000031,2018619,2023641,825465608497696,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5170,\"model_id\":158895167652,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28418256842",
"debug_info": null
},
{
"item_basic": {
"itemid": 28467665584,
"shopid": 212026963,
"name": "AC Window REIWA CW 0901RA / CW0901RA 1 PK 370 Watt Low Watt",
"label_ids": [
700025282,
1049112,
1049127,
822059908662278,
822120592853526,
1213641,
2018619,
1718093079,
298463379,
825465608497696,
298458396,
1718088044,
298458398,
1718088045,
298468389,
298468390,
1718093084
],
"image": "id-11134207-7rasl-m2lr3ehcjljl84",
"images": [
"id-11134207-7rasl-m2lr3ehcjljl84",
"id-11134207-7rask-m2lr3ehci6z56e",
"id-11134207-82250-mgtfijnsjnyjfb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1731636153,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 266500000000,
"price_min": 266500000000,
"price_max": 266500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 266500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 227024093255,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 266500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ABC ELEKTRONIK 123",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28467665584,
"shopid": 212026963,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2lr3ehcjljl84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,1049127,822059908662278,822120592853526,1213641,2018619,1718093079,298463379,825465608497696,298458396,1718088044,298458398,1718088045,298468389,298468390,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5273,\"model_id\":227024093255,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2lr3ehcjljl84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1049112,1049127,822059908662278,822120592853526,1213641,2018619,1718093079,298463379,825465608497696,298458396,1718088044,298458398,1718088045,298468389,298468390,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5273,\"model_id\":227024093255,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"pid_weight:1 match_weight:0.7 loss_weight:1\",\"item_cate\":\"0\",\"item_group_id\":\"13898\",\"rule_id\":\"13898\",\"target\":\"5\"},\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28467665584",
"debug_info": null
},
{
"item_basic": {
"itemid": 29965732947,
"shopid": 202195133,
"name": "Reiwa AC Window 1/2 PK CW-0501RA / CW0501RA 0,5 PK Direct Cooling",
"label_ids": [
1000167,
844931064601283,
1059156,
700005499,
822059908662278,
825465608497696,
822120592853526,
1718093079,
1000031,
2018619,
298463379,
1718088045,
298468389
],
"image": "id-11134207-7rasa-m1w8t2th64kx59",
"images": [
"id-11134207-7rasa-m1w8t2th64kx59"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730089534,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 209700000000,
"price_min": 209700000000,
"price_max": 209700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209700000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 49480089742,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Atlanta Electronics Official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 29965732947,
"shopid": 202195133,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasa-m1w8t2th64kx59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1059156,700005499,822059908662278,825465608497696,822120592853526,1718093079,1000031,2018619,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5312,\"model_id\":49480089742,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasa-m1w8t2th64kx59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,1059156,700005499,822059908662278,825465608497696,822120592853526,1718093079,1000031,2018619,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5312,\"model_id\":49480089742,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29965732947",
"debug_info": null
},
{
"item_basic": {
"itemid": 26611122740,
"shopid": 13185202,
"name": "(INSTANT) AC REIWA CW-0501RA WINDOW 1/2 PK 370 WATT",
"label_ids": [
47,
844931064601283,
1059152,
1049124,
822059908662278,
825465608492064,
1213641,
1918643,
2018619,
700700063,
298463379,
2048660,
2048661,
700765096,
2023641,
700810080,
298458398,
298458396,
298468389,
298468390
],
"image": "id-11134207-7r98q-m03ze9ti4agi74",
"images": [
"id-11134207-7r98q-m03ze9ti4agi74",
"id-11134207-7r98s-m03ze9ti5p0yec",
"id-11134207-81ztm-meb5uca2gz5ze1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1726201246,
"sold": 0,
"historical_sold": 6,
"liked": false,
"liked_count": 11,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 207318900000,
"price_min": 207318900000,
"price_max": 207318900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vemw-meb7itud1uyo4f.16000081757146173.mp4",
"thumb_url": "id-11110105-6vemw-meb7itud1uyo4f_cover",
"duration": 45,
"version": 2,
"vid": "id-11110105-6vemw-meb7itud1uyo4f",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vemw-meb7itud1uyo4f.16000081757146173.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-meb7itud1uyo4f.16000081757146173.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-meb7itud1uyo4f.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "TYPE",
"options": [
"WINDOW REIWA"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "VARIASI",
"options": [
"STD AC",
"+BUBBLE WRAP",
"EXTRA PROTEKSI",
"PAKET PASANG"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 207318900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 158850199810,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 207318900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 6,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 6,
"display_sold_count_text": "6"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Jesselyn Electronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26611122740,
"shopid": 13185202,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-m03ze9ti4agi74\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,844931064601283,1059152,1049124,822059908662278,825465608492064,1213641,1918643,2018619,700700063,298463379,2048660,2048661,700765096,2023641,700810080,298458398,298458396,298468389,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5202,\"model_id\":158850199810,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98q-m03ze9ti4agi74\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,844931064601283,1059152,1049124,822059908662278,825465608492064,1213641,1918643,2018619,700700063,298463379,2048660,2048661,700765096,2023641,700810080,298458398,298458396,298468389,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5202,\"model_id\":158850199810,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26611122740",
"debug_info": null
},
{
"item_basic": {
"itemid": 24828785744,
"shopid": 103806787,
"name": "REIWA AC WINDOW 1/2 PK CW-0501RA CW0501 RA 0501RA 0.5 PK STANDARD LOW WATT AC WINDOW REIWA",
"label_ids": [
700005490,
700005495,
822059908662278,
825465608492064,
825465608494624,
825465608499232,
834403089593352,
825465608497696,
837860934119952,
844931064601283,
1213641,
1000031,
1718093079,
2018619,
298463379,
844931086908638,
2048661,
2048660,
700765096,
298933384,
1718088044,
298468390,
298468389,
298458396,
1718088045,
298458398,
1718093084
],
"image": "id-11134207-7r98x-luz16y6eyqveb4",
"images": [
"id-11134207-7r98x-luz16y6eyqveb4",
"id-11134207-7r98t-luz16y6excayd8",
"id-11134207-7r991-luz16y6excfo5c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1715003641,
"sold": 0,
"historical_sold": 2,
"liked": false,
"liked_count": 4,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 209990000000,
"price_min": 209990000000,
"price_max": 209990000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1a-luz1jg6gd4pz1d.16000081715004143.mp4",
"thumb_url": "id-11110105-7r98w-luz1jokc3pm694",
"duration": 33,
"version": 2,
"vid": "id-11110105-6ke1a-luz1jg6gd4pz1d",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1a-luz1jg6gd4pz1d.16000081715004143.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-luz1jg6gd4pz1d.16000081715004143.mp4",
"width": 848,
"height": 478
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-luz1jg6gd4pz1d.default.mp4",
"width": 848,
"height": 478
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "COLOR",
"options": [
"AC ONLY",
"AC + PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209990000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 215174331994,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209990000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "uptodateonlineshop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 24828785744,
"shopid": 103806787,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-luz16y6eyqveb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608492064,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,844931064601283,1213641,1000031,1718093079,2018619,298463379,844931086908638,2048661,2048660,700765096,298933384,1718088044,298468390,298468389,298458396,1718088045,298458398,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4591,\"model_id\":215174331994,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98x-luz16y6eyqveb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608492064,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,844931064601283,1213641,1000031,1718093079,2018619,298463379,844931086908638,2048661,2048660,700765096,298933384,1718088044,298468390,298468389,298458396,1718088045,298458398,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4591,\"model_id\":215174331994,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24828785744",
"debug_info": null
},
{
"item_basic": {
"itemid": 42815432210,
"shopid": 187314707,
"name": "AC Window Bestlife BWA-05PLD 1/2 PK Low Watt BWA05PLD AC Jendela",
"label_ids": [
2018619,
2023641,
844931064601283,
298463379,
1049143,
1049142,
822059908662278,
825465608492064,
825465608499232,
834403089593352,
825465608497696,
822120592853526,
1718093079,
298933384,
1718093065,
844931086908638,
1718088045,
298468389
],
"image": "id-11134207-81zto-mdy5lrjxph4xc2",
"images": [
"id-11134207-81zto-mdy5lrjxph4xc2",
"id-11134207-81ztc-mdy5lrjt6j9h89",
"id-11134207-81zti-mdy5lrjtkkxya0",
"id-11134207-81ztq-mdy5lrjjjkzqc5",
"id-11134207-81ztf-medmnoih4ydc08",
"id-11134207-81ztk-medmnoih6cxsa0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756356051,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 5,
"view_count": null,
"catid": 100010,
"brand": "Bestlife",
"cmt_count": 1,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 256032000000,
"price_min": 256032000000,
"price_max": 256032000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Pekanbaru",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 256032000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 147925275382,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 256032000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sinar Matahari SM Amin",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
0,
1000
]
},
"itemid": 42815432210,
"shopid": 187314707,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-mdy5lrjxph4xc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049143,1049142,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,822120592853526,1718093079,298933384,1718093065,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":1027,\"model_id\":147925275382,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-mdy5lrjxph4xc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049143,1049142,822059908662278,825465608492064,825465608499232,834403089593352,825465608497696,822120592853526,1718093079,298933384,1718093065,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\"],\"merge_rank\":1027,\"model_id\":147925275382,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[1000,0,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42815432210",
"debug_info": null
},
{
"item_basic": {
"itemid": 28466317645,
"shopid": 1037017683,
"name": "AC Window Reiwa 1 PK CW-0901RA",
"label_ids": [
844931064601283,
700005490,
700005510,
822059908662278,
825465608492064,
2018619,
2048660,
2048661,
700765096,
1400066568,
298463379,
298468389
],
"image": "id-11134207-7rasi-m23fmxanq3bu59",
"images": [
"id-11134207-7rasi-m23fmxanq3bu59",
"id-11134207-7rasb-m23fmxanrhxsbc",
"id-11134207-7rasi-m23fmxanswi86c",
"id-11134207-7rasm-m23fmxanub2o2a",
"id-11134207-7rasi-m23fmxanq36w1a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1730524962,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 5,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 239000000000,
"price_min": 239000000000,
"price_max": 239000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 239000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 241934460122,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 239000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "JVN Electronics",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28466317645,
"shopid": 1037017683,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m23fmxanq3bu59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005510,822059908662278,825465608492064,2018619,2048660,2048661,700765096,1400066568,298463379,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4983,\"model_id\":241934460122,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m23fmxanq3bu59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005510,822059908662278,825465608492064,2018619,2048660,2048661,700765096,1400066568,298463379,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4983,\"model_id\":241934460122,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28466317645",
"debug_info": null
},
{
"item_basic": {
"itemid": 28463500310,
"shopid": 382304192,
"name": "Reiwa AC Window 1/2 PK CW-0501RA / CW0501RA 0,5 PK Direct Cooling",
"label_ids": [
844931064601283,
1059152,
1049122,
822059908662278,
822120592853526,
1918643,
1718087960,
1428713,
1015914,
700190087,
825465608492064,
825465608499232,
825465608497696,
1213641,
2018618,
2018619,
298933384,
2153644,
1718093079,
298463379,
700700063,
2213652,
2008656,
1718088044,
1718088045,
298468389,
298468390,
298458398,
1718093084,
298458396
],
"image": "id-11134207-7rash-m13l988arvoo8c",
"images": [
"id-11134207-7rash-m13l988arvoo8c",
"id-11134207-7rasb-m13l988ata945b",
"id-11134207-7rasb-m13l988aywiw6b",
"id-11134207-7rasj-m13l988auotk26",
"id-11134207-7rasd-m13l988aw3e088",
"id-11134207-7ras8-m13l988b0b3cae",
"id-11134207-7rasc-m13l988axhyg5c",
"id-11134207-7rash-m13l988b1pns2c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1728379227,
"sold": 0,
"historical_sold": 2,
"liked": false,
"liked_count": 29,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 209900000000,
"price_min": 209900000000,
"price_max": 209900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1j-m1qhywfu01xr2c.16000081729741633.mp4",
"thumb_url": "id-11110105-7ras9-m1qhyyu4jiwxf5",
"duration": 60,
"version": 2,
"vid": "id-11110105-6ke1j-m1qhywfu01xr2c",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1j-m1qhywfu01xr2c.16000081729741633.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-m1qhywfu01xr2c.16000081729741633.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-m1qhywfu01xr2c.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "VARIAN",
"options": [
"REIWA 0.5PK",
"BESTLIFE 0.5PK"
],
"images": [
"id-11134207-7ra0j-mdmr688hh5zg6f",
"id-11134207-7ra0q-mdmr688hikjwae"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 167273945086,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Bonbon Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28463500310,
"shopid": 382304192,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m13l988arvoo8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,822120592853526,1918643,1718087960,1428713,1015914,700190087,825465608492064,825465608499232,825465608497696,1213641,2018618,2018619,298933384,2153644,1718093079,298463379,700700063,2213652,2008656,1718088044,1718088045,298468389,298468390,298458398,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4880,\"model_id\":167273945086,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rash-m13l988arvoo8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,822120592853526,1918643,1718087960,1428713,1015914,700190087,825465608492064,825465608499232,825465608497696,1213641,2018618,2018619,298933384,2153644,1718093079,298463379,700700063,2213652,2008656,1718088044,1718088045,298468389,298468390,298458398,1718093084,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4880,\"model_id\":167273945086,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28463500310",
"debug_info": null
},
{
"item_basic": {
"itemid": 42200807438,
"shopid": 1102835203,
"name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK",
"label_ids": [
2018619,
844931064601283,
1059156,
700000528,
822059908662278,
822120592853526,
825465608499232,
1718093065,
825465608497696,
1400285055,
1015914,
700190087,
822120592861206,
1718093079,
298463379,
2048661,
825465608494624,
2048660,
700765096,
2023641,
2068629,
298938357,
298938368,
1718088045,
298468389,
2098629,
2098628
],
"image": "id-11134207-7rbk0-m9qpo80b9at7a9",
"images": [
"id-11134207-7rbk0-m9qpo80b9at7a9",
"id-11134207-7rbk1-m9qpo81f7ocb5c",
"id-11134207-7rbk2-m9qpo80b9b0t92",
"id-11134207-7rbk7-m9qpo81f7obx8d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1747189146,
"sold": 0,
"historical_sold": 3,
"liked": false,
"liked_count": 5,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 3,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 214830100000,
"price_min": 214830100000,
"price_max": 214830100000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 0,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Temanggung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp716RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 214830100000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 177178935238,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 214830100000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp716RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Gentongmas Elektronik Official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
97
]
},
"itemid": 42200807438,
"shopid": 1102835203,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m9qpo80b9at7a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000528,822059908662278,822120592853526,825465608499232,1718093065,825465608497696,1400285055,1015914,700190087,822120592861206,1718093079,298463379,2048661,825465608494624,2048660,700765096,2023641,2068629,298938357,298938368,1718088045,298468389,2098629,2098628],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4662,\"model_id\":177178935238,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m9qpo80b9at7a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000528,822059908662278,822120592853526,825465608499232,1718093065,825465608497696,1400285055,1015914,700190087,822120592861206,1718093079,298463379,2048661,825465608494624,2048660,700765096,2023641,2068629,298938357,298938368,1718088045,298468389,2098629,2098628],\"matched_keywords\":[\"ac window\",\"ac window\"],\"merge_rank\":4662,\"model_id\":177178935238,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42200807438",
"debug_info": null
},
{
"item_basic": {
"itemid": 25488494251,
"shopid": 61779869,
"name": "AC REIWA CW-0501RA AC WINDOW 1 /2PK",
"label_ids": [
844931086908638,
844931064601283,
700005512,
1049112,
1718093079,
822059908662278,
825465608499232,
837860934119952,
1000031,
2018619,
825465608497696,
298463379,
1718088045,
298468389
],
"image": "id-11134207-7rasl-m2rtp259ys9s35",
"images": [
"id-11134207-7rasl-m2rtp259ys9s35",
"id-11134207-7rasj-m2rtp259yswh13",
"id-11134207-7ras8-m2rtp259yshv7a",
"id-11134207-7rasm-m2rtp277yrpg2a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732001265,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 199990000000,
"price_min": 199990000000,
"price_max": 199990000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199990000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 197987955192,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199990000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "grosir ckr",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 25488494251,
"shopid": 61779869,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2rtp259ys9s35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005512,1049112,1718093079,822059908662278,825465608499232,837860934119952,1000031,2018619,825465608497696,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4666,\"model_id\":197987955192,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m2rtp259ys9s35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005512,1049112,1718093079,822059908662278,825465608499232,837860934119952,1000031,2018619,825465608497696,298463379,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4666,\"model_id\":197987955192,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25488494251",
"debug_info": null
},
{
"item_basic": {
"itemid": 27426033464,
"shopid": 616226822,
"name": "AC Window Reiwa 0,5pk CW-0501RA 1/2pk Low Watt 370watt CW 0501 RA",
"label_ids": [
844931064601283,
1049112,
700005512,
822059908662278,
825465608492064,
834403089593352,
1213641,
2018619,
2023641,
1400066568,
1718093079,
825465608499232,
825465608497696,
298463379,
844931086908638,
298458398,
1718088044,
298468390,
1718093084,
298468389,
298458396,
1718088045
],
"image": "sg-11134201-7repr-m8vx7mmetgx304",
"images": [
"sg-11134201-7repr-m8vx7mmetgx304",
"sg-11134201-7reo3-m8vx7mxsa2jd74",
"sg-11134201-7repu-m8vx7n95tdlhf0",
"sg-11134201-7renn-m8vx7nlnb3cw79",
"sg-11134201-7reoe-m8vx7nxau2z526"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1739426912,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 199207300000,
"price_min": 199207300000,
"price_max": 199207300000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199207300000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 227366640982,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199207300000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Megajaya Sukses Abadi",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27426033464,
"shopid": 616226822,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7repr-m8vx7mmetgx304\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,2018619,2023641,1400066568,1718093079,825465608499232,825465608497696,298463379,844931086908638,298458398,1718088044,298468390,1718093084,298468389,298458396,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4309,\"model_id\":227366640982,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7repr-m8vx7mmetgx304\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608492064,834403089593352,1213641,2018619,2023641,1400066568,1718093079,825465608499232,825465608497696,298463379,844931086908638,298458398,1718088044,298468390,1718093084,298468389,298458396,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4309,\"model_id\":227366640982,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27426033464",
"debug_info": null
},
{
"item_basic": {
"itemid": 29790485267,
"shopid": 142681806,
"name": "AC Reiwa Window 1/2 PK CW-0501RA - 0.5 PK, 370 watt, Remote",
"label_ids": [
2018619,
700025282,
298463379,
700750053,
700765096,
700005507,
1049126,
822059908662278,
2048660,
2048661,
822120592853526,
298468389
],
"image": "id-11134207-82250-mguc9mh0stfw9f",
"images": [
"id-11134207-82250-mguc9mh0stfw9f",
"id-11134207-7ra0p-mdv63f81zyaee1",
"id-11134207-82251-mguc9mh0revgdd",
"id-11134207-82251-mguc9mh3hqmm22",
"id-11134207-82251-mguc9mgynk7j02",
"id-11134207-8224o-mguc9mh0q0b0da"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756189901,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 197500000000,
"price_min": 197500000000,
"price_max": 197500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Denpasar",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 197500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 301250052973,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 197500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Elecmart Bali",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 29790485267,
"shopid": 142681806,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mguc9mh0stfw9f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,298463379,700750053,700765096,700005507,1049126,822059908662278,2048660,2048661,822120592853526,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4451,\"model_id\":301250052973,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mguc9mh0stfw9f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,298463379,700750053,700765096,700005507,1049126,822059908662278,2048660,2048661,822120592853526,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4451,\"model_id\":301250052973,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29790485267",
"debug_info": null
},
{
"item_basic": {
"itemid": 26972890000,
"shopid": 124152236,
"name": "Reiwa AC Window Jendela 1/2 PK 0.5 Mini Kosan Low Watt Hemat Tanpa Outdoor Bobok Tembok CW-0501RA",
"label_ids": [
844931064601283,
1049145,
1049148,
822059908662278,
825465608499232,
1718093079,
1400285055,
822120592853526,
298933384,
700810080
],
"image": "sg-11134201-7ra3c-m4pym7n8vdq9ee",
"images": [
"sg-11134201-7ra3c-m4pym7n8vdq9ee",
"sg-11134201-7ra2b-m4pym7twk7uwf4",
"sg-11134201-7ra2i-m4pym7z6cghv52",
"sg-11134201-7ra19-m4pym8jfitxg4d",
"sg-11134201-7ra2u-m4pym8nvcc1w5b",
"sg-11134201-7ra14-m4pym8uj2mwk75",
"sg-11134201-7ra3o-m4pym902xbp0a3",
"sg-11134201-7ra2x-m4pym9acffk35e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1736246812,
"sold": 0,
"historical_sold": 3,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 2,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 204000000000,
"price_min": 204000000000,
"price_max": 204000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 2,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandar Lampung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 204000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 247422583289,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 204000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Inaya elektro",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26972890000,
"shopid": 124152236,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra3c-m4pym7n8vdq9ee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049145,1049148,822059908662278,825465608499232,1718093079,1400285055,822120592853526,298933384,700810080],\"matched_keywords\":[\"ac window\"],\"merge_rank\":1423,\"model_id\":247422583289,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7ra3c-m4pym7n8vdq9ee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049145,1049148,822059908662278,825465608499232,1718093079,1400285055,822120592853526,298933384,700810080],\"matched_keywords\":[\"ac window\"],\"merge_rank\":1423,\"model_id\":247422583289,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26972890000",
"debug_info": null
},
{
"item_basic": {
"itemid": 26568070168,
"shopid": 14141563,
"name": "REIWA Ac Window 1 PK - CW0901RA",
"label_ids": [
38,
39,
47,
1000167,
1400095067,
1400285005,
1428713,
1718087960,
844931086908638,
844931064601283,
1059152,
700005489,
822059908662278,
837860934119952,
825465608499232,
834403089593352,
825465608497696,
1000031,
2018619,
2023641,
1718093079,
298463379,
2218763,
298468389,
1718088045
],
"image": "id-11134207-7rasi-m2rktq0jh3si00",
"images": [
"id-11134207-7rasi-m2rktq0jh3si00",
"id-11134207-7ras8-m2rktq0jjwxe7b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732009136,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 241800000000,
"price_min": 241800000000,
"price_max": 241800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 241800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 227040473972,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 241800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Utama Electronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 26568070168,
"shopid": 14141563,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2rktq0jh3si00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[38,39,47,1000167,1400095067,1400285005,1428713,1718087960,844931086908638,844931064601283,1059152,700005489,822059908662278,837860934119952,825465608499232,834403089593352,825465608497696,1000031,2018619,2023641,1718093079,298463379,2218763,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4867,\"model_id\":227040473972,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m2rktq0jh3si00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[38,39,47,1000167,1400095067,1400285005,1428713,1718087960,844931086908638,844931064601283,1059152,700005489,822059908662278,837860934119952,825465608499232,834403089593352,825465608497696,1000031,2018619,2023641,1718093079,298463379,2218763,298468389,1718088045],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4867,\"model_id\":227040473972,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26568070168",
"debug_info": null
},
{
"item_basic": {
"itemid": 40250743729,
"shopid": 1011781013,
"name": "AC Window Reiwa 1/2 PK CW-0501RA",
"label_ids": [
844931064601283,
1059152,
1049124,
822059908662278,
298463379,
1718093079,
1718093065,
2018619,
1015914,
700190087,
825465608499232,
825465608493600,
2023641,
1718088045,
298468389
],
"image": "id-11134207-7rbk3-m9pj7l6mioe31f",
"images": [
"id-11134207-7rbk3-m9pj7l6mioe31f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1747130981,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "HARGA",
"options": [
"UNIT SAJA",
"UNIT+PASANG"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 285522376100,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Elektric_Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 40250743729,
"shopid": 1011781013,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m9pj7l6mioe31f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,822059908662278,298463379,1718093079,1718093065,2018619,1015914,700190087,825465608499232,825465608493600,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5067,\"model_id\":285522376100,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m9pj7l6mioe31f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,822059908662278,298463379,1718093079,1718093065,2018619,1015914,700190087,825465608499232,825465608493600,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5067,\"model_id\":285522376100,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40250743729",
"debug_info": null
},
{
"item_basic": {
"itemid": 27739423196,
"shopid": 1086389122,
"name": "Window AC 1/2 PK REIWA CW0501RA / Tanpa Pipa AC / Window Air Conditioner 0,5 PK Palembang",
"label_ids": [
2018619,
1428713,
1718087960,
844931064601283,
298463379,
1049128,
700005504,
1718093079,
822059908662278,
834403089593352,
825465608497696,
825465608492064,
825465608499232,
1015914,
700190087,
1718093065,
2048660,
2048661,
700765096,
2023641,
298933384,
2068629,
298938357,
700810080,
1400285055,
298468389,
1718088045,
298938368,
2098629,
2098628
],
"image": "sg-11134201-7rdxc-mcx70k35yq1g72",
"images": [
"sg-11134201-7rdxc-mcx70k35yq1g72",
"sg-11134201-7rdwb-mcx70k7vqez85f",
"sg-11134201-7rdx4-mcx70kml92nr3b",
"sg-11134201-7rdwd-mcx70ksp06wpa6",
"sg-11134201-7rdx9-mcx70kx4qtz45a",
"sg-11134201-7rdxs-mcx70l3ig3ja45",
"sg-11134201-7rdvg-mcx70l927yyf0f",
"sg-11134201-7rdyp-mcx70ld83bpcad"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1754118597,
"sold": 0,
"historical_sold": 3,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 220000000000,
"price_min": 220000000000,
"price_max": 220000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6kou2-mcx85rouup8c40.16000091754120532.mp4",
"thumb_url": "id-11110107-6kou2-mcx85rouup8c40_cover",
"duration": 60,
"version": 2,
"vid": "id-11110107-6kou2-mcx85rouup8c40",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6kou2-mcx85rouup8c40.16000091754120532.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kou2-mcx85rouup8c40.16000091754120532.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6kou2-mcx85rouup8c40.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 1,
"rating_count": [
1,
1,
0,
0,
0,
0
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palembang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp733RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 220000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 237980075509,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 220000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp733RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sinarjaya1688",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0,
1000,
1000,
1000
]
},
"itemid": 27739423196,
"shopid": 1086389122,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxc-mcx70k35yq1g72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1049128,700005504,1718093079,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1015914,700190087,1718093065,2048660,2048661,700765096,2023641,298933384,2068629,298938357,700810080,1400285055,298468389,1718088045,298938368,2098629,2098628],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3444,\"model_id\":237980075509,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdxc-mcx70k35yq1g72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1049128,700005504,1718093079,822059908662278,834403089593352,825465608497696,825465608492064,825465608499232,1015914,700190087,1718093065,2048660,2048661,700765096,2023641,298933384,2068629,298938357,700810080,1400285055,298468389,1718088045,298938368,2098629,2098628],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":3444,\"model_id\":237980075509,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[0,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27739423196",
"debug_info": null
},
{
"item_basic": {
"itemid": 24121030377,
"shopid": 85152735,
"name": "Ac Window Reiwa 1/2 Pk Low Watt CW 0501RA",
"label_ids": [
47,
1213641,
1000031,
2018619,
700005490,
700005495,
822059908662278,
825465608492064,
834403089593352,
298463379,
298933384,
2023641,
1718093079,
2048660,
2048661,
700765096,
298468389,
298468390,
298458396,
1718088045,
1718088044,
1718093084,
298458398
],
"image": "id-11134207-7r98u-ltcecpa5rxsp0d",
"images": [
"id-11134207-7r98u-ltcecpa5rxsp0d",
"id-11134207-7r98w-ltcecpa5rxop39",
"id-11134207-7r98t-ltcecpa5rxo4c4",
"id-11134207-7r990-ltcecpa5tchl67",
"id-11134207-7r98u-ltcecpa5tc9594",
"id-11134207-7r991-ltcecpa5tc8kfe"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1711454458,
"sold": 0,
"historical_sold": 2,
"liked": false,
"liked_count": 6,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 209900000000,
"price_min": 209900000000,
"price_max": 209900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 197397484511,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Princess Electronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 24121030377,
"shopid": 85152735,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-ltcecpa5rxsp0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1213641,1000031,2018619,700005490,700005495,822059908662278,825465608492064,834403089593352,298463379,298933384,2023641,1718093079,2048660,2048661,700765096,298468389,298468390,298458396,1718088045,1718088044,1718093084,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4879,\"model_id\":197397484511,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-ltcecpa5rxsp0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1213641,1000031,2018619,700005490,700005495,822059908662278,825465608492064,834403089593352,298463379,298933384,2023641,1718093079,2048660,2048661,700765096,298468389,298468390,298458396,1718088045,1718088044,1718093084,298458398],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4879,\"model_id\":197397484511,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24121030377",
"debug_info": null
},
{
"item_basic": {
"itemid": 28742903082,
"shopid": 1635907046,
"name": "SmartSh0p- Ac Reiwa Window 1/2 Pk R32 Cw-0501Ra / Cw-0501Ra",
"label_ids": [
844931064601283,
1049126,
700005496,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134275-824hy-mfkjz437ype7bb",
"images": [
"sg-11134275-824hy-mfkjz437ype7bb",
"sg-11134275-824ge-mfkjz49g8o3x8c",
"sg-11134275-824iz-mfkjz493k74ede",
"sg-11134275-824gt-mfkjz48j2pe215",
"sg-11134275-824g3-mfkjz493oetle7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1760424017,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 269900000000,
"price_min": 269900000000,
"price_max": 269900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Gianyar",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 269900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 306954017033,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 269900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "f6_r145_be",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28742903082,
"shopid": 1635907046,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-824hy-mfkjz437ype7bb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049126,700005496,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5314,\"model_id\":306954017033,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-824hy-mfkjz437ype7bb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049126,700005496,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5314,\"model_id\":306954017033,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28742903082",
"debug_info": null
},
{
"item_basic": {
"itemid": 27468852174,
"shopid": 1285026724,
"name": "AC Window Reiwa 1/2 PK CW-0501RA",
"label_ids": [
844931064601283,
1059152,
1049124,
822059908662278,
1000031,
2018619,
1400285055,
1213641,
825465608492064,
1015914,
700190087,
825465608499232,
825465608493600,
1718093079,
298463379,
2048661,
2048660,
700765096,
1718093084,
298468389,
1718088044,
298458396,
298458398,
1718088045,
298468390
],
"image": "id-11134207-7rasi-m31yt7qoamnzc0",
"images": [
"id-11134207-7rasi-m31yt7qoamnzc0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732615372,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 210900000000,
"price_min": 210900000000,
"price_max": 210900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "HARGA",
"options": [
"UNIT SAJA",
"UNIT + PASANG"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 210900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 196137437185,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 210900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "OBJELEKTRIKINDO",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27468852174,
"shopid": 1285026724,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m31yt7qoamnzc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,822059908662278,1000031,2018619,1400285055,1213641,825465608492064,1015914,700190087,825465608499232,825465608493600,1718093079,298463379,2048661,2048660,700765096,1718093084,298468389,1718088044,298458396,298458398,1718088045,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4711,\"model_id\":196137437185,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasi-m31yt7qoamnzc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,822059908662278,1000031,2018619,1400285055,1213641,825465608492064,1015914,700190087,825465608499232,825465608493600,1718093079,298463379,2048661,2048660,700765096,1718093084,298468389,1718088044,298458396,298458398,1718088045,298468390],\"matched_keywords\":[\"ac window\"],\"merge_rank\":4711,\"model_id\":196137437185,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27468852174",
"debug_info": null
},
{
"item_basic": {
"itemid": 27026581312,
"shopid": 1366248929,
"name": "AC WINDOW REIWA 1/2 PK - CW-0501RA",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608494624,
825465608499232,
2018619,
825465608497696,
2048660,
2048661,
700765096
],
"image": "id-11134207-7rbk4-m6dt69zsmd2f7a",
"images": [
"id-11134207-7rbk4-m6dt69zsmd2f7a",
"id-11134207-7rbk7-m6dt6a02ly7w03",
"id-11134207-7rbk9-m9h2nc8x6jv159",
"id-11134207-7rbk4-m9h2nc8x7yfhb3",
"id-11134207-7rbk9-m9h2nc8x9czxe4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1739869806,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6knay-m9h2onj5lgm6fa.16000081746605046.mp4",
"thumb_url": "id-11110105-6knay-m9h2onj5lgm6fa_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6knay-m9h2onj5lgm6fa",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knay-m9h2onj5lgm6fa.16000081746605046.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m9h2onj5lgm6fa.16000081746605046.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knay-m9h2onj5lgm6fa.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 29570596760,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Viviย Electrindo Official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27026581312,
"shopid": 1366248929,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6dt69zsmd2f7a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608494624,825465608499232,2018619,825465608497696,2048660,2048661,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5192,\"model_id\":29570596760,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6dt69zsmd2f7a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608494624,825465608499232,2018619,825465608497696,2048660,2048661,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5192,\"model_id\":29570596760,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27026581312",
"debug_info": null
},
{
"item_basic": {
"itemid": 29124163157,
"shopid": 222672522,
"name": "REIWA AC Window 1/2 PK CW 0501RA Pendingin Ruangan 370W Low Watt",
"label_ids": [
700025282,
1718087960,
1428713,
700000493,
1059156,
822059908662278,
1015914,
700190087,
1400066568,
2018619,
1718093079,
2023641,
825465608497696,
298463379,
2068629,
298938357,
2098628,
298938368,
2098629,
298468389,
1718088045
],
"image": "id-11134207-8224y-mg1meiy4jrwqd7",
"images": [
"id-11134207-8224y-mg1meiy4jrwqd7",
"id-11134207-8224z-mg1meiydyartb8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1737467903,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 8,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 224000000000,
"price_min": 224000000000,
"price_max": 224000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Kudus",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp746RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 224000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 252518113701,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 224000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp746RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "RN Murah",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000
]
},
"itemid": 29124163157,
"shopid": 222672522,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mg1meiy4jrwqd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1718087960,1428713,700000493,1059156,822059908662278,1015914,700190087,1400066568,2018619,1718093079,2023641,825465608497696,298463379,2068629,298938357,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4061,\"model_id\":252518113701,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mg1meiy4jrwqd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700025282,1718087960,1428713,700000493,1059156,822059908662278,1015914,700190087,1400066568,2018619,1718093079,2023641,825465608497696,298463379,2068629,298938357,2098628,298938368,2098629,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\"],\"merge_rank\":4061,\"model_id\":252518113701,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29124163157",
"debug_info": null
},
{
"item_basic": {
"itemid": 27555794785,
"shopid": 359477015,
"name": "AC WINDOW REIWA 1 PK CW-0901RA CW0901 RA 0901RA 1 PK STANDARD LOW WATT AC WINDOW REIWA",
"label_ids": [
844931064601283,
1718093079,
700005490,
700005495,
822059908662278,
825465608494624,
825465608499232,
834403089593352,
825465608497696,
837860934119952,
825465608492064,
1213641,
1000031,
2018619,
298463379,
844931086908638,
2048660,
2048661,
700765096,
298933384,
1718088045,
1718093084,
1718088044,
298468390,
298458398,
298468389,
298458396
],
"image": "id-11134207-7r98s-lxxo790lkcv259",
"images": [
"id-11134207-7r98s-lxxo790lkcv259",
"id-11134207-7r98r-lxxo790lkd19bd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1721462510,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 26,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 279900000000,
"price_min": 279900000000,
"price_max": 279900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1k-lxxo8vdk5ulqbe.16000081721458977.mp4",
"thumb_url": "id-11110105-7r98t-lxxo94hiu99ka0",
"duration": 33,
"version": 2,
"vid": "id-11110105-6ke1k-lxxo8vdk5ulqbe",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1k-lxxo8vdk5ulqbe.16000081721458977.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-lxxo8vdk5ulqbe.16000081721458977.mp4",
"width": 848,
"height": 478
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-lxxo8vdk5ulqbe.default.mp4",
"width": 848,
"height": 478
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Color",
"options": [
"AC ONLY",
"AC + PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 279900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 168316326239,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 279900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Electronic Super Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 27555794785,
"shopid": 359477015,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lxxo790lkcv259\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,1213641,1000031,2018619,298463379,844931086908638,2048660,2048661,700765096,298933384,1718088045,1718093084,1718088044,298468390,298458398,298468389,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5365,\"model_id\":168316326239,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lxxo790lkcv259\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,1213641,1000031,2018619,298463379,844931086908638,2048660,2048661,700765096,298933384,1718088045,1718093084,1718088044,298468390,298458398,298468389,298458396],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5365,\"model_id\":168316326239,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27555794785",
"debug_info": null
},
{
"item_basic": {
"itemid": 28750463159,
"shopid": 595069832,
"name": "AC WINDOW REIWA CW-0501RA CW0501 RA 0501RA 1/2 PK STANDARD LOW WATT AC WINDOW REIWA 0.5 PK",
"label_ids": [
700005490,
700005495,
822059908662278,
825465608494624,
825465608499232,
834403089593352,
825465608497696,
837860934119952,
825465608492064,
1213641,
1000031,
1718093079,
2048660,
2048661,
700765096,
298458396,
1718093084
],
"image": "id-11134207-7r98u-lvivof6rwnur68",
"images": [
"id-11134207-7r98u-lvivof6rwnur68",
"id-11134207-7r98t-lvj00gpkzow91f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1716212655,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 219500000000,
"price_min": 219500000000,
"price_max": 219500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1j-lvj07oxm5b48be.16000081716212602.mp4",
"thumb_url": "id-11110105-7r98o-lvj07x7w2l52ef",
"duration": 33,
"version": 2,
"vid": "id-11110105-6ke1j-lvj07oxm5b48be",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1j-lvj07oxm5b48be.16000081716212602.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-lvj07oxm5b48be.16000081716212602.mp4",
"width": 848,
"height": 478
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1j-lvj07oxm5b48be.default.mp4",
"width": 848,
"height": 478
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "color",
"options": [
"AC WINDOW ONLY",
"+ PACK BUBBLEWRAP"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 219500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 215506668868,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 219500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "tangerangsuperstore",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTUuNl97YjExYmEzYWY0ODU1N2Q4YzgyNDExMzQxZjM1ZGEwMDA6MDIwMDAwZDBhNDNmNDMxMjowMTAwMDFhYjZmNDYzNDg2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDgxNzQ2ODE4Mg==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 28750463159,
"shopid": 595069832,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-lvivof6rwnur68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,1213641,1000031,1718093079,2048660,2048661,700765096,298458396,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5198,\"model_id\":215506668868,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-lvivof6rwnur68\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608494624,825465608499232,834403089593352,825465608497696,837860934119952,825465608492064,1213641,1000031,1718093079,2048660,2048661,700765096,298458396,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5198,\"model_id\":215506668868,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28750463159",
"debug_info": null
},
{
"item_basic": {
"itemid": 25179371962,
"shopid": 359477015,
"name": "AC WINDOW REIWA 1/2 PK CW-0501RA CW0501 RA 0501RA 0.5 PK STANDARD LOW WATT AC WINDOW REIWA",
"label_ids": [
700005490,
700005495,
822059908662278,
825465608497696,
837860934119952,
825465608492064,
825465608494624,
825465608499232,
834403089593352,
844931064601283,
1213641,
1000031,
1015914,
700190087,
1718093079,
2018619,
298463379,
2048660,
2048661,
700765096,
298933384,
298458398,
298468389,
298468390,
298458396,
1718088045,
1718088044,
1718093084
],
"image": "id-11134207-7r98r-lv2t4ccyv5t8bf",
"images": [
"id-11134207-7r98r-lv2t4ccyv5t8bf",
"id-11134207-7r98z-lv2t4ccyv66g71"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1715234257,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 219900000000,
"price_min": 219900000000,
"price_max": 219900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1i-lv2t71y83ccz8e.16000081715232257.mp4",
"thumb_url": "id-11110105-7r98z-lv2t7frpx2jkf0",
"duration": 33,
"version": 2,
"vid": "id-11110105-6ke1i-lv2t71y83ccz8e",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1i-lv2t71y83ccz8e.16000081715232257.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1i-lv2t71y83ccz8e.16000081715232257.mp4",
"width": 848,
"height": 478
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1i-lv2t71y83ccz8e.default.mp4",
"width": 848,
"height": 478
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Color",
"options": [
"AC ONLY",
"AC + PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 219900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 217564973089,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 219900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Electronic Super Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 25179371962,
"shopid": 359477015,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lv2t4ccyv5t8bf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,834403089593352,844931064601283,1213641,1000031,1015914,700190087,1718093079,2018619,298463379,2048660,2048661,700765096,298933384,298458398,298468389,298468390,298458396,1718088045,1718088044,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5036,\"model_id\":217564973089,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98r-lv2t4ccyv5t8bf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005490,700005495,822059908662278,825465608497696,837860934119952,825465608492064,825465608494624,825465608499232,834403089593352,844931064601283,1213641,1000031,1015914,700190087,1718093079,2018619,298463379,2048660,2048661,700765096,298933384,298458398,298468389,298468390,298458396,1718088045,1718088044,1718093084],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5036,\"model_id\":217564973089,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25179371962",
"debug_info": null
},
{
"item_basic": {
"itemid": 29555169881,
"shopid": 1165828640,
"name": "Reiwa AC Window 1/2 PK CW-0501RA 0,5 PK CW0501RA",
"label_ids": [
844931064601283,
700005499,
1059156,
822059908662278,
837860934119952,
1000031,
2018619,
1400066568,
825465608497696
],
"image": "sg-11134201-7rdvo-lxmga84olk0v39",
"images": [
"sg-11134201-7rdvo-lxmga84olk0v39",
"sg-11134201-7rdvj-lxme9kiy99c659",
"sg-11134201-7rdwk-lxme9kpbyie744",
"sg-11134201-7rdxd-lxme9kzbjwju28",
"sg-11134201-7rdvj-lxme9l9bcbbc43"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1720776305,
"sold": 0,
"historical_sold": 1,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 212300000000,
"price_min": 212300000000,
"price_max": 212300000000,
"price_min_before_discount": 356200000000,
"price_max_before_discount": 356200000000,
"hidden_price_display": null,
"price_before_discount": 356200000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-40%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PACKINGAN",
"options": [
"STANDART",
"EXTRA PACKING"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 790567231995904,
"price": 212300000000,
"strikethrough_price": 356200000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-40%",
"model_id": 207647516374,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 356200000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "C3 STORE",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 29555169881,
"shopid": 1165828640,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdvo-lxmga84olk0v39\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005499,1059156,822059908662278,837860934119952,1000031,2018619,1400066568,825465608497696],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5009,\"model_id\":207647516374,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7rdvo-lxmga84olk0v39\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005499,1059156,822059908662278,837860934119952,1000031,2018619,1400066568,825465608497696],\"matched_keywords\":[\"ac window\"],\"merge_rank\":5009,\"model_id\":207647516374,\"model_source\":0,\"price_source\":0,\"relevance_level\":2,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29555169881",
"debug_info": null
},
{
"item_basic": {
"itemid": 27624241100,
"shopid": 1309702607,
"name": "LENODI 220v/2000w AC Portable AC mini portabel pemanas Dan Pendingin Fungsi Ganda Multifungsi Dipasang Di Dinding Kamar Tidur",
"label_ids": [
1718087960,
1428713,
844931064601283,
1718093079,
1015914,
700190087,
1400285055,
2018619,
2023641,
298893311,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
700830032,
298463379,
298933384,
844931086908638,
1718088045,
298468389
],
"image": "id-11134207-7rbkb-m734qap4wuctf3",
"images": [
"id-11134207-7rbkb-m734qap4wuctf3",
"id-11134207-7rbk3-m65a69zsciy0c8",
"id-11134207-7rbke-m65a69zs43jc96",
"id-11134207-7rbke-m65a69zsfc2wa3",
"id-11134207-7rbkc-m65a69zs5i3saf",
"id-11134207-7rbk7-m65a69zs9pt465",
"id-11134207-7rbkd-m65a69zs8b8odf",
"id-11134207-7rbk0-m65a69zs6wo857"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1737538459,
"sold": 109,
"historical_sold": 639,
"liked": false,
"liked_count": 3192,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 232,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 37900000000,
"price_min": 37900000000,
"price_max": 37900000000,
"price_min_before_discount": 85800000000,
"price_max_before_discount": 85800000000,
"hidden_price_display": null,
"price_before_discount": 85800000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-56%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
"thumb_url": "id-11110105-6kmj0-m5bacn2x25t4b3_cover",
"duration": 13,
"version": 2,
"vid": "id-11110105-6kmj0-m5bacn2x25t4b3",
"formats": [
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16006711750511752.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16006711750511752.mp4",
"width": 540,
"height": 540
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
"width": 720,
"height": 720
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16003251750511752.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16003251750511752.mp4",
"width": 720,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "warna",
"options": [
"Putih",
"Pola"
],
"images": [
"id-11134207-7rash-m5babz9jy7s8fa",
"id-11134207-7rasd-m5babz9jzmcofd"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 3.8060344827586206,
"rating_count": [
232,
38,
12,
30,
29,
123
],
"rcount_with_context": 69,
"rcount_with_image": 39
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228232549122050,
"price": 37521000000,
"strikethrough_price": 85800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1282410030055424,
"discount_text": "-56%",
"model_id": 215742854802,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1282410030055424,
"voucher_code": "LENO51107",
"voucher_discount": 379000000,
"time_info": {
"start_time": 1762334400,
"end_time": 1770448500,
"valid_duration": null
},
"groups": [],
"min_spend": 5900000000
},
"recommended_platform_voucher_info": null,
"original_price": 85800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 639,
"rounded_local_monthly_sold_count": 109,
"local_monthly_sold_count_text": "109",
"rounded_display_sold_count": 639,
"display_sold_count_text": "639"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Lenodiย Officialย Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 27624241100,
"shopid": 1309702607,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m734qap4wuctf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1718093079,1015914,700190087,1400285055,2018619,2023641,298893311,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298463379,298933384,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":217,\"model_id\":215742854802,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m734qap4wuctf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1718093079,1015914,700190087,1400285055,2018619,2023641,298893311,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298463379,298933384,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":217,\"model_id\":215742854802,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27624241100",
"debug_info": null
},
{
"item_basic": {
"itemid": 27377884722,
"shopid": 1309702607,
"name": "LENODI Hot 220V Refrigeration Mobile Small AC Mini Mahasiswa Asrama Tempat Tidur Net Net Net Terpadu Pendingin Udara Air Terpadu",
"label_ids": [
1718087960,
1428713,
844931064601283,
844931086908638,
1718093079,
2018619,
2023641,
1015914,
700190087,
1400285055,
700830032,
298463379,
298933384,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
1718088045,
298468389
],
"image": "id-11134207-7ra0p-mbnmvz4fe76mab",
"images": [
"id-11134207-7ra0p-mbnmvz4fe76mab",
"id-11134207-7rbkb-m6s465x35w8cf0",
"id-11134207-7rbk4-m6s465x31oj029",
"id-11134207-7rbk2-m6s465x3333g08",
"id-11134207-7rbk1-m6s465x34hnwba",
"id-11134207-7rbk9-m6s465x37ass24",
"id-11134207-7rbk1-m6s465x3a3xo8a",
"id-11134207-7rbke-m6s465x38pd8ea"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1740737258,
"sold": 11,
"historical_sold": 64,
"liked": false,
"liked_count": 482,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 34,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 189900000000,
"price_min": 189900000000,
"price_max": 189900000000,
"price_min_before_discount": 419800000000,
"price_max_before_discount": 419800000000,
"hidden_price_display": null,
"price_before_discount": 419800000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-55%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmiu-m6s47gxw5n9l70.16000031740735771.mp4",
"thumb_url": "id-11110105-6kmiu-m6s47gxw5n9l70_cover",
"duration": 48,
"version": 2,
"vid": "id-11110105-6kmiu-m6s47gxw5n9l70",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmiu-m6s47gxw5n9l70.default.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiu-m6s47gxw5n9l70.default.mp4",
"width": 480,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiu-m6s47gxw5n9l70.default.mp4",
"width": 480,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "AC NET MOSQUIT",
"options": [
"5100BTU",
"5300BTU",
"5500BTU"
],
"images": [
"id-11134207-7rbk2-marw432aefqc23",
"id-11134207-7rbk5-marw432afuasb7",
"id-11134207-8224r-mi5doabf42dd49"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.764705882352941,
"rating_count": [
34,
1,
0,
1,
2,
30
],
"rcount_with_context": 17,
"rcount_with_image": 7
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 712811303469056,
"price": 188001000000,
"strikethrough_price": 419800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1282410030055424,
"discount_text": "-55%",
"model_id": 188259870332,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1282410030055424,
"voucher_code": "LENO51107",
"voucher_discount": 1899000000,
"time_info": {
"start_time": 1762334400,
"end_time": 1770448500,
"valid_duration": null
},
"groups": [],
"min_spend": 5900000000
},
"recommended_platform_voucher_info": null,
"original_price": 419800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 64,
"rounded_local_monthly_sold_count": 11,
"local_monthly_sold_count_text": "11",
"rounded_display_sold_count": 64,
"display_sold_count_text": "64"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Lenodiย Officialย Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 27377884722,
"shopid": 1309702607,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mbnmvz4fe76mab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,2018619,2023641,1015914,700190087,1400285055,700830032,298463379,298933384,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":142,\"model_id\":188259870332,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mbnmvz4fe76mab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,2018619,2023641,1015914,700190087,1400285055,700830032,298463379,298933384,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":142,\"model_id\":188259870332,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27377884722",
"debug_info": null
},
{
"item_basic": {
"itemid": 42923379256,
"shopid": 261960113,
"name": "Midea Air Cooler Pendingin Ruangan Low watt 4.8 Liter AC100-18B/AC100-25B",
"label_ids": [
1002164,
1143625,
1011692,
1668726,
1400095067,
2018618,
2153644,
1400285005,
844931064601283,
1718093079,
1400285055,
1015914,
700190087,
298463379,
2213652,
1059152,
1049122,
822059908662278,
825465608499232,
825465608497696,
298468389,
1718088045
],
"image": "id-11134207-81zto-mfmn0sjbjxn010",
"images": [
"id-11134207-81zto-mfmn0sjbjxn010",
"id-11134207-8224q-mia0zrbywhs47a",
"id-11134207-81ztk-mfmttjvl4ydp9d",
"id-11134207-81ztn-mfmn0siyslxka0",
"id-11134207-82251-mi475ld3frib8b",
"id-11134207-82251-mi475ld3h62r6c",
"id-11134207-81zti-mfmwqsdrpwjye4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1760018318,
"sold": 251,
"historical_sold": 556,
"liked": false,
"liked_count": 1027,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 232,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 62600000000,
"price_min": 62600000000,
"price_max": 62600000000,
"price_min_before_discount": 99900000000,
"price_max_before_discount": 99900000000,
"hidden_price_display": null,
"price_before_discount": 99900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-37%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PILIHAN",
"options": [
"AC100-18B (4.8L)",
"AC100-25B (5L)"
],
"images": [
"id-11134207-8224p-mie1fp1p1uyw68",
"id-11134207-82250-mie1fp1p39jcf5"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.896551724137931,
"rating_count": [
232,
2,
1,
1,
11,
217
],
"rcount_with_context": 43,
"rcount_with_image": 43
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-81zto-mfmn0sjbjxn010",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228252073603073,
"price": 62600000000,
"strikethrough_price": 99900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-37%",
"model_id": 445283268274,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 99900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 556,
"rounded_local_monthly_sold_count": 251,
"local_monthly_sold_count_text": "251",
"rounded_display_sold_count": 556,
"display_sold_count_text": "556"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Midea Official Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 42923379256,
"shopid": 261960113,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-mfmn0sjbjxn010\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,1143625,1011692,1668726,1400095067,2018618,2153644,1400285005,844931064601283,1718093079,1400285055,1015914,700190087,298463379,2213652,1059152,1049122,822059908662278,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":107,\"model_id\":445283268274,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zto-mfmn0sjbjxn010\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,1143625,1011692,1668726,1400095067,2018618,2153644,1400285005,844931064601283,1718093079,1400285055,1015914,700190087,298463379,2213652,1059152,1049122,822059908662278,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":107,\"model_id\":445283268274,\"model_source\":0,\"price_source\":0,\"references\":{\"boost_weight\":\"scenario_target:\\\"search\\\" pid_weight:10 match_weight:1 loss_weight:1 extra_info:\\\"CYtXACDMyQTAEdYNS6fI9gPAGaHRmZmrbKI/IYrOyRyi2azA\\\"\",\"item_cate\":\"0\",\"item_group_id\":\"3771307419895180\",\"rule_id\":\"31257010\",\"target\":\"1\"},\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42923379256",
"debug_info": null
},
{
"item_basic": {
"itemid": 18263117946,
"shopid": 626138145,
"name": "AC Second Berkualitas 1/2 Sampai 1Pk Inventer Pemasangan Bergaransi",
"label_ids": [
844931064601283,
822059908662278,
1400285055,
1213641,
1015914,
700190087,
825465608492064,
825465608493600,
825465608494624,
825465608499232,
1718093079,
1000031,
1049136,
1049112,
2018619,
825465608497696,
2108629,
298463379,
844931086908638,
2048660,
2048661,
700765096,
298933384,
1718088044,
298458398,
298468389,
1718088045,
298468390,
1718093084,
298458396
],
"image": "id-11134207-7r98t-lob10jplnb7515",
"images": [
"id-11134207-7r98t-lob10jplnb7515",
"id-11134207-7r98y-lob10jklum8308",
"id-11134207-7r98y-lob10jplnbii8a",
"id-11134207-7r98x-lob10jplnaxwda",
"id-11134207-7r98r-lob10jklum8843",
"id-11134207-7r990-lob10jklw0sofe",
"id-11134207-7r98t-lob10jpvmwjz94",
"id-11134207-7r98y-lob10jqzla0s93",
"id-11134207-7r98o-lob10jklw0sj55"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1668718832,
"sold": 11,
"historical_sold": 264,
"liked": false,
"liked_count": 969,
"view_count": null,
"catid": 100010,
"brand": "Daikin",
"cmt_count": 124,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 120000000000,
"price_min": 120000000000,
"price_max": 120000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ke1b-lrbne4f4qva1c9.16000081707050336.mp4",
"thumb_url": "id-11110107-7r98o-lrbne9sixmlf90",
"duration": 29,
"version": 2,
"vid": "id-11110107-6ke1b-lrbne4f4qva1c9",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke1b-lrbne4f4qva1c9.default.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1b-lrbne4f4qva1c9.default.mp4",
"width": 356,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1b-lrbne4f4qva1c9.default.mp4",
"width": 356,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"AC R22 1/2-3/4PK",
"AC R22 1PK",
"AC R32/410 1/2-3/4PK",
"AC R32/410 1PK",
"AC Inventer 1/2-1PK"
],
"images": [
"id-11134207-7r992-lob10jklxfcze0",
"id-11134207-7r98w-lob10jklxfd448",
"id-11134207-7r98y-lob10jklytxf2f",
"id-11134207-7r98q-lob10jklytxk36",
"id-11134207-7r98r-lob10jkm08hvd3"
],
"properties": [],
"type": 0
},
{
"name": "Ukuran",
"options": [
"Unit Saja",
"Pasang Terima Dingin"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.1461538461538465,
"rating_count": [
130,
20,
4,
6,
7,
93
],
"rcount_with_context": 65,
"rcount_with_image": 50
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Depok",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 120000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 167953025373,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 120000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 264,
"rounded_local_monthly_sold_count": 11,
"local_monthly_sold_count_text": "11",
"rounded_display_sold_count": 264,
"display_sold_count_text": "264"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "arushbawahterate",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
88,
91,
4
]
},
"itemid": 18263117946,
"shopid": 626138145,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-lob10jplnb7515\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,822059908662278,1400285055,1213641,1015914,700190087,825465608492064,825465608493600,825465608494624,825465608499232,1718093079,1000031,1049136,1049112,2018619,825465608497696,2108629,298463379,844931086908638,2048660,2048661,700765096,298933384,1718088044,298458398,298468389,1718088045,298468390,1718093084,298458396],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":319,\"model_id\":167953025373,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98t-lob10jplnb7515\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,822059908662278,1400285055,1213641,1015914,700190087,825465608492064,825465608493600,825465608494624,825465608499232,1718093079,1000031,1049136,1049112,2018619,825465608497696,2108629,298463379,844931086908638,2048660,2048661,700765096,298933384,1718088044,298458398,298468389,1718088045,298468390,1718093084,298458396],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":319,\"model_id\":167953025373,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_18263117946",
"debug_info": null
},
{
"item_basic": {
"itemid": 27935137061,
"shopid": 322837843,
"name": "REIWA AC Box Pembungan Udara Panas Sok 8 inch",
"label_ids": [
2018619,
1428713,
1718087960,
844931064601283,
298463379,
1718093079,
700005490,
700005495,
822059908662278,
1400285055,
1718093065,
825465608494624,
825465608499232,
844931086908638,
825465608497696,
298933384,
2108629,
700830032,
1015914,
700190087,
2048660,
2048661,
700765096,
2023641,
1718088045,
298468389
],
"image": "id-11134207-7rbk3-ma8q5zzzpipe94",
"images": [
"id-11134207-7rbk3-ma8q5zzzpipe94",
"id-11134207-7rbk5-ma8q5zzzo44y88",
"id-11134207-7rbka-ma8q5zzzqx9u3b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1745745502,
"sold": 6,
"historical_sold": 22,
"liked": false,
"liked_count": 80,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 10,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 43000000000,
"price_min": 43000000000,
"price_max": 43000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmio-ma8sfvc2bsyc5b.16000081748282788.mp4",
"thumb_url": "id-11110105-6kmio-ma8sfvc2bsyc5b_cover",
"duration": 10,
"version": 2,
"vid": "id-11110105-6kmio-ma8sfvc2bsyc5b",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmio-ma8sfvc2bsyc5b.16000081748282788.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmio-ma8sfvc2bsyc5b.16000081748282788.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmio-ma8sfvc2bsyc5b.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
10,
0,
0,
0,
0,
10
],
"rcount_with_context": 4,
"rcount_with_image": 4
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 43000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 258312684012,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 43000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 22,
"rounded_local_monthly_sold_count": 6,
"local_monthly_sold_count_text": "6",
"rounded_display_sold_count": 22,
"display_sold_count_text": "22"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "KING.FLEX",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
1000,
1000,
1000,
4
]
},
"itemid": 27935137061,
"shopid": 322837843,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-ma8q5zzzpipe94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1718093079,700005490,700005495,822059908662278,1400285055,1718093065,825465608494624,825465608499232,844931086908638,825465608497696,298933384,2108629,700830032,1015914,700190087,2048660,2048661,700765096,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"air conditioner\",\"ac window\"],\"merge_rank\":276,\"model_id\":258312684012,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-ma8q5zzzpipe94\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1718093079,700005490,700005495,822059908662278,1400285055,1718093065,825465608494624,825465608499232,844931086908638,825465608497696,298933384,2108629,700830032,1015914,700190087,2048660,2048661,700765096,2023641,1718088045,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"reiwa\",\"air conditioner\",\"ac window\"],\"merge_rank\":276,\"model_id\":258312684012,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27935137061",
"debug_info": null
},
{
"item_basic": {
"itemid": 28217958387,
"shopid": 1258280821,
"name": "AC Mini Pendingin Ruangan Portable Air Cooler | AC Mini Penyejuk Ruangan Hemat Daya",
"label_ids": [
844931064601283,
1718093079,
1015914,
700190087,
1000031,
1400285055,
298463379,
1400066568,
844931086908638,
2018619,
2023641,
298893311,
1428713,
1718087960,
700830032,
298933384,
1059152,
1059154,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
837860934119952,
700810080,
298468389,
1718088045
],
"image": "id-11134207-7rase-m3ft8080xljs5c",
"images": [
"id-11134207-7rase-m3ft8080xljs5c",
"id-11134207-7rash-m3ft8080z048aa",
"id-11134207-7rasi-m2qgvnrcqnk3d3",
"id-11134207-7rasj-m3ft8080nrko4c",
"id-11134207-7rasl-m2qgvnrcs24j5d",
"id-11134207-7rase-m2qgvnqt2pqp47",
"id-11134207-7rasf-m2qgvnqsyi1d3c",
"id-11134207-7ras8-m2qgvnqszwlt9e",
"id-11134207-7rasd-m2qgvnqsx3gx46"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1731927394,
"sold": 25,
"historical_sold": 797,
"liked": false,
"liked_count": 281,
"view_count": null,
"catid": 100010,
"brand": "Arctic Air",
"cmt_count": 394,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 7730000000,
"price_min": 7730000000,
"price_max": 7730000000,
"price_min_before_discount": 8305000000,
"price_max_before_discount": 8305000000,
"hidden_price_display": null,
"price_before_discount": 8305000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-7%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke19-m2qlray9fpxb9d.16000041731927244.mp4",
"thumb_url": "id-11110105-7rasa-m2qlrcoowpfvba",
"duration": 15,
"version": 2,
"vid": "id-11110105-6ke19-m2qlray9fpxb9d",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke19-m2qlray9fpxb9d.default.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m2qlray9fpxb9d.default.mp4",
"width": 600,
"height": 400
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke19-m2qlray9fpxb9d.default.mp4",
"width": 600,
"height": 400
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.659898477157361,
"rating_count": [
394,
5,
4,
18,
66,
301
],
"rcount_with_context": 91,
"rcount_with_image": 57
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-7rase-m3ft8080xljs5c",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 807937942028288,
"price": 7730000000,
"strikethrough_price": 8305000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-7%",
"model_id": 139143137278,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 8305000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 797,
"rounded_local_monthly_sold_count": 25,
"local_monthly_sold_count_text": "25",
"rounded_display_sold_count": 797,
"display_sold_count_text": "797"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Toko Kaixi ID",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91,
1000,
1000,
4
]
},
"itemid": 28217958387,
"shopid": 1258280821,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m3ft8080xljs5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1000031,1400285055,298463379,1400066568,844931086908638,2018619,2023641,298893311,1428713,1718087960,700830032,298933384,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,837860934119952,700810080,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":311,\"model_id\":139143137278,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rase-m3ft8080xljs5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1000031,1400285055,298463379,1400066568,844931086908638,2018619,2023641,298893311,1428713,1718087960,700830032,298933384,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,837860934119952,700810080,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":311,\"model_id\":139143137278,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28217958387",
"debug_info": null
},
{
"item_basic": {
"itemid": 26321924201,
"shopid": 1431166858,
"name": "Garansi 30 tahun Air Cooler 6L - Free Two Ice Pack Ac Portable 1/2 Pk Low Watt",
"label_ids": [
844931064601283,
1718093079,
1015914,
700190087,
1400285055,
2018619,
298463379,
844931086908638,
822059908662278,
825465608499232,
825465608497696,
2023641,
700830032,
700005490,
1049120,
834230400556567,
2068629,
298938357,
700810080,
1718088045,
2098629,
298938368,
2098628,
298468389
],
"image": "id-11134207-8224z-mifiiimsdl35c4",
"images": [
"id-11134207-8224z-mifiiimsdl35c4",
"id-11134207-7rbk9-m8399vvq6h3ld4",
"id-11134207-7rbk5-m65amu0o7sba88",
"id-11134207-7rbk8-m65amu0o6dqu48",
"id-11134207-7rbke-m65amu0o3klydb",
"id-11134207-7rbk1-m65amu0o261i01",
"id-11134207-7rbk4-m65amu0nzcwm93",
"id-11134207-7rbk9-m65amu0o0rh234",
"id-11134207-7rbk2-m65amu0o96vq2e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1735293443,
"sold": 134,
"historical_sold": 5000,
"liked": false,
"liked_count": 7653,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 2308,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 29800000000,
"price_min": 29800000000,
"price_max": 29800000000,
"price_min_before_discount": 70000000000,
"price_max_before_discount": 70000000000,
"hidden_price_display": null,
"price_before_discount": 70000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-57%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16000081741311864.mp4",
"thumb_url": "id-11110105-6kmj1-m71mt847pp4scf_cover",
"duration": 15,
"version": 2,
"vid": "id-11110105-6kmj1-m71mt847pp4scf",
"formats": [
{
"format": 1600408,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004081743786240.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004081743786240.mp4",
"width": 360,
"height": 640
},
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006711743599808.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006711743599808.mp4",
"width": 540,
"height": 960
},
{
"format": 1600673,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006731744175841.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006731744175841.mp4",
"width": 540,
"height": 960
},
{
"format": 1600409,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004091743786240.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004091743786240.mp4",
"width": 540,
"height": 960
},
{
"format": 1600659,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006591743786240.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16006591743786240.mp4",
"width": 540,
"height": 960
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16000081741311864.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16000081741311864.mp4",
"width": 720,
"height": 1280
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16003251743599808.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16003251743599808.mp4",
"width": 720,
"height": 1280
},
{
"format": 1600410,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004101743786240.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004101743786240.mp4",
"width": 720,
"height": 1280
},
{
"format": 1600411,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004111743786240.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16004111743786240.mp4",
"width": 720,
"height": 1280
},
{
"format": 1600558,
"defn": "V1080P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16005581743599808.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16005581743599808.mp4",
"width": 1080,
"height": 1920
},
{
"format": 1600568,
"defn": "V1080P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16005681743786240.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.16005681743786240.mp4",
"width": 1080,
"height": 1920
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj1-m71mt847pp4scf.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Color",
"options": [
"Putih-6L",
"Putih-6L.",
"6L-Energy Saving New",
"12L EnergySaving New",
"6L-Kerusakan kecil",
"6L NoBox MinorDamage",
"@6L - White",
"Kartu garansi",
"@Kartu garansi"
],
"images": [
"id-11134207-7ra0u-mchakq28ierb77",
"id-11134207-8224o-mijytpzletxkb6",
"id-11134207-7ra0t-mbrirc1okre55e",
"id-11134207-7ra0i-mbrirc1ojctp8a",
"id-11134207-8224v-mi0yv85apoub6b",
"id-11134207-7ra0i-mcd65t7ltuuzc3",
"id-11134207-7ra0k-mbrirc1om5yl7b",
"id-11134207-7ra0o-mcacmo2uupmv81",
"id-11134207-7rbk6-m8h066590evy1d"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.113518197573657,
"rating_count": [
2308,
245,
114,
222,
280,
1447
],
"rcount_with_context": 568,
"rcount_with_image": 333
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 350673661329745,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp98RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 798532290789376,
"price": 29502000000,
"strikethrough_price": 70000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1308520729427968,
"discount_text": "-57%",
"model_id": 435269266219,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1308520729427968,
"voucher_code": "G8P29877",
"voucher_discount": 298000000,
"time_info": {
"start_time": 1765447560,
"end_time": 1773486360,
"valid_duration": null
},
"groups": [],
"min_spend": 500000000
},
"recommended_platform_voucher_info": null,
"original_price": 70000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 5000,
"rounded_local_monthly_sold_count": 134,
"local_monthly_sold_count_text": "134",
"rounded_display_sold_count": 5000,
"display_sold_count_text": "5RB+"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp98RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "G.S.D",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91,
1000,
1000,
4
]
},
"itemid": 26321924201,
"shopid": 1431166858,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mifiiimsdl35c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1400285055,2018619,298463379,844931086908638,822059908662278,825465608499232,825465608497696,2023641,700830032,700005490,1049120,834230400556567,2068629,298938357,700810080,1718088045,2098629,298938368,2098628,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":123,\"model_id\":435269266219,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mifiiimsdl35c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1015914,700190087,1400285055,2018619,298463379,844931086908638,822059908662278,825465608499232,825465608497696,2023641,700830032,700005490,1049120,834230400556567,2068629,298938357,700810080,1718088045,2098629,298938368,2098628,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":123,\"model_id\":435269266219,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26321924201",
"debug_info": null
},
{
"item_basic": {
"itemid": 4840855263,
"shopid": 269901759,
"name": "AC Portable Air Cooler AC Mini Super Dingin Hemat Listrik Ramah Lingkungan Cooler",
"label_ids": [
22,
1015914,
700190087,
844931064601283,
844931086908638,
825249635454464,
1400285055,
1213641,
700590005,
1818593,
298458395,
1718087960,
1428713,
1718093079,
1000031,
1918643,
2018619,
2108629,
298463379,
1059152,
1059154,
822059908662278,
840990690654214,
840955085144628,
825465608492064,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
700830032,
298933384,
1718088044,
1718093084,
298458398,
298468390,
1718088045,
298458396,
298468389
],
"image": "2aa739a52888bbe06516a8daa746957e",
"images": [
"2aa739a52888bbe06516a8daa746957e",
"ad5ee81df06dd80125b131c1e1d0892c",
"bd8ddaba16823459ae40130cd9fc9b55",
"907625440b3db9b3217e86f05c3d0e25",
"16d9dce36c328ae96924c07203902bcd",
"0c38020cc52a40eadf36b4278b45ebe5",
"9e1a50169676af49ebf083e0be702c2d",
"4b00c4577186309dd9d522469f54e87c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1593875186,
"sold": 19,
"historical_sold": 2000,
"liked": false,
"liked_count": 5075,
"view_count": null,
"catid": 100010,
"brand": "Tidak Ada Merek",
"cmt_count": 1233,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 15000000000,
"price_min": 15000000000,
"price_max": 15000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "1a6c7c20b69f2644e73fe97c9d41be1c",
"thumb_url": "2a5e4ec7529410cd85d80a6ab5663457",
"duration": 45,
"version": 2,
"vid": "id-11110105-6ke14-lkoxlr8pa5g532",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke14-lkoxlr8pa5g532.default.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lkoxlr8pa5g532.default.mp4",
"width": 960,
"height": 540
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke14-lkoxlr8pa5g532.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.325525040387722,
"rating_count": [
1239,
69,
44,
114,
202,
810
],
"rcount_with_context": 377,
"rcount_with_image": 230
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 15000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 60188432656,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 15000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2000,
"rounded_local_monthly_sold_count": 19,
"local_monthly_sold_count_text": "19",
"rounded_display_sold_count": 2000,
"display_sold_count_text": "2RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Pennyroyal.id",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
97,
91,
4
]
},
"itemid": 4840855263,
"shopid": 269901759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"2aa739a52888bbe06516a8daa746957e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[22,1015914,700190087,844931064601283,844931086908638,825249635454464,1400285055,1213641,700590005,1818593,298458395,1718087960,1428713,1718093079,1000031,1918643,2018619,2108629,298463379,1059152,1059154,822059908662278,840990690654214,840955085144628,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,700830032,298933384,1718088044,1718093084,298458398,298468390,1718088045,298458396,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":315,\"model_id\":60188432656,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"2aa739a52888bbe06516a8daa746957e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[22,1015914,700190087,844931064601283,844931086908638,825249635454464,1400285055,1213641,700590005,1818593,298458395,1718087960,1428713,1718093079,1000031,1918643,2018619,2108629,298463379,1059152,1059154,822059908662278,840990690654214,840955085144628,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,700830032,298933384,1718088044,1718093084,298458398,298468390,1718088045,298458396,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":315,\"model_id\":60188432656,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,97,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_4840855263",
"debug_info": null
},
{
"item_basic": {
"itemid": 18250507619,
"shopid": 8459024,
"name": "Goto Madelin Air Cooler AC Mini Kipas Pendingin Ruangan Portable",
"label_ids": [
27,
37,
47,
48,
58,
1000072,
1000109,
1000230,
1000381,
1000501,
1000509,
1000544,
1000549,
1000653,
1000838,
1000841,
1000579,
1002164,
1011705,
1011692,
700066085,
700085047,
1400095067,
700195012,
700195013,
700185029,
700195014,
700195015,
700195016,
700185027,
700185028,
1143625,
1400285005,
1015914,
700190006,
700185018,
700190087,
1378583,
844931064601283,
1400285055,
1213641,
997776091,
700440004,
700440005,
844931086908638,
1000031,
298458395,
1718093079,
1718087960,
1428713,
1918643,
1012763,
298813370,
1993609,
1988623,
1718162994,
2018618,
1993653,
700700063,
298893311,
700005495,
700005490,
822059908662278,
825465608499232,
825465608497696,
825465608493600,
298933384,
700830032,
2048660,
2048661,
700765096,
1400095022,
298463379,
2213652,
1718088044,
298468390,
1718088045,
298458396,
298458398,
1718093084,
298468389
],
"image": "sg-11134201-82269-mhsv8zoql8g8ad",
"images": [
"sg-11134201-82269-mhsv8zoql8g8ad",
"sg-11134201-7rd6f-m7w1jv42lrk0fe",
"sg-11134201-7rd6j-m7w1jvagcgty04",
"sg-11134201-7rd6y-m7w1jvgu34pdf1",
"sg-11134201-7rd71-m7w1jvnhw6ye91",
"sg-11134201-7rd70-m7w1jvu5jlwn8f",
"sg-11134201-7rd4q-m7w1jw1nbg00d9",
"sg-11134201-7rfg0-m9y3caayszaa8f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1664415529,
"sold": 1000,
"historical_sold": 50000,
"liked": false,
"liked_count": 43086,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 24114,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 9990000000,
"price_min": 9990000000,
"price_max": 9990000000,
"price_min_before_discount": 26630000000,
"price_max_before_discount": 26630000000,
"hidden_price_display": null,
"price_before_discount": 26630000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-62%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "d4dbe1db96323b2e0c63e6bf8d62508e",
"thumb_url": "456a801b79845b71b934eec9b11b402a",
"duration": 28,
"version": 2,
"vid": "sg_6b35926c-ac77-469e-81b8-989da3238219_000240",
"formats": [
{
"format": 1600240,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16002401712700093.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16002401712700093.mp4",
"width": 360,
"height": 360
},
{
"format": 1600408,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004081712700015.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004081712700015.mp4",
"width": 360,
"height": 360
},
{
"format": 1600659,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16006591723925255.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16006591723925255.mp4",
"width": 540,
"height": 540
},
{
"format": 1600241,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16002411712700110.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16002411712700110.mp4",
"width": 540,
"height": 540
},
{
"format": 1600409,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004091712700032.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004091712700032.mp4",
"width": 540,
"height": 540
},
{
"format": 1600410,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004101712700032.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004101712700032.mp4",
"width": 720,
"height": 720
},
{
"format": 1600411,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004111712700032.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16004111712700032.mp4",
"width": 720,
"height": 720
},
{
"format": 1600568,
"defn": "V1080P",
"profile": "MP4",
"path": "api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16005681712700032.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.16005681712700032.mp4",
"width": 1080,
"height": 1080
}
],
"default_format": {
"format": 600001,
"defn": "ORI",
"profile": "MP4",
"path": "",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/ori/sg_6b35926c-ac77-469e-81b8-989da3238219_000240.ori.mp4",
"width": 1080,
"height": 1080
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "WARNA",
"options": [
"WHITE",
"REJECT LAYAK"
],
"images": [
"sg-11134201-7rd5d-m7w1jwvm0u5lb8",
"sg-11134201-7rd6d-m7w1jx1ptanq3d"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.582618989305249,
"rating_count": [
24498,
674,
433,
1335,
3560,
18496
],
"rcount_with_context": 5863,
"rcount_with_image": 4088
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "sg-11134201-82269-mhsv8zoql8g8ad",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 817348735451136,
"price": 9490000000,
"strikethrough_price": 26630000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1328701095165960,
"discount_text": "-62%",
"model_id": 59099320419,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1328701095165960,
"voucher_code": "GOTOHQF5K",
"voucher_discount": 500000000,
"time_info": {
"start_time": 1767853800,
"end_time": 1768928340,
"valid_duration": null
},
"groups": [],
"min_spend": 5000000000
},
"recommended_platform_voucher_info": null,
"original_price": 26630000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 50000,
"rounded_local_monthly_sold_count": 1000,
"local_monthly_sold_count_text": "1RB+",
"rounded_display_sold_count": 50000,
"display_sold_count_text": "10RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Goto Living",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
91,
4
]
},
"itemid": 18250507619,
"shopid": 8459024,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82269-mhsv8zoql8g8ad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,37,47,48,58,1000072,1000109,1000230,1000381,1000501,1000509,1000544,1000549,1000653,1000838,1000841,1000579,1002164,1011705,1011692,700066085,700085047,1400095067,700195012,700195013,700185029,700195014,700195015,700195016,700185027,700185028,1143625,1400285005,1015914,700190006,700185018,700190087,1378583,844931064601283,1400285055,1213641,997776091,700440004,700440005,844931086908638,1000031,298458395,1718093079,1718087960,1428713,1918643,1012763,298813370,1993609,1988623,1718162994,2018618,1993653,700700063,298893311,700005495,700005490,822059908662278,825465608499232,825465608497696,825465608493600,298933384,700830032,2048660,2048661,700765096,1400095022,298463379,2213652,1718088044,298468390,1718088045,298458396,298458398,1718093084,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":91,\"model_id\":59099320419,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82269-mhsv8zoql8g8ad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,37,47,48,58,1000072,1000109,1000230,1000381,1000501,1000509,1000544,1000549,1000653,1000838,1000841,1000579,1002164,1011705,1011692,700066085,700085047,1400095067,700195012,700195013,700185029,700195014,700195015,700195016,700185027,700185028,1143625,1400285005,1015914,700190006,700185018,700190087,1378583,844931064601283,1400285055,1213641,997776091,700440004,700440005,844931086908638,1000031,298458395,1718093079,1718087960,1428713,1918643,1012763,298813370,1993609,1988623,1718162994,2018618,1993653,700700063,298893311,700005495,700005490,822059908662278,825465608499232,825465608497696,825465608493600,298933384,700830032,2048660,2048661,700765096,1400095022,298463379,2213652,1718088044,298468390,1718088045,298458396,298458398,1718093084,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":91,\"model_id\":59099320419,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_18250507619",
"debug_info": null
},
{
"item_basic": {
"itemid": 27929996385,
"shopid": 1202842051,
"name": "[Ready]AC Portable AC mini portabel pemanasyang dipasang di dinding di kamar tidur AC 12 PK REIWA 1PK HEMAT TANPA PIPA PAKAI FREON R32 AC WINDOW REIWA 12-1PK",
"label_ids": [
2023641,
2018619,
1428713,
1718087960,
844931064601283,
844931086908638,
1718093079,
1400285055,
1015914,
700190087,
1049120,
700005490,
822059908662278,
825465608499232,
825465608497696,
298893311,
700830032,
298933384,
2068629,
298938357,
298463379,
298468389,
2098629,
1718088045,
298938368,
2098628
],
"image": "id-11134207-7rbk0-m7j28cl31ame87",
"images": [
"id-11134207-7rbk0-m7j28cl31ame87",
"id-11134207-7rbk4-m7hdyjbkasrk62",
"id-11134207-7rbk9-m7hdyjbkc7c03d",
"id-11134207-7rbk6-m7hdyjbkdlwg5c",
"id-11134207-7rbk4-m7hdyjbkf0gw9d",
"id-11134207-7rbk5-m7hdyjbkgf1c5f",
"id-11134207-7rbk0-m7hdyjbkhtls72",
"id-11134207-7rbka-m7hdyjbkj86810",
"id-11134207-7rbkc-m7hdyjbkkmqof6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1742276229,
"sold": 0,
"historical_sold": 16,
"liked": false,
"liked_count": 631,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 12,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 30200000000,
"price_min": 30200000000,
"price_max": 30200000000,
"price_min_before_discount": 151600000000,
"price_max_before_discount": 151600000000,
"hidden_price_display": null,
"price_before_discount": 151600000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-80%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmiz-m7hk831s0uro30.16000101742276059.mp4",
"thumb_url": "id-11110105-6kmiz-m7hk831s0uro30_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6kmiz-m7hk831s0uro30",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmiz-m7hk831s0uro30.default.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiz-m7hk831s0uro30.default.mp4",
"width": 540,
"height": 676
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiz-m7hk831s0uro30.default.mp4",
"width": 540,
"height": 676
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "JENIS",
"options": [
"Air Conditioner",
"hitam",
"mini Oranye"
],
"images": [
"id-11134207-7rbkd-m7hdyjbknfvk1c",
"id-11134207-7rbkc-m7hkanjcofe46d",
"id-11134207-7rbk5-ma98s7s1e26d0f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.666666666666667,
"rating_count": [
12,
1,
0,
0,
0,
11
],
"rcount_with_context": 7,
"rcount_with_image": 7
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 355408548217271,
"bundle_deal_label": "Pilih 3, diskon 1%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp100RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 814390400581632,
"price": 30200000000,
"strikethrough_price": 151600000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-80%",
"model_id": 290185951657,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 151600000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 16,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 16,
"display_sold_count_text": "16"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp100RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Variety Electronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000,
0,
1000,
88
]
},
"itemid": 27929996385,
"shopid": 1202842051,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m7j28cl31ame87\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,1718093079,1400285055,1015914,700190087,1049120,700005490,822059908662278,825465608499232,825465608497696,298893311,700830032,298933384,2068629,298938357,298463379,298468389,2098629,1718088045,298938368,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":467,\"model_id\":290185951657,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk0-m7j28cl31ame87\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2018619,1428713,1718087960,844931064601283,844931086908638,1718093079,1400285055,1015914,700190087,1049120,700005490,822059908662278,825465608499232,825465608497696,298893311,700830032,298933384,2068629,298938357,298463379,298468389,2098629,1718088045,298938368,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":467,\"model_id\":290185951657,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,0,1000,88],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27929996385",
"debug_info": null
},
{
"item_basic": {
"itemid": 43104379201,
"shopid": 1027709925,
"name": "Epic Finds AC Portable Mini Kecil, Pendingin All-in-One untuk Outdoor, Parkir, dan Tenda, Tanpa Pemasangan, AC Mobile Pintar",
"label_ids": [
2018619,
1428713,
1718087960,
844931086908638,
844931064601283,
1718093079,
1400285055,
1718093065,
1015914,
700190087,
1049120,
700005490,
822059908662278,
825465608499232,
825465608497696,
298933384,
2023641
],
"image": "id-11134207-81ztg-mdvlrhenrshs97",
"images": [
"id-11134207-81ztg-mdvlrhenrshs97",
"id-11134207-7rbk1-maxvejf0jb2x4f",
"id-11134207-7rbk8-maxvejf0jaln08",
"id-11134207-7rbkd-maxvejf0yquj82",
"id-11134207-7rbk0-maxvejf03uu15c",
"id-11134207-7rbke-maxvejf03ucr61",
"id-11134207-7rbkc-maxvejezpta01a",
"id-11134207-7rbk3-maxvejf059iwb0",
"id-11134207-7rbk7-maxvejezoe3v08"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1749803120,
"sold": 1,
"historical_sold": 10,
"liked": false,
"liked_count": 200,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 5,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 199000000000,
"price_min": 199000000000,
"price_max": 199000000000,
"price_min_before_discount": 398000000000,
"price_max_before_discount": 398000000000,
"hidden_price_display": null,
"price_before_discount": 398000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-50%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"puith Garansi 1tahun",
"puith Garansi 2tahun",
"1/2 PK+Rangka Kayu"
],
"images": [
"id-11134207-7rbk8-maxvejf06o3c2e",
"id-11134207-8224t-mj82l9usmz9id6",
"id-11134207-82250-mftayoufiqyz11"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8,
"rating_count": [
5,
0,
0,
0,
1,
4
],
"rcount_with_context": 5,
"rcount_with_image": 5
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 355402873323613,
"bundle_deal_label": "Pilih 3, diskon 1%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 709246212161536,
"price": 199000000000,
"strikethrough_price": 398000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-50%",
"model_id": 266480023809,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 398000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 10,
"display_sold_count_text": "10"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Epic Finds",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000
]
},
"itemid": 43104379201,
"shopid": 1027709925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztg-mdvlrhenrshs97\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931086908638,844931064601283,1718093079,1400285055,1718093065,1015914,700190087,1049120,700005490,822059908662278,825465608499232,825465608497696,298933384,2023641],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":379,\"model_id\":266480023809,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81ztg-mdvlrhenrshs97\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931086908638,844931064601283,1718093079,1400285055,1718093065,1015914,700190087,1049120,700005490,822059908662278,825465608499232,825465608497696,298933384,2023641],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":379,\"model_id\":266480023809,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43104379201",
"debug_info": null
},
{
"item_basic": {
"itemid": 5158315494,
"shopid": 133096368,
"name": "AC Mini Portable Kipas Angin Pendingin Ruangan Artic Air Cooler Fan",
"label_ids": [
1001024,
22,
1011751,
700020158,
1015914,
700190087,
844931064601283,
844931086908638,
1400285055,
1213641,
298458334,
298458395,
1049112,
1049127,
822059908662278,
825465608499232,
825465608497696,
825465608493600,
825465608494624,
1000031,
1718093079,
1428713,
1718087960,
1918643,
2018619,
2023641,
298893311,
2048660,
2048661,
700765096,
700750053,
700830032,
298933384,
700810080,
1718093084,
298458396
],
"image": "id-11134201-23020-nrigbu9umvnv82",
"images": [
"id-11134201-23020-nrigbu9umvnv82",
"id-11134201-23020-jgxg2t9umvnvbd",
"492d8549dd969b2f196034e9bbf5d5a4",
"d6d300c267be9833cdc3cbdf3a89c2fe",
"d900d5a5f5f25757979ef958ec5695be",
"523a825eba39877239df7a72d162ed56",
"1660c57c896a290deae2728701954bec",
"a15ab236ca35078f167e6c72f3f2d4f8",
"ed1bd3a582fa67888f29350c07aa01d1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1603251634,
"sold": 22,
"historical_sold": 985,
"liked": false,
"liked_count": 663,
"view_count": null,
"catid": 100010,
"brand": "Artic",
"cmt_count": 433,
"flag": 196610,
"cb_option": 0,
"item_status": "normal",
"price": 12300000000,
"price_min": 12300000000,
"price_max": 12300000000,
"price_min_before_discount": 12500000000,
"price_max_before_discount": 12500000000,
"hidden_price_display": null,
"price_before_discount": 12500000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-2%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.775,
"rating_count": [
440,
4,
2,
12,
53,
369
],
"rcount_with_context": 75,
"rcount_with_image": 47
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": true,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 719517131522048,
"price": 12300000000,
"strikethrough_price": 12500000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-2%",
"model_id": 22317838426,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 12500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 985,
"rounded_local_monthly_sold_count": 22,
"local_monthly_sold_count_text": "22",
"rounded_display_sold_count": 985,
"display_sold_count_text": "985"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "RUMA Warehouse",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
91
]
},
"itemid": 5158315494,
"shopid": 133096368,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-23020-nrigbu9umvnv82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,22,1011751,700020158,1015914,700190087,844931064601283,844931086908638,1400285055,1213641,298458334,298458395,1049112,1049127,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1000031,1718093079,1428713,1718087960,1918643,2018619,2023641,298893311,2048660,2048661,700765096,700750053,700830032,298933384,700810080,1718093084,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":1214,\"model_id\":22317838426,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-23020-nrigbu9umvnv82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,22,1011751,700020158,1015914,700190087,844931064601283,844931086908638,1400285055,1213641,298458334,298458395,1049112,1049127,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1000031,1718093079,1428713,1718087960,1918643,2018619,2023641,298893311,2048660,2048661,700765096,700750053,700830032,298933384,700810080,1718093084,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":1214,\"model_id\":22317838426,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_5158315494",
"debug_info": null
},
{
"item_basic": {
"itemid": 24326264312,
"shopid": 1202842051,
"name": "โจReady stockโจAC Portable 1/2 pk AC 0,5 pk Pendingin Ruangan Kecepatan Angin Kuat",
"label_ids": [
844931086908638,
1400285055,
1015914,
700190087,
1718087960,
1428713,
1718093079,
1000031,
2018619,
2023641,
298893311,
700830032,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
298933384,
2068629,
298938357,
298463379,
298468389,
298938368,
2098629,
2098628,
1718088045
],
"image": "id-11134207-7r98v-lze9tb1d8sa0f2",
"images": [
"id-11134207-7r98v-lze9tb1d8sa0f2",
"id-11134207-7r98x-luhg4wslmaa211",
"id-11134207-7r98y-luhg4wslupoqee",
"id-11134207-7r992-luhg4wslnoui63",
"id-11134207-7r992-luhg4wslqhze5b",
"id-11134207-7r992-luhg4wslp3eyc0",
"id-11134207-7r98r-luhg4wslrwjud4",
"id-11134207-7r98o-luhg4wsltb4aee",
"id-11134207-7r98t-luhg4wsljh56d8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1713939432,
"sold": 19,
"historical_sold": 143,
"liked": false,
"liked_count": 917,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 61,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 219000000000,
"price_min": 219000000000,
"price_max": 219000000000,
"price_min_before_discount": 499900000000,
"price_max_before_discount": 499900000000,
"hidden_price_display": null,
"price_before_discount": 499900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-56%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1d-luhgaptfmdu2c0.16000081713939331.mp4",
"thumb_url": "id-11110105-7r992-luhgasnjhawv46",
"duration": 45,
"version": 2,
"vid": "id-11110105-6ke1d-luhgaptfmdu2c0",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1d-luhgaptfmdu2c0.default.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1d-luhgaptfmdu2c0.default.mp4",
"width": 960,
"height": 540
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1d-luhgaptfmdu2c0.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "warna",
"options": [
"1/2PK Versi Tombol",
"1PK Layar Sentuh"
],
"images": [
"id-11134207-7r992-luhg4wslw49689",
"id-11134207-7r98x-luhgbnybpgoh63"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.714285714285714,
"rating_count": [
63,
0,
2,
1,
10,
50
],
"rcount_with_context": 22,
"rcount_with_image": 14
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-7r98v-lze9tb1d8sa0f2",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 355408548217271,
"bundle_deal_label": "Pilih 3, diskon 1%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp730RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 814390400581632,
"price": 219000000000,
"strikethrough_price": 499900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-56%",
"model_id": 127903605539,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 499900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 143,
"rounded_local_monthly_sold_count": 19,
"local_monthly_sold_count_text": "19",
"rounded_display_sold_count": 143,
"display_sold_count_text": "143"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp730RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Variety Electronic",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000,
97,
91,
88,
4
]
},
"itemid": 24326264312,
"shopid": 1202842051,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lze9tb1d8sa0f2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1400285055,1015914,700190087,1718087960,1428713,1718093079,1000031,2018619,2023641,298893311,700830032,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298933384,2068629,298938357,298463379,298468389,298938368,2098629,2098628,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":529,\"model_id\":127903605539,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,97,91,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98v-lze9tb1d8sa0f2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1400285055,1015914,700190087,1718087960,1428713,1718093079,1000031,2018619,2023641,298893311,700830032,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298933384,2068629,298938357,298463379,298468389,298938368,2098629,2098628,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":529,\"model_id\":127903605539,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,97,91,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24326264312",
"debug_info": null
},
{
"item_basic": {
"itemid": 25104531928,
"shopid": 460689527,
"name": "AC SECOND/Bekas,Berbagai merk, ukuran,dan BERGARANSI ini",
"label_ids": [
822059908662278,
825465608493600,
825465608494624,
825465608499232,
844931064601283,
1400285055,
1059152,
700005487,
298458395,
1718093079,
1015914,
700190087,
1000031,
1718087960,
1428713,
2018619,
825465608497696,
298463379,
2108629,
700830032,
844931086908638,
1718088045,
298468389
],
"image": "id-11134207-7r98p-lpl48gum2r4u1c",
"images": [
"id-11134207-7r98p-lpl48gum2r4u1c",
"id-11134207-7r98x-lpl48gxxxvnv3e",
"id-11134207-7r98y-lpl48gwjzwmme6",
"id-11134207-7r98u-lpl48gum45pa94",
"id-11134207-7r98v-lpl48gum5k9qc1",
"id-11134207-7r98w-lpl48gum6yu63f",
"id-11134207-7r98v-lqh3eqcbmv7j00",
"id-11134207-7r98w-lr5zxgfi6s1pd6",
"id-11134207-7r990-ltfhxxkvhdze15"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1703266587,
"sold": 5,
"historical_sold": 171,
"liked": false,
"liked_count": 1871,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 85,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 128000000000,
"price_min": 128000000000,
"price_max": 128000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Ukuran",
"options": [
"ยฝ PK R22",
"ยพ PK R22",
"1 PK R22",
"ยพ PK R32/R410",
"1 PK R32/R410",
"ยฝ PK R32/R410",
"Inventer"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "Pasang",
"options": [
"Unit saja",
"+Pasang(TRMA DINGIN)"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.921348314606742,
"rating_count": [
89,
0,
0,
1,
5,
83
],
"rcount_with_context": 40,
"rcount_with_image": 32
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 128000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 127809549681,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 128000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 171,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 171,
"display_sold_count_text": "171"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "FZ TEKNIK MAKMUR JAYA",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
88,
97,
4
]
},
"itemid": 25104531928,
"shopid": 460689527,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lpl48gum2r4u1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[822059908662278,825465608493600,825465608494624,825465608499232,844931064601283,1400285055,1059152,700005487,298458395,1718093079,1015914,700190087,1000031,1718087960,1428713,2018619,825465608497696,298463379,2108629,700830032,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":352,\"model_id\":127809549681,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98p-lpl48gum2r4u1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[822059908662278,825465608493600,825465608494624,825465608499232,844931064601283,1400285055,1059152,700005487,298458395,1718093079,1015914,700190087,1000031,1718087960,1428713,2018619,825465608497696,298463379,2108629,700830032,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":352,\"model_id\":127809549681,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25104531928",
"debug_info": null
},
{
"item_basic": {
"itemid": 41814502736,
"shopid": 1312136275,
"name": "AE 6in1 AC portable Waktu Cerdas AC Mini Untuk Kamar Air Cooler Portable Pendingin Ruangan LED Display Kipa Nano Spray",
"label_ids": [
1012729,
2018618,
1718087960,
1428713,
844931064601283,
844931086908638,
1718093079,
1049120,
700005490,
1400285055,
1015914,
700190087,
1718093065,
700830032,
2213652,
822059908662278,
825465608492064,
825465608494624,
825465608499232,
825465608497696
],
"image": "id-11134207-81zth-mdy94o8u0pog52",
"images": [
"id-11134207-81zth-mdy94o8u0pog52",
"id-11134207-81ztg-me45gwjrkwefd6",
"id-11134207-81ztd-me45gwjvu0ao4d",
"id-11134207-81ztn-me45gwjvvev4df",
"id-11134207-81ztm-me45gwjv1wxya6",
"id-11134207-81zto-me45gwk13mys5f",
"id-11134207-81zti-me45gwjsk0lf2e",
"id-11134207-81ztl-me45gwjqby82ad",
"id-11134207-81ztj-me45gwjslf5v0a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1755856394,
"sold": 29,
"historical_sold": 1000,
"liked": false,
"liked_count": 1040,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 116,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 21589900000,
"price_min": 21589900000,
"price_max": 21589900000,
"price_min_before_discount": 73333300000,
"price_max_before_discount": 73333300000,
"hidden_price_display": null,
"price_before_discount": 73333300000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-71%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvd-mdy9506rfe2ode.16000081756361980.mp4",
"thumb_url": "id-11110105-6vdvd-mdy9506rfe2ode_cover",
"duration": 41,
"version": 2,
"vid": "id-11110105-6vdvd-mdy9506rfe2ode",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvd-mdy9506rfe2ode.16000081756361980.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvd-mdy9506rfe2ode.16000081756361980.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvd-mdy9506rfe2ode.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam"
],
"images": [
"id-11134207-81ztg-mdy94o8shxj551"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.620689655172414,
"rating_count": [
116,
4,
1,
9,
7,
95
],
"rcount_with_context": 25,
"rcount_with_image": 16
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-81zth-mdy94o8u0pog52",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228252946018304,
"price": 20889900000,
"strikethrough_price": 73333300000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1285993072181248,
"discount_text": "-71%",
"model_id": 296273203093,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1285993072181248,
"voucher_code": "AEHO23536",
"voucher_discount": 700000000,
"time_info": {
"start_time": 1762762080,
"end_time": 1770800880,
"valid_duration": null
},
"groups": [],
"min_spend": 20000000000
},
"recommended_platform_voucher_info": null,
"original_price": 73333300000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 29,
"local_monthly_sold_count_text": "29",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "AE Homelife Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 41814502736,
"shopid": 1312136275,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-mdy94o8u0pog52\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,1718087960,1428713,844931064601283,844931086908638,1718093079,1049120,700005490,1400285055,1015914,700190087,1718093065,700830032,2213652,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":153,\"model_id\":296273203093,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-mdy94o8u0pog52\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,2018618,1718087960,1428713,844931064601283,844931086908638,1718093079,1049120,700005490,1400285055,1015914,700190087,1718093065,700830032,2213652,822059908662278,825465608492064,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":153,\"model_id\":296273203093,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41814502736",
"debug_info": null
},
{
"item_basic": {
"itemid": 17695344854,
"shopid": 1025550444,
"name": "Portable Terlaris AC 1/2PK-1PK - Garansi Resmi 1Tahun.Original.Pendinginan Cepat.mudah Dipindahkan.Pemasangan Sendiri.Mudah Dicuci.kendali jarak jauh.Timer.Operasi Yang Stabil.",
"label_ids": [
844931064601283,
844931086908638,
1400285055,
1015914,
700190087,
1134053,
1718087960,
1428713,
1718093079,
1000031,
2018619,
2023641,
1400066568,
298893311,
700830032,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
298933384
],
"image": "id-11134207-7r98u-llsm2weifrj8a0",
"images": [
"id-11134207-7r98u-llsm2weifrj8a0",
"id-11134207-7r98t-lthu7gx9sq2yce",
"id-11134207-7r98x-lthu7gx9u4ned3",
"id-11134207-7qul9-lk4zuv8knotj0c",
"id-11134207-7qul9-ljozsjk7dhqz7e",
"id-11134207-7qul6-lk4zuv8kf9eve0",
"id-11134207-7qul4-lk4zuv8ki2jr3f",
"id-11134207-7qukx-lk4zuv8kkvonf6",
"id-11134207-7qul8-lk4zuv8kma9399"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1689650923,
"sold": 21,
"historical_sold": 458,
"liked": false,
"liked_count": 2662,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 241,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 209000000000,
"price_min": 209000000000,
"price_max": 209000000000,
"price_min_before_discount": 499900000000,
"price_max_before_discount": 499900000000,
"hidden_price_display": null,
"price_before_discount": 499900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-58%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "91d604ce7dd550376bb32e13b3f3956a",
"thumb_url": "a4c02b53a79e62330b5f2eb04d7194b1",
"duration": 45,
"version": 2,
"vid": "id-11110105-6jt7k-lk4p5t9lnufj51",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6jt7k-lk4p5t9lnufj51.16000081691374886.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt7k-lk4p5t9lnufj51.16000081691374886.mp4",
"width": 960,
"height": 540
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6jt7k-lk4p5t9lnufj51.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "warna",
"options": [
"1/2PK Versi Tombol",
"1PK Layar Sentuh",
"1/2PK Tombol+Kemasan",
"1PK Sentuh+Kemasan"
],
"images": [
"id-11134207-7r98z-lln8udz2xq3a37",
"id-11134207-7r98r-lln8udz2z4nqfc",
"id-11134207-7r98x-lu7b9uz7mkcv38",
"id-11134207-7r98s-lu7b9uz7nyxbb1"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.6,
"rating_count": [
245,
7,
6,
11,
30,
191
],
"rcount_with_context": 90,
"rcount_with_image": 51
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 704941044270080,
"price": 209000000000,
"strikethrough_price": 499900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-58%",
"model_id": 204441726620,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 499900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 458,
"rounded_local_monthly_sold_count": 21,
"local_monthly_sold_count_text": "21",
"rounded_display_sold_count": 458,
"display_sold_count_text": "458"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Dreamland Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000,
88,
97,
4
]
},
"itemid": 17695344854,
"shopid": 1025550444,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-llsm2weifrj8a0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,1015914,700190087,1134053,1718087960,1428713,1718093079,1000031,2018619,2023641,1400066568,298893311,700830032,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298933384],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":403,\"model_id\":204441726620,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98u-llsm2weifrj8a0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,1015914,700190087,1134053,1718087960,1428713,1718093079,1000031,2018619,2023641,1400066568,298893311,700830032,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298933384],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":403,\"model_id\":204441726620,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_17695344854",
"debug_info": null
},
{
"item_basic": {
"itemid": 1909576658,
"shopid": 59707277,
"name": "Midea Air Cooler AC-100 A (B) 6 Liter Hitam Kipas Pendingin Ruangan Penyejuk Udara",
"label_ids": [
27,
38,
40,
48,
47,
1000016,
1000109,
1000030,
1000245,
1000375,
1001036,
31,
33,
34,
74,
1015914,
700190087,
1400285055,
1213641,
298458395,
1000031,
1718087960,
1428713,
1718093079,
2018619,
2023641,
298893311,
298933384,
1059152,
1059154,
822059908662278,
822120592853526,
825465608499232,
825465608497696,
2048660,
2048661,
834403089593352,
700765096,
700810080,
1718093084,
298458396
],
"image": "id-11134207-7r98w-ln83fe5jbkboac",
"images": [
"id-11134207-7r98w-ln83fe5jbkboac",
"1985a4950863effe238eef2bb2d3d22c",
"81be2d06e212d523f845e3a7c01a0fe7",
"c63c886955edfe30d8bd285fe422ba95",
"sg-11134201-23020-2vimy5aqchnv7f",
"sg-11134201-23020-1uilo5aqchnvba",
"id-11134207-7r991-ln83fih6zs7j10",
"sg-11134201-23020-5d5ky5aqchnvbb",
"id-11134207-7quky-lhmx284awixw7f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1550120618,
"sold": 21,
"historical_sold": 1000,
"liked": false,
"liked_count": 6548,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 807,
"flag": 655362,
"cb_option": 0,
"item_status": "normal",
"price": 96900000000,
"price_min": 96900000000,
"price_max": 96900000000,
"price_min_before_discount": 161300000000,
"price_max_before_discount": 161300000000,
"hidden_price_display": null,
"price_before_discount": 161300000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-40%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.819291819291819,
"rating_count": [
819,
6,
5,
9,
91,
708
],
"rcount_with_context": 293,
"rcount_with_image": 249
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "cd72b6e67d147f97d9fee16c1cc2c5df",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": true,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 756991023169536,
"price": 96600000000,
"strikethrough_price": 161300000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1322976851673100,
"discount_text": "-40%",
"model_id": 71565045364,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1322976851673100,
"voucher_code": "MIDEDFJAS",
"voucher_discount": 300000000,
"time_info": {
"start_time": 1767200400,
"end_time": 1769878740,
"valid_duration": null
},
"groups": [],
"min_spend": 0
},
"recommended_platform_voucher_info": null,
"original_price": 161300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 21,
"local_monthly_sold_count_text": "21",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Midea Official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91,
1000,
1000,
1000,
4
]
},
"itemid": 1909576658,
"shopid": 59707277,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-ln83fe5jbkboac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,38,40,48,47,1000016,1000109,1000030,1000245,1000375,1001036,31,33,34,74,1015914,700190087,1400285055,1213641,298458395,1000031,1718087960,1428713,1718093079,2018619,2023641,298893311,298933384,1059152,1059154,822059908662278,822120592853526,825465608499232,825465608497696,2048660,2048661,834403089593352,700765096,700810080,1718093084,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":534,\"model_id\":71565045364,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-ln83fe5jbkboac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[27,38,40,48,47,1000016,1000109,1000030,1000245,1000375,1001036,31,33,34,74,1015914,700190087,1400285055,1213641,298458395,1000031,1718087960,1428713,1718093079,2018619,2023641,298893311,298933384,1059152,1059154,822059908662278,822120592853526,825465608499232,825465608497696,2048660,2048661,834403089593352,700765096,700810080,1718093084,298458396],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":534,\"model_id\":71565045364,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[91,1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_1909576658",
"debug_info": null
},
{
"item_basic": {
"itemid": 26301736860,
"shopid": 1023510819,
"name": "E.Home AC Portable Pendingin Ruangan Multiple Function AC - 0.5PK / 1 PK",
"label_ids": [
1015914,
700190087,
1400285055,
1718093079,
844931086908638,
1000031,
1428713,
1718087960,
2018619,
298893311,
700830032,
700005490,
1049120,
822059908662278,
837860934119952,
825465608499232,
825465608497696,
298933384,
2023641,
2108629,
298463379,
298468389,
1718088045
],
"image": "id-11134207-7rbk4-m6t7ckoyb8n008",
"images": [
"id-11134207-7rbk4-m6t7ckoyb8n008",
"id-11134207-7rbk0-m6t7ckoy9u2k33",
"id-11134207-7r98r-lw43tgj8q2nxe5",
"id-11134207-7r98u-lw43tgj8alp71f",
"id-11134207-7r98s-lw43tgj8alxp2b",
"id-11134207-7r98x-lw43tgj8rgvi57",
"id-11134207-7r990-lw3qr8dozlaiff",
"id-11134207-7r98q-lw3qr8doy6q2f5",
"id-11134207-7r98s-lw43tgj8q2b255"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1717489901,
"sold": 5,
"historical_sold": 245,
"liked": false,
"liked_count": 958,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 126,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 219400000000,
"price_min": 219400000000,
"price_max": 219400000000,
"price_min_before_discount": 439800000000,
"price_max_before_discount": 439800000000,
"hidden_price_display": null,
"price_before_discount": 439800000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-50%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1h-lw40yso2qusb7b.16000081717485098.mp4",
"thumb_url": "id-11110105-7r98u-lw40z69iuyvgf9",
"duration": 44,
"version": 2,
"vid": "id-11110105-6ke1h-lw40yso2qusb7b",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1h-lw40yso2qusb7b.default.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1h-lw40yso2qusb7b.default.mp4",
"width": 960,
"height": 540
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1h-lw40yso2qusb7b.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Model",
"options": [
"0.5PK - Remote",
"1 PK - Remote",
"0.5PK - KEMASAN KAYU",
"1 PK - KEMASAN KAYU"
],
"images": [
"id-11134207-7r98x-lw3qr8dovdl64a",
"id-11134207-7r98z-lw3qr8dows5me3",
"id-11134207-7rbkd-m6t7ckoycn7g68",
"id-11134207-7rbk8-m6t7ckoye1rwa9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.7819548872180455,
"rating_count": [
133,
2,
2,
2,
11,
116
],
"rcount_with_context": 41,
"rcount_with_image": 30
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 355411203211264,
"bundle_deal_label": "Pilih 3, diskon 1%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 820137226190848,
"price": 219400000000,
"strikethrough_price": 439800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-50%",
"model_id": 168239102973,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 439800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 245,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 245,
"display_sold_count_text": "245"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Elegan Home",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
1000
]
},
"itemid": 26301736860,
"shopid": 1023510819,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6t7ckoyb8n008\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1400285055,1718093079,844931086908638,1000031,1428713,1718087960,2018619,298893311,700830032,700005490,1049120,822059908662278,837860934119952,825465608499232,825465608497696,298933384,2023641,2108629,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":1247,\"model_id\":168239102973,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6t7ckoyb8n008\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1015914,700190087,1400285055,1718093079,844931086908638,1000031,1428713,1718087960,2018619,298893311,700830032,700005490,1049120,822059908662278,837860934119952,825465608499232,825465608497696,298933384,2023641,2108629,298463379,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":1247,\"model_id\":168239102973,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26301736860",
"debug_info": null
},
{
"item_basic": {
"itemid": 12539729896,
"shopid": 10095286,
"name": "AC Second Bekas SBY Sidoarjo + Pemasangan Gratis",
"label_ids": [
47,
1001034,
1001022,
1049116,
700005516,
844931026694327,
844931046478970,
844931064601283,
822059908662278,
1400285055,
1015914,
700190087,
1213641,
825465608492064,
825465608497696,
825465608499232,
834403089593352,
837860934119952,
840955085144628,
840990690654214,
1718093079,
298463379,
1000031,
2018619,
2108629,
298933384,
2048661,
2048660,
700765096,
844931086908638,
2068629,
298938357,
2218763,
298458398,
2098628,
298468389,
1718088045,
1718088044,
1718093084,
298458396,
298938368,
298468390,
2098629
],
"image": "275aafc6408047ab6b3bc102428afa59",
"images": [
"275aafc6408047ab6b3bc102428afa59",
"3d838cc9a23e24302cae95915097e0c9",
"116844489157718fc43dd63425099f65"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1635571092,
"sold": 1,
"historical_sold": 98,
"liked": false,
"liked_count": 499,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 52,
"flag": 983040,
"cb_option": 0,
"item_status": "normal",
"price": 170000000000,
"price_min": 170000000000,
"price_max": 170000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Putih"
],
"images": [
"6a0b8a85409bacf2422fc48001a84d4f"
],
"properties": [],
"type": 0
},
{
"name": "Ukuran",
"options": [
"A",
"B",
"C",
"D",
"E"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.673076923076923,
"rating_count": [
52,
1,
1,
3,
4,
43
],
"rcount_with_context": 26,
"rcount_with_image": 21
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sidoarjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp566RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 170000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 121809918846,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 170000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 98,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 98,
"display_sold_count_text": "98"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp566RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "thoryjack",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
88,
1000,
91,
1000
]
},
"itemid": 12539729896,
"shopid": 10095286,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"275aafc6408047ab6b3bc102428afa59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1001034,1001022,1049116,700005516,844931026694327,844931046478970,844931064601283,822059908662278,1400285055,1015914,700190087,1213641,825465608492064,825465608497696,825465608499232,834403089593352,837860934119952,840955085144628,840990690654214,1718093079,298463379,1000031,2018619,2108629,298933384,2048661,2048660,700765096,844931086908638,2068629,298938357,2218763,298458398,2098628,298468389,1718088045,1718088044,1718093084,298458396,298938368,298468390,2098629],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\"],\"merge_rank\":3091,\"model_id\":121809918846,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,1000,91,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"275aafc6408047ab6b3bc102428afa59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1001034,1001022,1049116,700005516,844931026694327,844931046478970,844931064601283,822059908662278,1400285055,1015914,700190087,1213641,825465608492064,825465608497696,825465608499232,834403089593352,837860934119952,840955085144628,840990690654214,1718093079,298463379,1000031,2018619,2108629,298933384,2048661,2048660,700765096,844931086908638,2068629,298938357,2218763,298458398,2098628,298468389,1718088045,1718088044,1718093084,298458396,298938368,298468390,2098629],\"matched_keywords\":[\"ac window\",\"air conditioner\",\"ac window\",\"pendingin ruangan\"],\"merge_rank\":3091,\"model_id\":121809918846,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[88,1000,91,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_12539729896",
"debug_info": null
},
{
"item_basic": {
"itemid": 8315443588,
"shopid": 354174429,
"name": "Besmood AC Mini portable Artic Pendingin Ruangan Sejuk Air cooler",
"label_ids": [
1001024,
22,
1011751,
1015914,
700020158,
1213641,
700190087,
825249635454464,
822059908662278,
844931086908638,
844931064601283,
1400285055,
298458334,
1049120,
700005490,
825465608492064,
825465608493600,
825465608497696,
825465608499232,
837860934119952,
840955085144628,
840990690654214,
1000031,
298458395,
1718093079,
1428713,
1718087960,
2018619,
2023641,
298893311,
2108629,
700830032,
2048660,
2048661,
700765096,
298933384,
298458396,
1718093084
],
"image": "c14f66e531e2b4de089fc9cd47ab9f01",
"images": [
"c14f66e531e2b4de089fc9cd47ab9f01",
"2e8f22f415c388166db9a80f6e06fb9b",
"d7f14e968dbf71d9c61e4ef280d6d7d5",
"db8462947609f6831437a4b20cbf8d4f",
"17333f4d76603dcf7cfc0eb51b521468",
"8975315a22422c47668a5f6381d60a8c",
"4c93b7b041c9ad2cc8f6914009938533"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1613359201,
"sold": 22,
"historical_sold": 7000,
"liked": false,
"liked_count": 4264,
"view_count": null,
"catid": 100010,
"brand": "Tidak Ada Merek",
"cmt_count": 3411,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 6650000000,
"price_min": 6650000000,
"price_max": 6650000000,
"price_min_before_discount": 10500000000,
"price_max_before_discount": 10500000000,
"hidden_price_display": null,
"price_before_discount": 10500000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-37%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "0f55774f26afe3298f68de28bbdd730e",
"thumb_url": "09cf8cecdb6782550c8f5fc81a85c2a7",
"duration": 60,
"version": 2,
"vid": "sg_ccb4e053-f254-4f59-a679-8a4b5ae38051_000063",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/sg_ccb4e053-f254-4f59-a679-8a4b5ae38051_000063.16003251748018957.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/sg_ccb4e053-f254-4f59-a679-8a4b5ae38051_000063.16003251748018957.mp4",
"width": 1276,
"height": 718
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/sg_ccb4e053-f254-4f59-a679-8a4b5ae38051_000063.default.mp4",
"width": 962,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "TYPE",
"options": [
"RJA777",
"M999"
],
"images": [
"2e8f22f415c388166db9a80f6e06fb9b",
"c14f66e531e2b4de089fc9cd47ab9f01"
],
"properties": [],
"type": 0
},
{
"name": "TAMBAHAN",
"options": [
"TAMBAH BUBBLE",
"TANPA BUBBLE"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.4318381706244505,
"rating_count": [
3412,
172,
76,
238,
550,
2376
],
"rcount_with_context": 1228,
"rcount_with_image": 959
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 820908952961024,
"price": 6600000000,
"strikethrough_price": 10500000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1298889643671552,
"discount_text": "-37%",
"model_id": 33702470635,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1298889643671552,
"voucher_code": "BESM500DE",
"voucher_discount": 50000000,
"time_info": {
"start_time": 1764299460,
"end_time": 1772297940,
"valid_duration": null
},
"groups": [],
"min_spend": 5999900000
},
"recommended_platform_voucher_info": null,
"original_price": 10500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 7000,
"rounded_local_monthly_sold_count": 22,
"local_monthly_sold_count_text": "22",
"rounded_display_sold_count": 7000,
"display_sold_count_text": "7RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Besmood",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
91
]
},
"itemid": 8315443588,
"shopid": 354174429,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"c14f66e531e2b4de089fc9cd47ab9f01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,22,1011751,1015914,700020158,1213641,700190087,825249635454464,822059908662278,844931086908638,844931064601283,1400285055,298458334,1049120,700005490,825465608492064,825465608493600,825465608497696,825465608499232,837860934119952,840955085144628,840990690654214,1000031,298458395,1718093079,1428713,1718087960,2018619,2023641,298893311,2108629,700830032,2048660,2048661,700765096,298933384,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":2523,\"model_id\":33702470635,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"c14f66e531e2b4de089fc9cd47ab9f01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001024,22,1011751,1015914,700020158,1213641,700190087,825249635454464,822059908662278,844931086908638,844931064601283,1400285055,298458334,1049120,700005490,825465608492064,825465608493600,825465608497696,825465608499232,837860934119952,840955085144628,840990690654214,1000031,298458395,1718093079,1428713,1718087960,2018619,2023641,298893311,2108629,700830032,2048660,2048661,700765096,298933384,298458396,1718093084],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":2523,\"model_id\":33702470635,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_8315443588",
"debug_info": null
},
{
"item_basic": {
"itemid": 42365753503,
"shopid": 22400373,
"name": "KIPAS ANGIN MODEL AC 2PK/REMOTE/HEMAT LISTIK 40 WATT/SIAP PAKAI/FREE REMOTE",
"label_ids": [
1718087960,
1428713,
844931064601283,
298463379,
1718093079,
1400285055,
822059908662278,
825465608499232,
825465608497696,
1400066568,
1015914,
700190087,
1049112,
1049146,
2018619,
844931086908638,
298468389,
1718088045
],
"image": "id-11134207-7ra0m-mdg0c59ssl6778",
"images": [
"id-11134207-7ra0m-mdg0c59ssl6778",
"id-11134207-7ra0k-mdsuf50dxfki5c",
"id-11134207-81ztl-mdzzpiqfesqq5c",
"id-11134207-81ztp-mekakyitbfgm69",
"id-11134207-81ztd-mfl2jycx0ykrd9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1756467539,
"sold": 54,
"historical_sold": 349,
"liked": false,
"liked_count": 200,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 150,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 25500000000,
"price_min": 25500000000,
"price_max": 25500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdv5-mdzzqn0nexhc29.16000081756467211.mp4",
"thumb_url": "id-11110105-6vdv5-mdzzqn0nexhc29_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6vdv5-mdzzqn0nexhc29",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv5-mdzzqn0nexhc29.16000081756467211.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv5-mdzzqn0nexhc29.16000081756467211.mp4",
"width": 720,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv5-mdzzqn0nexhc29.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "VARIAN",
"options": [
"MANUAL NO REMOT",
"POLOS REMOT",
"LED PAKE REMOT",
"3PK JUMBO+REMOT"
],
"images": [
"id-11134207-81ztm-mf9vk9umy8zvc7",
"id-11134207-81ztg-mewzpmlwp1j4ef",
"id-11134207-81zti-mfl2jycwzk0b8b",
"id-11134207-81zth-mfl2jycx7zezcb"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.1066666666666665,
"rating_count": [
150,
16,
9,
15,
13,
97
],
"rcount_with_context": 54,
"rcount_with_image": 42
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Cirebon",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 25500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 238113201648,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 25500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 349,
"rounded_local_monthly_sold_count": 54,
"local_monthly_sold_count_text": "54",
"rounded_display_sold_count": 349,
"display_sold_count_text": "349"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ZV FAN SPLIT",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 42365753503,
"shopid": 22400373,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mdg0c59ssl6778\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1718093079,1400285055,822059908662278,825465608499232,825465608497696,1400066568,1015914,700190087,1049112,1049146,2018619,844931086908638,298468389,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\"],\"merge_rank\":1099,\"model_id\":238113201648,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0m-mdg0c59ssl6778\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,298463379,1718093079,1400285055,822059908662278,825465608499232,825465608497696,1400066568,1015914,700190087,1049112,1049146,2018619,844931086908638,298468389,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\"],\"merge_rank\":1099,\"model_id\":238113201648,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42365753503",
"debug_info": null
},
{
"item_basic": {
"itemid": 42570021132,
"shopid": 1619268501,
"name": "COD Portable Terlaris AC 1/2PK-1PK - Garansi Resmi 1Tahun.Original.Pendinginan Cepat.mudah Dipindahkan.Pemasangan Sendiri.Mudah Dicuci.kendali jarak jauh.Timer.Operasi Yang Stabil.",
"label_ids": [
844931064601283,
844931086908638,
700005490,
1049120,
822059908662278,
825465608497696,
825465608499232,
2023641,
2018619,
298463379,
298933384,
1400285055,
1015914,
700190087,
1718093079,
1718088045,
298468389
],
"image": "id-11134207-82251-mhlpvrtcix3cb3",
"images": [
"id-11134207-82251-mhlpvrtcix3cb3",
"id-11134207-81ztq-metvp54ohzwl25",
"id-11134207-81zto-metvp54ojeh152",
"id-11134207-81zti-metvp54okt1he3",
"id-11134207-81ztd-metw2jl6mlfkc4",
"id-11134207-81ztn-metvp54om7lx65",
"id-11134207-81ztp-metvp54onm6d45",
"id-11134207-81ztj-metw2jl47i8642",
"id-11134207-81ztf-metw2jl3clqa0d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1758277484,
"sold": 5,
"historical_sold": 9,
"liked": false,
"liked_count": 56,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 3,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 209000000000,
"price_min": 209000000000,
"price_max": 209000000000,
"price_min_before_discount": 499900000000,
"price_max_before_discount": 499900000000,
"hidden_price_display": null,
"price_before_discount": 499900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-58%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven4-metw2mydijgnab.16000101758277077.mp4",
"thumb_url": "id-11110105-6ven4-metw2mydijgnab_cover",
"duration": 45,
"version": 2,
"vid": "id-11110105-6ven4-metw2mydijgnab",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven4-metw2mydijgnab.16000101758277077.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-metw2mydijgnab.16000101758277077.mp4",
"width": 960,
"height": 540
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-metw2mydijgnab.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "warna",
"options": [
"1/2PK Versi Tombol",
"1PK Layar Sentuh",
"1/2PK Tombol+Kemasan",
"1PK Sentuh+Kemasan"
],
"images": [
"id-11134207-81ztl-metw2jl0f950b9",
"id-11134207-81ztm-metw2jl0gnpgea",
"id-11134207-81ztq-metw2jl0i29w68",
"id-11134207-81ztq-metw2jl0jgucc8"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 386177219969249,
"bundle_deal_label": "Pilih 3, diskon 1%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 735469797704704,
"price": 209000000000,
"strikethrough_price": 499900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-58%",
"model_id": 224516221334,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 499900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 9,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 9,
"display_sold_count_text": "9"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "DiamondMart.id",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000
]
},
"itemid": 42570021132,
"shopid": 1619268501,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhlpvrtcix3cb3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,1049120,822059908662278,825465608497696,825465608499232,2023641,2018619,298463379,298933384,1400285055,1015914,700190087,1718093079,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":889,\"model_id\":224516221334,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhlpvrtcix3cb3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,1049120,822059908662278,825465608497696,825465608499232,2023641,2018619,298463379,298933384,1400285055,1015914,700190087,1718093079,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":889,\"model_id\":224516221334,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42570021132",
"debug_info": null
},
{
"item_basic": {
"itemid": 29532999011,
"shopid": 1250112260,
"name": "Mountainhiker AC portabel, tanpa drainase, AC mini untuk berkemah dan dipasang di mobil",
"label_ids": [
2018618,
1718087960,
1428713,
844931064601283,
1718093079,
1015914,
700190087,
844931086908638,
1012729,
298893311,
1400285055,
298888358,
298938357,
700830032,
834230400556567,
2213652,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
298463379,
298933384,
700810055,
2008656,
2098628,
298468389,
1718088045,
2098629,
298938368
],
"image": "id-11134207-8224t-mi84g8ess0zne2",
"images": [
"id-11134207-8224t-mi84g8ess0zne2",
"id-11134207-7ra0s-md160bd01eef02",
"id-11134207-7ra0j-md160bcpmctf55",
"id-11134207-7ra0j-md160bd0jns72c",
"id-11134207-7ra0k-md160bczly9ka0",
"id-11134207-7ra0q-md160bcpxlfc5d",
"id-11134207-7ra0p-md160bczq5nb88",
"id-11134207-7ra0j-md160bczor2v8a",
"id-11134207-7ra0t-md160bczly5jce"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1744352389,
"sold": 4,
"historical_sold": 40,
"liked": false,
"liked_count": 1300,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 22,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 348000000000,
"price_min": 348000000000,
"price_max": 348000000000,
"price_min_before_discount": 716000000000,
"price_max_before_discount": 716000000000,
"hidden_price_display": null,
"price_before_discount": 716000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-51%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.16000081744351735.mp4",
"thumb_url": "id-11110105-6kmj5-m8fumsu1jjg8c9_cover",
"duration": 28,
"version": 2,
"vid": "id-11110105-6kmj5-m8fumsu1jjg8c9",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.16000081744351735.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.16000081744351735.mp4",
"width": 720,
"height": 1280
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.16003251754738517.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.16003251754738517.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj5-m8fumsu1jjg8c9.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "warna",
"options": [
"Warna khaki",
"Hitam"
],
"images": [
"id-11134207-7ra0m-md160bd9my5f59",
"id-11134207-7ra0l-md160bd9ocpv15"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.7272727272727275,
"rating_count": [
22,
1,
0,
0,
2,
19
],
"rcount_with_context": 5,
"rcount_with_image": 6
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 403192349473018,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp580RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 710771487605760,
"price": 348000000000,
"strikethrough_price": 716000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-51%",
"model_id": 243148207252,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 716000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 40,
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_display_sold_count": 40,
"display_sold_count_text": "40"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp580RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Mountainhiker Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000
]
},
"itemid": 29532999011,
"shopid": 1250112260,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mi84g8ess0zne2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,1718093079,1015914,700190087,844931086908638,1012729,298893311,1400285055,298888358,298938357,700830032,834230400556567,2213652,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298463379,298933384,700810055,2008656,2098628,298468389,1718088045,2098629,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":943,\"model_id\":243148207252,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mi84g8ess0zne2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,1718087960,1428713,844931064601283,1718093079,1015914,700190087,844931086908638,1012729,298893311,1400285055,298888358,298938357,700830032,834230400556567,2213652,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,298463379,298933384,700810055,2008656,2098628,298468389,1718088045,2098629,298938368],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\"],\"merge_rank\":943,\"model_id\":243148207252,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29532999011",
"debug_info": null
},
{
"item_basic": {
"itemid": 27861538930,
"shopid": 1360283095,
"name": "Homeliving Kipas Ac Air Cooler pendingin Ruangan Mini bisa tambah Es Batu Dingin Tahan Lama",
"label_ids": [
844931086908638,
844931064601283,
1718093079,
1000031,
1015914,
700190087,
1000669,
1400285055,
1428713,
1718087960,
2018619,
2023641,
298463379,
1049117,
1049116,
822059908662278,
825465608493600,
825465608499232,
825465608497696,
837860934119952,
298893311,
700830032,
298933384,
2108629,
298938356,
298468389,
1718088045
],
"image": "id-11134207-7rbk8-m6lfeu5rycf5a6",
"images": [
"id-11134207-7rbk8-m6lfeu5rycf5a6",
"id-11134207-7r98v-m09yx4c7btpc19",
"id-11134207-7r98x-m09yx4c7d89s9a",
"id-11134207-7r98o-m09yx4c7emu868",
"id-11134207-7r98q-m09yx4c7g1eo15",
"id-11134207-7rasf-m27vqbemtit064",
"id-11134207-7rasl-m27vqbems3tu59"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1726567462,
"sold": 290,
"historical_sold": 10000,
"liked": false,
"liked_count": 4539,
"view_count": null,
"catid": 100010,
"brand": "HANG YAN",
"cmt_count": 7129,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 4990000000,
"price_min": 4990000000,
"price_max": 4990000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1b-m0a2pqpdqll888.16000081726568189.mp4",
"thumb_url": "id-11110105-7r98v-m0a2prtw3oeo83",
"duration": 12,
"version": 2,
"vid": "id-11110105-6ke1b-m0a2pqpdqll888",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1b-m0a2pqpdqll888.default.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m0a2pqpdqll888.default.mp4",
"width": 354,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1b-m0a2pqpdqll888.default.mp4",
"width": 354,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Hitam",
"options": [
"Hitam",
"Hijau",
"Navy"
],
"images": [
"id-11134207-7r98u-m09yx4c7hfz449",
"id-11134207-7r98v-m09yx4c7iujkf6",
"id-11134207-7ras9-m27vqbemuxdgca"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.748351802496844,
"rating_count": [
7129,
70,
48,
171,
1028,
5812
],
"rcount_with_context": 1555,
"rcount_with_image": 1068
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 4990000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 187814015441,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 4990000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10000,
"rounded_local_monthly_sold_count": 290,
"local_monthly_sold_count_text": "290",
"rounded_display_sold_count": 10000,
"display_sold_count_text": "10RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Homeliving_12",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
91,
1000,
1000
]
},
"itemid": 27861538930,
"shopid": 1360283095,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6lfeu5rycf5a6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1000031,1015914,700190087,1000669,1400285055,1428713,1718087960,2018619,2023641,298463379,1049117,1049116,822059908662278,825465608493600,825465608499232,825465608497696,837860934119952,298893311,700830032,298933384,2108629,298938356,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":2031,\"model_id\":187814015441,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,91,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk8-m6lfeu5rycf5a6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1000031,1015914,700190087,1000669,1400285055,1428713,1718087960,2018619,2023641,298463379,1049117,1049116,822059908662278,825465608493600,825465608499232,825465608497696,837860934119952,298893311,700830032,298933384,2108629,298938356,298468389,1718088045],\"matched_keywords\":[\"ac window\",\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\"],\"merge_rank\":2031,\"model_id\":187814015441,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,91,1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27861538930",
"debug_info": null
},
{
"item_basic": {
"itemid": 28727016535,
"shopid": 1025550444,
"name": "A01 AC Portable 0.5PK / 1 PK Air Cooler Pendingin Ruangan AC WINDOW PORTABLEPAKAI FREON R290",
"label_ids": [
1718087960,
1428713,
844931064601283,
844931086908638,
1718093079,
1400285055,
2018619,
2023641,
1015914,
700190087,
700005490,
1049120,
822059908662278,
825465608497696,
837860934119952,
825465608499232,
700830032,
298933384
],
"image": "id-11134207-7rbk3-m6p2wcaxbdks3e",
"images": [
"id-11134207-7rbk3-m6p2wcaxbdks3e",
"id-11134207-7rbk8-mb0l6wd5fhro8e",
"id-11134207-7rbk0-mb0l6wd5gwc48e",
"id-11134207-7rbk1-mb0l6wd5iawkba",
"id-11134207-7rbk7-mb0l6wd5nx6c27",
"id-11134207-7rbk1-mb0l6wd5pbqs99",
"id-11134207-7rbk9-mb0l6wd5jph079",
"id-11134207-7rbk3-mb0l6wd5l41gb5",
"id-11134207-7rbkc-mb0l6wd5milw1c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1740190448,
"sold": 0,
"historical_sold": 32,
"liked": false,
"liked_count": 291,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 16,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 189000000000,
"price_min": 189000000000,
"price_max": 189000000000,
"price_min_before_discount": 400000000000,
"price_max_before_discount": 400000000000,
"hidden_price_display": null,
"price_before_discount": 400000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-53%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16000081740624890.mp4",
"thumb_url": "id-11110105-6kmj0-m6qa9s0c69wnef_cover",
"duration": 22,
"version": 2,
"vid": "id-11110105-6kmj0-m6qa9s0c69wnef",
"formats": [
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16006711753376968.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16006711753376968.mp4",
"width": 540,
"height": 540
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16000081740624890.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16000081740624890.mp4",
"width": 720,
"height": 720
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16003251753376968.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.16003251753376968.mp4",
"width": 720,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m6qa9s0c69wnef.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "kekuatan",
"options": [
"A01",
"Pembungkus aman"
],
"images": [
"id-11134207-7rbk7-m6nei58lrwip8e",
"id-11134207-7rbk8-mb0l6wd5e378cd"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.25,
"rating_count": [
16,
1,
1,
2,
1,
11
],
"rcount_with_context": 4,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 704941044270080,
"price": 189000000000,
"strikethrough_price": 400000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-53%",
"model_id": 138224277076,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 400000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 32,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 32,
"display_sold_count_text": "32"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Dreamland Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
0,
1000,
88,
97
]
},
"itemid": 28727016535,
"shopid": 1025550444,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m6p2wcaxbdks3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,1400285055,2018619,2023641,1015914,700190087,700005490,1049120,822059908662278,825465608497696,837860934119952,825465608499232,700830032,298933384],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":2633,\"model_id\":138224277076,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk3-m6p2wcaxbdks3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1718093079,1400285055,2018619,2023641,1015914,700190087,700005490,1049120,822059908662278,825465608497696,837860934119952,825465608499232,700830032,298933384],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\"],\"merge_rank\":2633,\"model_id\":138224277076,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,0,1000,88,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28727016535",
"debug_info": null
},
{
"item_basic": {
"itemid": 29562781958,
"shopid": 681225299,
"name": "Simplus Air cooler Kipas Angin Pendingin Kipas AC Rumahan Tangki 10L Jangkauan Udara Luas",
"label_ids": [
1002164,
1016119,
1668726,
844931086908638,
844931064601283,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
825465608494624,
1718093079,
1015914,
700190087,
1000031,
1918643,
1823711,
1400620020,
298813370,
1400285055,
298463379,
2018618,
1012763,
298893311,
298933384,
2153644,
298888358,
298938357,
2213652,
700810080,
700810055,
2008656,
298938368,
1718088045,
2098628,
2098629,
298468389
],
"image": "id-11134207-8224z-mj582rnyyosg04",
"images": [
"id-11134207-8224z-mj582rnyyosg04",
"id-11134207-8224y-mg2113jcuq6la6",
"id-11134207-82251-mg2113jd5yq494",
"id-11134207-8224p-mg2113jd7dak59",
"id-11134207-8224p-mg2113jd8rv0ce",
"id-11134207-8224y-mg2113jda6fg99",
"id-11134207-8224x-mg2113jdbkzw56",
"id-11134207-8224q-mg2113jdczkc9e",
"id-11134207-8224u-mg2113jdee4sb9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1727682518,
"sold": 260,
"historical_sold": 2000,
"liked": false,
"liked_count": 7458,
"view_count": null,
"catid": 100010,
"brand": "Simplus",
"cmt_count": 858,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 62600000000,
"price_min": 62600000000,
"price_max": 62600000000,
"price_min_before_discount": 119799900000,
"price_max_before_discount": 119799900000,
"hidden_price_display": null,
"price_before_discount": 119799900000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-48%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16000081747106835.mp4",
"thumb_url": "id-11110105-6kmis-m9pd3ckorksb3c_cover",
"duration": 45,
"version": 2,
"vid": "id-11110105-6kmis-m9pd3ckorksb3c",
"formats": [
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16006711753767325.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16006711753767325.mp4",
"width": 540,
"height": 540
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16000081747106835.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16000081747106835.mp4",
"width": 720,
"height": 720
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16003251753767325.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16003251753767325.mp4",
"width": 720,
"height": 720
},
{
"format": 1600558,
"defn": "V1080P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16005581753767325.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.16005581753767325.mp4",
"width": 1080,
"height": 1080
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmis-m9pd3ckorksb3c.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "types",
"options": [
"10L(Remote Control)",
"10RC+Gelembung Udara",
"10L(Tombol Kontrol)",
"10TK+Gelembung Udara",
"24L"
],
"images": [
"id-11134207-8224r-mg2113jdfsp8cc",
"id-11134207-7ra0s-mb7x0qnvh2sf6a",
"id-11134207-8224y-mg2113jdh79o67",
"id-11134207-7ra0l-mbda10btajac49",
"id-11134207-7rbk8-m8c0pfwl784t2c"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.825174825174825,
"rating_count": [
858,
7,
5,
10,
87,
749
],
"rcount_with_context": 196,
"rcount_with_image": 145
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "sg-11134201-7rdxq-mbxmsionfjzp7d",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp103RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228239314534401,
"price": 62100000000,
"strikethrough_price": 119799900000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1323106790948884,
"discount_text": "-48%",
"model_id": 248116101619,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1323106790948884,
"voucher_code": "SIMP00226",
"voucher_discount": 500000000,
"time_info": {
"start_time": 1767286800,
"end_time": 1769965140,
"valid_duration": null
},
"groups": [],
"min_spend": 35900000000
},
"recommended_platform_voucher_info": null,
"original_price": 119799900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2000,
"rounded_local_monthly_sold_count": 260,
"local_monthly_sold_count_text": "260",
"rounded_display_sold_count": 2000,
"display_sold_count_text": "2RB+"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp103RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Simplus Official Shop",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97,
1000,
1000,
91,
4
]
},
"itemid": 29562781958,
"shopid": 681225299,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mj582rnyyosg04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,1016119,1668726,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1015914,700190087,1000031,1918643,1823711,1400620020,298813370,1400285055,298463379,2018618,1012763,298893311,298933384,2153644,298888358,298938357,2213652,700810080,700810055,2008656,298938368,1718088045,2098628,2098629,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":151,\"model_id\":248116101619,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mj582rnyyosg04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1002164,1016119,1668726,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1015914,700190087,1000031,1918643,1823711,1400620020,298813370,1400285055,298463379,2018618,1012763,298893311,298933384,2153644,298888358,298938357,2213652,700810080,700810055,2008656,298938368,1718088045,2098628,2098629,298468389],\"matched_keywords\":[\"ac window\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":151,\"model_id\":248116101619,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[97,1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29562781958",
"debug_info": null
},
{
"item_basic": {
"itemid": 266977791,
"shopid": 10095286,
"name": "AC Second Bekas 1/2pk-1pk Komplit Pemasangan",
"label_ids": [
47,
1000375,
22,
1001036,
1001024,
700020158,
1049116,
700005516,
822059908662278,
844931026694327,
844931046478970,
844931064601283,
1400285055,
298458334,
822120592839702,
822120592841238,
822120592847382,
825465608496160,
825465608497696,
825465608499232,
834403089593352,
837860934119952,
1015914,
700190087,
298463379,
1718093079,
1000031,
2018619,
2108629,
298933384,
2068629,
298938357,
2218763,
2098629,
298938368,
1718088045,
2098628,
298468389
],
"image": "8bd3875cc1da1056c5d82ba3c1d49a10",
"images": [
"8bd3875cc1da1056c5d82ba3c1d49a10",
"9a7c538489d3407f346b5fcf68398f58",
"d3f46a5988d1a2ff4f28bee4bf691874"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1495127182,
"sold": 11,
"historical_sold": 329,
"liked": false,
"liked_count": 5282,
"view_count": null,
"catid": 100010,
"brand": "Toshiba",
"cmt_count": 174,
"flag": 917506,
"cb_option": 0,
"item_status": "normal",
"price": 60000000000,
"price_min": 60000000000,
"price_max": 60000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Indoor",
"Outdoor",
"Set indoor+outdoor",
"Set in out pipa",
"Set lengkap +pasang"
],
"images": [
"062b91554e086ffb925c073a07769f30",
"844c9eae7a255d2e220340b6bef8a5f1",
"46bd041a0526df0b384f5812ca92354a",
"da4e72d32c4d8b6f2527f3997b55c497",
"2a6cbd4a8a704c441c4e0b20c8f905c8"
],
"properties": [],
"type": 0
},
{
"name": "Ukuran",
"options": [
"1/2pk",
"3/4pk",
"1pk"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.355029585798817,
"rating_count": [
169,
13,
6,
10,
19,
121
],
"rcount_with_context": 92,
"rcount_with_image": 63
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": true,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sidoarjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp200RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 60000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 13454589816,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 60000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 329,
"rounded_local_monthly_sold_count": 11,
"local_monthly_sold_count_text": "11",
"rounded_display_sold_count": 329,
"display_sold_count_text": "329"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp200RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "thoryjack",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
88,
4
]
},
"itemid": 266977791,
"shopid": 10095286,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"8bd3875cc1da1056c5d82ba3c1d49a10\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000375,22,1001036,1001024,700020158,1049116,700005516,822059908662278,844931026694327,844931046478970,844931064601283,1400285055,298458334,822120592839702,822120592841238,822120592847382,825465608496160,825465608497696,825465608499232,834403089593352,837860934119952,1015914,700190087,298463379,1718093079,1000031,2018619,2108629,298933384,2068629,298938357,2218763,2098629,298938368,1718088045,2098628,298468389],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\",\"ac window\"],\"merge_rank\":83,\"model_id\":13454589816,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"8bd3875cc1da1056c5d82ba3c1d49a10\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,1000375,22,1001036,1001024,700020158,1049116,700005516,822059908662278,844931026694327,844931046478970,844931064601283,1400285055,298458334,822120592839702,822120592841238,822120592847382,825465608496160,825465608497696,825465608499232,834403089593352,837860934119952,1015914,700190087,298463379,1718093079,1000031,2018619,2108629,298933384,2068629,298938357,2218763,2098629,298938368,1718088045,2098628,298468389],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"ac window\",\"ac window\"],\"merge_rank\":83,\"model_id\":13454589816,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,88,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_266977791",
"debug_info": null
},
{
"item_basic": {
"itemid": 24093056086,
"shopid": 1309702607,
"name": "LENODI AC Portable 1.5PK/1PK, Ac Bergerak, Garansi Resmi 1Tahun Original Pendinginan Cepat mudah Dipindahkan, Pendingin,Dehumidifikasi, Pengurangan Kebisingan, Hemat Energi, Tanpa Unit Luar Ruangan",
"label_ids": [
2018619,
2023641,
1428713,
1718087960,
844931064601283,
844931086908638,
700005490,
1049120,
1718093079,
822059908662278,
837860934119952,
825465608499232,
825465608497696,
1015914,
700190087,
1400285055,
298893311,
700830032,
298463379,
298933384,
298468389,
1718088045
],
"image": "id-11134207-7rbkb-m9008tzw0wsx79",
"images": [
"id-11134207-7rbkb-m9008tzw0wsx79",
"id-11134207-7rbk2-m7rbxpal7w4071",
"id-11134207-7rbk4-m7rbxpalnccwa9",
"id-11134207-7rbk3-m7rbxpav7hdt38",
"id-11134207-7rbk3-m7rbxpal9ao4ed",
"id-11134207-7rbk6-m7rbxpavmxk9c1",
"id-11134207-7rbkd-m7rbxpavmxmp5d",
"id-11134207-7rbk8-m7rbxpav7hbd07",
"id-11134207-7rbk9-m7rbxpaloqx076"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1742800588,
"sold": 4,
"historical_sold": 116,
"liked": false,
"liked_count": 1703,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 57,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 131000000000,
"price_min": 131000000000,
"price_max": 131000000000,
"price_min_before_discount": 279000000000,
"price_max_before_discount": 279000000000,
"hidden_price_display": null,
"price_before_discount": 279000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-53%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmiy-m7q7lp6v40fr45.16000081742799649.mp4",
"thumb_url": "id-11110105-6kmiy-m7q7lp6v40fr45_cover",
"duration": 14,
"version": 2,
"vid": "id-11110105-6kmiy-m7q7lp6v40fr45",
"formats": [
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmiy-m7q7lp6v40fr45.16003251743173309.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiy-m7q7lp6v40fr45.16003251743173309.mp4",
"width": 720,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmiy-m7q7lp6v40fr45.default.mp4",
"width": 540,
"height": 720
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "1",
"options": [
"1P Mini",
"1P Plus",
"๐ 1P Pro",
"1.5P Mini",
"1.5P Plus",
"๐ 1.5P Pro",
"Kipas Dingin-60L",
"AC mobile-1P Pro"
],
"images": [
"id-11134207-7rbkd-m7q7i0nbfaro84",
"id-11134207-7rbk4-m7q7i0nbgpc49b",
"id-11134207-7rbkb-m8a0wtuarnkh16",
"id-11134207-7rbk7-m7q7uxwq995u81",
"id-11134207-7rbke-m7q7uxwqanqa0a",
"id-11134207-7rbka-m7q7uxwqc2aq8c",
"id-11134207-7rbk4-m7q7uxwqevfmad",
"id-11134207-7rbk2-m7q7uxwqga0287"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.701754385964913,
"rating_count": [
57,
1,
2,
1,
5,
48
],
"rcount_with_context": 21,
"rcount_with_image": 16
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228232549122050,
"price": 129690000000,
"strikethrough_price": 279000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1282410030055424,
"discount_text": "-53%",
"model_id": 195913828271,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1282410030055424,
"voucher_code": "LENO51107",
"voucher_discount": 1310000000,
"time_info": {
"start_time": 1762334400,
"end_time": 1770448500,
"valid_duration": null
},
"groups": [],
"min_spend": 5900000000
},
"recommended_platform_voucher_info": null,
"original_price": 279000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 116,
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_display_sold_count": 116,
"display_sold_count_text": "116"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Lenodiย Officialย Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTg5LjIwMl97YjExYmEzYWY0ODU1N2RhZGZmMTc0Yzc1NGYwNzZkMDA6MDIwMDAwNjdlMGQ0NGZmYzowMTAwMDFiMWIwOTY5ZDM2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzQ0MjQ2ODM0OQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000,
91,
97
]
},
"itemid": 24093056086,
"shopid": 1309702607,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m9008tzw0wsx79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,700005490,1049120,1718093079,822059908662278,837860934119952,825465608499232,825465608497696,1015914,700190087,1400285055,298893311,700830032,298463379,298933384,298468389,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":303,\"model_id\":195913828271,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m9008tzw0wsx79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,700005490,1049120,1718093079,822059908662278,837860934119952,825465608499232,825465608497696,1015914,700190087,1400285055,298893311,700830032,298463379,298933384,298468389,1718088045],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":303,\"model_id\":195913828271,\"model_source\":0,\"price_source\":0,\"relevance_level\":1,\"ruleids\":[1000,1000,1000,91,97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24093056086",
"debug_info": null
},
{
"item_basic": {
"itemid": 42970111510,
"shopid": 1475963753,
"name": "Spul Kipas Angin China 16 Inc RRT Aluminium",
"label_ids": [
1428713,
1718087960,
844931064601283,
844931086908638,
2023641,
2018619,
298933384,
1400285055,
1059156,
700005579,
822059908662278,
825465608499232,
825465608497696,
1015914,
700190087,
1718093079,
2108629
],
"image": "id-11134207-8224r-mir6kwuy4ruw29",
"images": [
"id-11134207-8224r-mir6kwuy4ruw29",
"id-11134207-81ztp-mestb5e10iro8e",
"id-11134207-8224v-mitpildnyb5zd4",
"id-11134207-82251-mhkkmgtfyfwj48"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1758299580,
"sold": 11,
"historical_sold": 41,
"liked": false,
"liked_count": 12,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 21,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 4290000000,
"price_min": 4290000000,
"price_max": 4290000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Spul 16 in",
"options": [
"Spul tanpa kapasitor",
"Spul plus kapasitor",
"spul alcu+kapasitor"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.142857142857143,
"rating_count": [
21,
2,
0,
4,
2,
13
],
"rcount_with_context": 2,
"rcount_with_image": 4
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Blora",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 4290000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405371092255,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 4290000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 41,
"rounded_local_monthly_sold_count": 11,
"local_monthly_sold_count_text": "11",
"rounded_display_sold_count": 41,
"display_sold_count_text": "41"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Zaza online",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 42970111510,
"shopid": 1475963753,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mir6kwuy4ruw29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2023641,2018619,298933384,1400285055,1059156,700005579,822059908662278,825465608499232,825465608497696,1015914,700190087,1718093079,2108629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":212,\"model_id\":405371092255,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mir6kwuy4ruw29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,2023641,2018619,298933384,1400285055,1059156,700005579,822059908662278,825465608499232,825465608497696,1015914,700190087,1718093079,2108629],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":212,\"model_id\":405371092255,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42970111510",
"debug_info": null
},
{
"item_basic": {
"itemid": 6023384546,
"shopid": 218542238,
"name": "LAMPU LED STRIP SELANG 5050 SMD AC 220V METERAN (1M-100M) OUTDOOR AND INDOOR LAMPU PLAFON LAMPU HIAS",
"label_ids": [
1000167,
700085405,
1000375,
1000593,
1000630,
1000723,
1000902,
1001024,
35,
22,
1011751,
1015914,
700020158,
700020015,
1400085392,
1400066664,
700190087,
1049117,
1049116,
825249635454464,
822059908662278,
844931064601283,
1400285055,
1000669,
298458334,
997776091,
700440004,
700440005,
1668726,
825465608494624,
825465608497696,
825465608499232,
840955085144628,
840990690654214,
1000031,
1718087960,
1428713,
298458395,
1718093079,
834403089593352,
825465608493600,
1213641,
1993609,
1988623,
2018619,
2023641,
298893311,
298933384,
700830032,
844931086908638,
2048660,
2048661,
700765096,
700810080,
1718093084,
298458396
],
"image": "id-11134207-7rasd-m3z75m58bfyf98",
"images": [
"id-11134207-7rasd-m3z75m58bfyf98",
"958a04f37a119f4329004f54982c3ea9",
"id-11134207-7rasc-m3z75m58cuju8a",
"id-11134207-7rask-m3z75m58bfzed8",
"id-11134207-7r98z-lus4q05ncfbdd2",
"a745697801df8f1ef77a12de0a0e9acf",
"e445cc906e68a3d223cb0619defec7c6",
"id-11134207-7r98r-lusm9mimgvuc87",
"00042458120199dc7b69632a37d053d0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1585746087,
"sold": 30000,
"historical_sold": 2000000,
"liked": false,
"liked_count": 52834,
"view_count": null,
"catid": 100636,
"brand": "",
"cmt_count": 78520,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 279900000,
"price_min": 279900000,
"price_max": 279900000,
"price_min_before_discount": 825000000,
"price_max_before_discount": 825000000,
"hidden_price_display": null,
"price_before_discount": 825000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-66%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16000081714615296.mp4",
"thumb_url": "id-11110107-7r98y-lusmaqgq0qjf21",
"duration": 46,
"version": 2,
"vid": "id-11110107-6ke14-lusmao4defjoc0",
"formats": [
{
"format": 1600322,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003221714618584.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003221714618584.mp4",
"width": 360,
"height": 432
},
{
"format": 1600408,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004081714701748.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004081714701748.mp4",
"width": 360,
"height": 432
},
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006711723224729.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006711723224729.mp4",
"width": 540,
"height": 648
},
{
"format": 1600673,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006731724177784.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006731724177784.mp4",
"width": 540,
"height": 648
},
{
"format": 1600659,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006591723034164.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16006591723034164.mp4",
"width": 540,
"height": 648
},
{
"format": 1600409,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004091714701728.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004091714701728.mp4",
"width": 540,
"height": 648
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16000081714615296.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16000081714615296.mp4",
"width": 720,
"height": 864
},
{
"format": 1600324,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003241714618584.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003241714618584.mp4",
"width": 720,
"height": 864
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003251714618584.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16003251714618584.mp4",
"width": 720,
"height": 864
},
{
"format": 1600410,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004101714701748.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004101714701748.mp4",
"width": 720,
"height": 864
},
{
"format": 1600411,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004111714701748.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.16004111714701748.mp4",
"width": 720,
"height": 864
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke14-lusmao4defjoc0.default.mp4",
"width": 540,
"height": 648
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "WARNA",
"options": [
"PUTIH",
"WARM WHITE",
"BIRU",
"HIJAU",
"MERAH",
"PINK",
"UNGU",
"ICE BLUE",
"GOLD KUNING",
"SKET STRIP JEPIT EKO"
],
"images": [
"41bd2af6218ebf486c0da80ced95b3ca",
"id-11134207-7quky-lhubqx4akhuj69",
"5125e04efc2f247922e37cb36f079e97",
"69807cc4f529e5f1d0dd4be9ecb2fdcf",
"62d53a56b4855e87656b07960730aefd",
"7be89e10bd2abf8b569f8eb55ff99b87",
"39871e00a0c635adb15064303be2afe1",
"b04468518682a1c865f9b082d7eb58e6",
"id-11134207-7qula-lhubqx4alwezba",
"id-11134207-7r98p-lwo66gl073a397"
],
"properties": [],
"type": 0
},
{
"name": "UKURAN",
"options": [
"METERAN"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.459410016007317,
"rating_count": [
79326,
4540,
2080,
4584,
9073,
59049
],
"rcount_with_context": 17588,
"rcount_with_image": 12767
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-7rasd-m3z75m58bfyf98",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 705871038906368,
"price": 279900000,
"strikethrough_price": 825000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-66%",
"model_id": 15474464167,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 825000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2000000,
"rounded_local_monthly_sold_count": 30000,
"local_monthly_sold_count_text": "1RB+",
"rounded_display_sold_count": 2000000,
"display_sold_count_text": "10RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ANEKA.LISTRIK",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 6023384546,
"shopid": 218542238,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m3z75m58bfyf98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,700085405,1000375,1000593,1000630,1000723,1000902,1001024,35,22,1011751,1015914,700020158,700020015,1400085392,1400066664,700190087,1049117,1049116,825249635454464,822059908662278,844931064601283,1400285055,1000669,298458334,997776091,700440004,700440005,1668726,825465608494624,825465608497696,825465608499232,840955085144628,840990690654214,1000031,1718087960,1428713,298458395,1718093079,834403089593352,825465608493600,1213641,1993609,1988623,2018619,2023641,298893311,298933384,700830032,844931086908638,2048660,2048661,700765096,700810080,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":213,\"model_id\":15474464167,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasd-m3z75m58bfyf98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,700085405,1000375,1000593,1000630,1000723,1000902,1001024,35,22,1011751,1015914,700020158,700020015,1400085392,1400066664,700190087,1049117,1049116,825249635454464,822059908662278,844931064601283,1400285055,1000669,298458334,997776091,700440004,700440005,1668726,825465608494624,825465608497696,825465608499232,840955085144628,840990690654214,1000031,1718087960,1428713,298458395,1718093079,834403089593352,825465608493600,1213641,1993609,1988623,2018619,2023641,298893311,298933384,700830032,844931086908638,2048660,2048661,700765096,700810080,1718093084,298458396],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":213,\"model_id\":15474464167,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_6023384546",
"debug_info": null
},
{
"item_basic": {
"itemid": 24989855619,
"shopid": 857504,
"name": "Midea Tower Fan Air Cooler 4in1 MAC400R0APW 4L Ionizer Diffuser",
"label_ids": [
844931064601283,
1428713,
1718087960,
1400285055,
2018619,
2018618,
1015914,
700190087,
1012729,
298893311,
1119699,
298933384,
2153644,
1718093079,
2213652,
822059908662278,
825465608497696,
822120592853526,
825465608499232,
2048660,
2048661,
834403089593352,
700765096
],
"image": "id-11134207-7ra0p-mb7u5vycbz6h82",
"images": [
"id-11134207-7ra0p-mb7u5vycbz6h82",
"id-11134207-7rasf-m48klljqp67e1d",
"id-11134207-7rasc-m48klljgwlmybe",
"id-11134207-7rasd-m48klljqqkru27",
"id-11134207-7ras8-m48klljgy07e28",
"id-11134207-7rasb-m48klljqnrmyc0",
"id-11134207-7rasl-m48klljh0tcaf7",
"id-11134207-7rasd-m48klljgzeru80",
"id-11134207-7rasl-m48klljqrzca3a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1735194852,
"sold": 26,
"historical_sold": 234,
"liked": false,
"liked_count": 1352,
"view_count": null,
"catid": 100636,
"brand": "Midea",
"cmt_count": 96,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 107900000000,
"price_min": 107900000000,
"price_max": 107900000000,
"price_min_before_discount": 198800000000,
"price_max_before_discount": 198800000000,
"hidden_price_display": null,
"price_before_discount": 198800000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-46%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1a-m48kxy6xxsqi63.16000081735194734.mp4",
"thumb_url": "id-11110105-6ke1a-m48kxy6xxsqi63_cover",
"duration": 35,
"version": 2,
"vid": "id-11110105-6ke1a-m48kxy6xxsqi63",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1a-m48kxy6xxsqi63.16000081735194734.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m48kxy6xxsqi63.16000081735194734.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1a-m48kxy6xxsqi63.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.90625,
"rating_count": [
96,
0,
0,
2,
5,
89
],
"rcount_with_context": 29,
"rcount_with_image": 27
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 756984974999552,
"price": 107900000000,
"strikethrough_price": 198800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-46%",
"model_id": 129191104131,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 198800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 234,
"rounded_local_monthly_sold_count": 26,
"local_monthly_sold_count_text": "26",
"rounded_display_sold_count": 234,
"display_sold_count_text": "234"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "BESTBRO ELEKTRONIK Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
91
]
},
"itemid": 24989855619,
"shopid": 857504,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mb7u5vycbz6h82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1428713,1718087960,1400285055,2018619,2018618,1015914,700190087,1012729,298893311,1119699,298933384,2153644,1718093079,2213652,822059908662278,825465608497696,822120592853526,825465608499232,2048660,2048661,834403089593352,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":214,\"model_id\":129191104131,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mb7u5vycbz6h82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1428713,1718087960,1400285055,2018619,2018618,1015914,700190087,1012729,298893311,1119699,298933384,2153644,1718093079,2213652,822059908662278,825465608497696,822120592853526,825465608499232,2048660,2048661,834403089593352,700765096],\"matched_keywords\":[\"ac window\"],\"merge_rank\":214,\"model_id\":129191104131,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[91],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24989855619",
"debug_info": null
},
{
"item_basic": {
"itemid": 3451861239,
"shopid": 169828364,
"name": "SAKLAR I & O AC KCD101 2PIN ROCKER SWITCH HITAM",
"label_ids": [
1000167,
1011751,
700020158,
1059152,
700005489,
822059908662278,
844931064601283,
844931086908638,
1400285055,
1213641,
298458334,
825465608497696,
825465608499232,
840955085144628,
840990690654214,
1000031,
298458395,
1119699,
1718093079,
1718087960,
1428713,
2018619,
2023641,
1015914,
700190087,
298893311,
298463379,
834403089593352,
700830033,
2048661,
2048660,
1718088044,
1718093084,
298458396,
1718088045,
298458398,
298468389,
298468390
],
"image": "9dbdcbcd74cce51e378a799277e45583",
"images": [
"9dbdcbcd74cce51e378a799277e45583",
"859871bbb7d59378b428578c1cb03d2b",
"f88e69b91d50df7878e72a8884d82286",
"3c79f6ac8e4eedda4b860864a89cfb62"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1599724845,
"sold": 972,
"historical_sold": 5000,
"liked": false,
"liked_count": 27,
"view_count": null,
"catid": 100636,
"brand": "Tidak Ada Merek",
"cmt_count": 258,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 139900000,
"price_min": 139900000,
"price_max": 139900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.926356589147287,
"rating_count": [
258,
0,
1,
2,
12,
243
],
"rcount_with_context": 28,
"rcount_with_image": 20
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": true,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 139900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 21862528239,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 139900000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 5000,
"rounded_local_monthly_sold_count": 972,
"local_monthly_sold_count_text": "972",
"rounded_display_sold_count": 5000,
"display_sold_count_text": "5RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "cahaya psf",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 3451861239,
"shopid": 169828364,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"9dbdcbcd74cce51e378a799277e45583\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1011751,700020158,1059152,700005489,822059908662278,844931064601283,844931086908638,1400285055,1213641,298458334,825465608497696,825465608499232,840955085144628,840990690654214,1000031,298458395,1119699,1718093079,1718087960,1428713,2018619,2023641,1015914,700190087,298893311,298463379,834403089593352,700830033,2048661,2048660,1718088044,1718093084,298458396,1718088045,298458398,298468389,298468390],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":215,\"model_id\":21862528239,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"9dbdcbcd74cce51e378a799277e45583\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1011751,700020158,1059152,700005489,822059908662278,844931064601283,844931086908638,1400285055,1213641,298458334,825465608497696,825465608499232,840955085144628,840990690654214,1000031,298458395,1119699,1718093079,1718087960,1428713,2018619,2023641,1015914,700190087,298893311,298463379,834403089593352,700830033,2048661,2048660,1718088044,1718093084,298458396,1718088045,298458398,298468389,298468390],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":215,\"model_id\":21862528239,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_3451861239",
"debug_info": null
},
{
"item_basic": {
"itemid": 12544508345,
"shopid": 111134903,
"name": "BEST SELLER!! Mesin Oven Pengering Cengkeh Kunyit Jahe - Oven Pengering serbaguna Tipe Gas",
"label_ids": [
1049116,
700005516,
822059908662278,
1400285055,
1015914,
700190087,
825465608497696,
825465608499232,
1718093079,
840990690654214,
837860934119952,
840955085144628,
1918643,
2018619,
2023641,
700700063,
1428713,
1718087960,
298893311,
298463379,
700830032,
298933384,
2068629,
298938357,
2098629,
1718088045,
2098628,
298468389,
298938368
],
"image": "id-11134207-7rasl-m13ydggz0pdc1a",
"images": [
"id-11134207-7rasl-m13ydggz0pdc1a",
"id-11134207-7rase-m2c7m2mud84i8a",
"id-11134207-7rasb-m2j600kl2s8250",
"id-11134207-7rasd-m2azlr2f63xe74",
"id-11134207-7rasl-m2azssvlh4jy36",
"id-11134207-7rasd-m2qevewyssdc7b",
"id-11134207-7rasf-m2azlr2f7ihuee",
"id-11134207-7rasb-m2c7m2muaezm0a",
"id-11134207-7rasf-m2c7m2mubtk2a1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1636168077,
"sold": 5,
"historical_sold": 89,
"liked": false,
"liked_count": 1620,
"view_count": null,
"catid": 100010,
"brand": "Ranger",
"cmt_count": 37,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 999000000000,
"price_min": 999000000000,
"price_max": 999000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmj0-m5031n2vswczf0.16000031736859607.mp4",
"thumb_url": "id-11110105-6kmj0-m5031n2vswczf0_cover",
"duration": 37,
"version": 2,
"vid": "id-11110105-6kmj0-m5031n2vswczf0",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj0-m5031n2vswczf0.default.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5031n2vswczf0.default.mp4",
"width": 480,
"height": 854
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5031n2vswczf0.default.mp4",
"width": 480,
"height": 854
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "OVEN PENGERING",
"options": [
"Oven 10 Rak+Lampu Uv",
"Oven 20 Rak+Lampu Uv",
"5 RAK 1 PINTU GAS",
"5 RAK 2 PINTU GAS",
"10 RAK 1 PINTU GAS",
"10 RAK 2 PINTU GAS",
"20 RAK GAS",
"40 RAK GAS",
"5 RAK 1PNTU LISTRIK",
"5 RAK 2PNTU LISTRIK",
"10 RAK 1PNTU LISTRIK",
"10 RAK 2PNTU LISTRIK",
"20 RAK LISTRIK",
"Oven Custom"
],
"images": [
"id-11134207-7r98q-lwqtzwttenu2cc",
"id-11134207-7r98w-lwqtzwttg2eidc",
"id-11134207-7qul2-lff3zjwkffgj4c",
"id-11134207-7qul9-lff3zjwkgu0zeb",
"id-11134207-7qula-lff3zjwki8lf7b",
"id-11134207-7qukw-lff3zjwkjn5v6b",
"id-11134207-7qul4-lff3zjwkl1qbc0",
"id-11134207-7qukx-lff3zjwkmgarf1",
"id-11134207-7qul1-lff3zjwknuv75b",
"id-11134207-7qukw-lff3zjwkp9fnc1",
"id-11134207-7qul4-lff3zjwkqo03b7",
"id-11134207-7qul6-lff3zjwks2kj6d",
"id-11134207-7qul9-lff3zjwkth4zc6",
"id-11134207-7ras8-m3k41olu6z8u23"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
37,
0,
0,
0,
0,
37
],
"rcount_with_context": 14,
"rcount_with_image": 12
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Sidoarjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp3,3JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 999000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 187596122202,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 999000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 89,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 89,
"display_sold_count_text": "89"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp3,3JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Raja Pengering",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 372668487,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyjQ2EY3gIuY2EEFN79ZhaAGQxtxbE1bJPV9aErpuEhn7TUn/yCthHhX1gmtykRBu6/mL64F/6CzV6NQX3RZIiD0i2aji0rCb3r6X0OfT5QKhImQCXULA68Bo4sN6HGdSZ8Xf4qm2M+n3AJEZESRz+mzlpN7QNF4pHmedLB34wn6/V0IHEzwB5L64HO02uq3MaBad5xQfXo3+pbnoubqmyuBQKAqMRHlVM13h1xbWoJH6K/8fNbo5NqLpNqeon9vbeAmmBZ6qCr356dAofdp9rwGZk7N/KW7dda3iKhDTgaKvYALb6Uh6miEeEzav5vrX+orQCS5DHOBSh061kgMy9IDOxzwJftYTWDeUszAb18mEYKNnjTfRKnL1IEQFW+VyK4Pi6ub+wHO37UOn1DbPTyiD9cnxbNJRy4w28M/Epcwwq2HtzwCFw8eCSC2NY31LnAqqfSsiIozogjP6/34FcRg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8EMfw2bEBGIWW/Y4BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeWpRMkVZM2dJdVkyRUVGTjc5WmhhQUdReHR4YkUxYkpQVjlhRXJwdUVobjdUVW4veUN0aEhoWDFnbXR5a1JCdTYvbUw2NEYvNkN6VjZOUVgzUlpJaUQwaTJhamkwckNiM3I2WDBPZlQ1UUtoSW1RQ1hVTEE2OEJvNHNONkhHZFNaOFhmNHFtMk0rbjNBSkVaRVNSeittemxwTjdRTkY0cEhtZWRMQjM0d242L1YwSUhFendCNUw2NEhPMDJ1cTNNYUJhZDV4UWZYbzMrcGJub3VicW15dUJRS0FxTVJIbFZNMTNoMXhiV29KSDZLLzhmTmJvNU5xTHBOcWVvbjl2YmVBbW1CWjZxQ3IzNTZkQW9mZHA5cndHWms3Ti9LVzdkZGEzaUtoRFRnYUt2WUFMYjZVaDZtaUVlRXphdjV2clgrb3JRQ1M1REhPQlNoMDYxa2dNeTlJRE94endKZnRZVFdEZVVzekFiMThtRVlLTm5qVGZSS25MMUlFUUZXK1Z5SzRQaTZ1Yit3SE8zN1VPbjFEYlBUeWlEOWNueGJOSlJ5NHcyOE0vRXBjd3dxMkh0endDRnc4ZUNTQzJOWTMxTG5BcXFmU3NpSW96b2dqUDYvMzRGY1JnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywa4AQHgAa7WxrTlNekBAAAA4JUl8T/xAQAAAKAY4e8/yAwP4AwB6QwAAACgJEnCP4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgICoyIkdsA76zMqyC+IOCaqNBsmNBumOBsgPBeIZ6AlFbGN3TGpNc0xURXNMVEVzTFRFc0xURXNNQzR6TERFc09TNDJOams1TVRVNE1qSTJORFF6TVN3dE1Td3RNU3d3TGpreE1UUTJOelEwTURFMU5ESTNNakVzTFRFc01TNDJNVFV3Tmprek16VTVPRFEyTVRNc0xURWRGeENlVENEUHMrMExMWnFabVQ0MUFBQ0FQMG9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNEk4UGZoQkJFQUFBQUFBQUFBQUVvT0NLcnpsZ01SQUFBQUFBQUFBQUJLRGdpczg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBRm9KQ0lDQWdJQ0FCQkFBV2djSThQZmhCQkFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SThQZmhCQkVBQUFBQUFBQUFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUhFQUFBQWc1K3NEUDNrQUFBQkFsd25yUG9FQkFBQUF3RVpJZzBHSkFRQUFBQUN1bzNaQmtRRUFBQURBSFpxT1Faa0JBQUFBSVBrSGlrR2hBUUFBQU9BcWtINUJxUUVBQUFCSUI2aVVRZWdCQVlBQ2xBT0tBajR3TGpBd01qY3pNQ3d4TGpBd01EQXdNQ3d4TGpBd01EQXdNQ3d4TGpJMU1EQXdNQ3d4TGpNd01EQXdNQ3d4TGpRd01EQXdNQ3d4TGpRNU5qRTVOSmtDTXpNek16TXoweitoQXEzdk5IakNTY0ZCeWdJTENBSVIrNm54MGsxaWNML0tBZ3NJQVJFOFdDZk1heEZtdjlrQ3dBZ2s2eFA4WVVIaEFnREVRemN4RUZ4QjZRSW8vd0lNWGJlaFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRFloMTVQZU53NGovQkE2M0tDNWZPbnVRL3lRTnQ4b3BWZFlMblA5RURVNWJLUisvcDdUK0JCQUFBQUdDU1d2OCtpUVFBQUFDZ3JYNzVQcEFFbXdPWUJML3B1cUNzQWFBRWdKamNrelNvQklDWTNKTTB3QVNBbU55VE5Na0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUJBejExbVA2RUZBQUFBQUFBQThEK3BCUUFBQUFBQUFQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQkFhZkQzUHc9PeoZAgoU+hmMBgoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8xMjU0NDUwODM0NQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAACg0KB2lzX3Zza3USAigACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjY0LCJhcGkxX2xhdGVuY3lfbXMiOjQ2LCJhcGkyX2xhdGVuY3lfbXMiOjU3LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzAsImFwaTBfYWRzX2NvdW50IjoyODEsImFwaTFfYWRzX2NvdW50IjoxNTQ5LCJhcGkyX2Fkc19jb3VudCI6MzE2LCJhcGkzX2Fkc19jb3VudCI6M30KFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZ7Afz4KAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNIyD4B",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
97
]
},
"itemid": 12544508345,
"shopid": 111134903,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m13ydggz0pdc1a\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1049116,700005516,822059908662278,1400285055,1015914,700190087,825465608497696,825465608499232,1718093079,840990690654214,837860934119952,840955085144628,1918643,2018619,2023641,700700063,1428713,1718087960,298893311,298463379,700830032,298933384,2068629,298938357,2098629,1718088045,2098628,298468389,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":216,\"model_id\":187596122202,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasl-m13ydggz0pdc1a\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[1049116,700005516,822059908662278,1400285055,1015914,700190087,825465608497696,825465608499232,1718093079,840990690654214,837860934119952,840955085144628,1918643,2018619,2023641,700700063,1428713,1718087960,298893311,298463379,700830032,298933384,2068629,298938357,2098629,1718088045,2098628,298468389,298938368],\"matched_keywords\":[\"ac window\"],\"merge_rank\":216,\"model_id\":187596122202,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[97],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8EMfw2bEBGIWW/Y4BMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeWpRMkVZM2dJdVkyRUVGTjc5WmhhQUdReHR4YkUxYkpQVjlhRXJwdUVobjdUVW4veUN0aEhoWDFnbXR5a1JCdTYvbUw2NEYvNkN6VjZOUVgzUlpJaUQwaTJhamkwckNiM3I2WDBPZlQ1UUtoSW1RQ1hVTEE2OEJvNHNONkhHZFNaOFhmNHFtMk0rbjNBSkVaRVNSeittemxwTjdRTkY0cEhtZWRMQjM0d242L1YwSUhFendCNUw2NEhPMDJ1cTNNYUJhZDV4UWZYbzMrcGJub3VicW15dUJRS0FxTVJIbFZNMTNoMXhiV29KSDZLLzhmTmJvNU5xTHBOcWVvbjl2YmVBbW1CWjZxQ3IzNTZkQW9mZHA5cndHWms3Ti9LVzdkZGEzaUtoRFRnYUt2WUFMYjZVaDZtaUVlRXphdjV2clgrb3JRQ1M1REhPQlNoMDYxa2dNeTlJRE94endKZnRZVFdEZVVzekFiMThtRVlLTm5qVGZSS25MMUlFUUZXK1Z5SzRQaTZ1Yit3SE8zN1VPbjFEYlBUeWlEOWNueGJOSlJ5NHcyOE0vRXBjd3dxMkh0endDRnc4ZUNTQzJOWTMxTG5BcXFmU3NpSW96b2dqUDYvMzRGY1JnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywa4AQHgAa7WxrTlNekBAAAA4JUl8T/xAQAAAKAY4e8/yAwP4AwB6QwAAACgJEnCP4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgICoyIkdsA76zMqyC+IOCaqNBsmNBumOBsgPBeIZ6AlFbGN3TGpNc0xURXNMVEVzTFRFc0xURXNNQzR6TERFc09TNDJOams1TVRVNE1qSTJORFF6TVN3dE1Td3RNU3d3TGpreE1UUTJOelEwTURFMU5ESTNNakVzTFRFc01TNDJNVFV3Tmprek16VTVPRFEyTVRNc0xURWRGeENlVENEUHMrMExMWnFabVQ0MUFBQ0FQMG9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVNoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVNnNEk4UGZoQkJFQUFBQUFBQUFBQUVvT0NLcnpsZ01SQUFBQUFBQUFBQUJLRGdpczg1WURFUUFBQUFBQUFBQUFVaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFVZzRJOFBmaEJCRUFBQUFBQUFBQUFGSU9DS3J6bGdNUkFBQUFBQUFBQUFCU0RnaXM4NVlERVFBQUFBQUFBQUFBVWc0SXEvT1dBeEVBQUFBQUFBQUFBRm9IQ0tyemxnTVFBRm9IQ0t6emxnTVFBRm9IQ0t2emxnTVFBRm9KQ0lDQWdJQ0FCQkFBV2djSThQZmhCQkFBWWhBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBWWc0SThQZmhCQkVBQUFBQUFBQUFBR0lPQ0tyemxnTVJBQUFBQUFBQThEOWlEZ2lzODVZREVRQUFBQUFBQUFBQVlnNElxL09XQXhFQUFBQUFBQUFBQUhFQUFBQWc1K3NEUDNrQUFBQkFsd25yUG9FQkFBQUF3RVpJZzBHSkFRQUFBQUN1bzNaQmtRRUFBQURBSFpxT1Faa0JBQUFBSVBrSGlrR2hBUUFBQU9BcWtINUJxUUVBQUFCSUI2aVVRZWdCQVlBQ2xBT0tBajR3TGpBd01qY3pNQ3d4TGpBd01EQXdNQ3d4TGpBd01EQXdNQ3d4TGpJMU1EQXdNQ3d4TGpNd01EQXdNQ3d4TGpRd01EQXdNQ3d4TGpRNU5qRTVOSmtDTXpNek16TXoweitoQXEzdk5IakNTY0ZCeWdJTENBSVIrNm54MGsxaWNML0tBZ3NJQVJFOFdDZk1heEZtdjlrQ3dBZ2s2eFA4WVVIaEFnREVRemN4RUZ4QjZRSW8vd0lNWGJlaFFZb0RNQUFBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UDdrRFloMTVQZU53NGovQkE2M0tDNWZPbnVRL3lRTnQ4b3BWZFlMblA5RURVNWJLUisvcDdUK0JCQUFBQUdDU1d2OCtpUVFBQUFDZ3JYNzVQcEFFbXdPWUJML3B1cUNzQWFBRWdKamNrelNvQklDWTNKTTB3QVNBbU55VE5Na0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUJBejExbVA2RUZBQUFBQUFBQThEK3BCUUFBQUFBQUFQQS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQkFhZkQzUHc9PeoZAgoU+hmMBgoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF8xMjU0NDUwODM0NQoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQoWChB1c2VyX3Byb2ZpbGVfdGFnEgIYAAoSCgx2b3VjaGVyX2xlbnMSAhAACg0KB2lzX3Zza3USAigACioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKaAobdW5pX3Bjcl9jYXNjYWRlX21vZGVsX25hbWVzEkkiR2dwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWR8Z3B1X3BjdHJfdXBsaWZ0X2dsdV9pZF90NHxncHVfdXBsaWZ0X2NyX2lkCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjY0LCJhcGkxX2xhdGVuY3lfbXMiOjQ2LCJhcGkyX2xhdGVuY3lfbXMiOjU3LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzAsImFwaTBfYWRzX2NvdW50IjoyODEsImFwaTFfYWRzX2NvdW50IjoxNTQ5LCJhcGkyX2Fkc19jb3VudCI6MzE2LCJhcGkzX2Fkc19jb3VudCI6M30KFAoOc2hvcF9ibGFja2xpc3QSAigAChQKDnVzZXJfYmxhY2tsaXN0EgIoAAoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAokChdjcG1fYWRzX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZ7Afz4KAgIiAgaigAcgfCcIlHGdwdV9wZ212X3Byb2Jfc2lyX3YzX3Byb21faWTJJa3vNHjCScFB8iUGU0VBUkNIyD4B",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_12544508345",
"debug_info": null
},
{
"item_basic": {
"itemid": 27624241100,
"shopid": 1309702607,
"name": "LENODI 220v/2000w AC Portable AC mini portabel pemanas Dan Pendingin Fungsi Ganda Multifungsi Dipasang Di Dinding Kamar Tidur",
"label_ids": [
1718087960,
1428713,
844931064601283,
1718093079,
1015914,
700190087,
1400285055,
2018619,
2023641,
298893311,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
700830032,
298463379,
298933384,
844931086908638,
1718088045,
298468389
],
"image": "id-11134207-7rbkb-m734qap4wuctf3",
"images": [
"id-11134207-7rbkb-m734qap4wuctf3",
"id-11134207-7rbk3-m65a69zsciy0c8",
"id-11134207-7rbke-m65a69zs43jc96",
"id-11134207-7rbke-m65a69zsfc2wa3",
"id-11134207-7rbkc-m65a69zs5i3saf",
"id-11134207-7rbk7-m65a69zs9pt465",
"id-11134207-7rbkd-m65a69zs8b8odf",
"id-11134207-7rbk0-m65a69zs6wo857"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1737538459,
"sold": 109,
"historical_sold": 639,
"liked": false,
"liked_count": 3192,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 232,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 37900000000,
"price_min": 37900000000,
"price_max": 37900000000,
"price_min_before_discount": 85800000000,
"price_max_before_discount": 85800000000,
"hidden_price_display": null,
"price_before_discount": 85800000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-56%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
"thumb_url": "id-11110105-6kmj0-m5bacn2x25t4b3_cover",
"duration": 13,
"version": 2,
"vid": "id-11110105-6kmj0-m5bacn2x25t4b3",
"formats": [
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16006711750511752.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16006711750511752.mp4",
"width": 540,
"height": 540
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16000081737537767.mp4",
"width": 720,
"height": 720
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16003251750511752.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.16003251750511752.mp4",
"width": 720,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj0-m5bacn2x25t4b3.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "warna",
"options": [
"Putih",
"Pola"
],
"images": [
"id-11134207-7rash-m5babz9jy7s8fa",
"id-11134207-7rasd-m5babz9jzmcofd"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 3.8060344827586206,
"rating_count": [
232,
38,
12,
30,
29,
123
],
"rcount_with_context": 69,
"rcount_with_image": 39
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228232549122050,
"price": 37521000000,
"strikethrough_price": 85800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1282410030055424,
"discount_text": "-56%",
"model_id": 215742854802,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1282410030055424,
"voucher_code": "LENO51107",
"voucher_discount": 379000000,
"time_info": {
"start_time": 1762334400,
"end_time": 1770448500,
"valid_duration": null
},
"groups": [],
"min_spend": 5900000000
},
"recommended_platform_voucher_info": null,
"original_price": 85800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 639,
"rounded_local_monthly_sold_count": 109,
"local_monthly_sold_count_text": "109",
"rounded_display_sold_count": 639,
"display_sold_count_text": "639"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Lenodiย Officialย Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 27624241100,
"shopid": 1309702607,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m734qap4wuctf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1718093079,1015914,700190087,1400285055,2018619,2023641,298893311,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298463379,298933384,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":217,\"model_id\":215742854802,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbkb-m734qap4wuctf3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1718093079,1015914,700190087,1400285055,2018619,2023641,298893311,700005490,1049120,822059908662278,825465608499232,825465608497696,837860934119952,700830032,298463379,298933384,844931086908638,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\"],\"merge_rank\":217,\"model_id\":215742854802,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27624241100",
"debug_info": null
},
{
"item_basic": {
"itemid": 54453101518,
"shopid": 1529335719,
"name": "Thermistor Thermostat Mobil Presisi Tinggi 12V/24V dengan Kontrol Elektronik - Hemat Energi, Kompresor AC Nyala Mati Otomatis Switch 10A Stabil untuk Perbaikan Setting Ulang Suhu AC Mobil Lama agar Dingin Optimal Irit",
"label_ids": [
844931086908638,
844931064601283,
298463379,
1059152,
1049122,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1718596,
1119699,
298488495,
2018619,
298933384,
2023641,
700700063,
1428713,
1718087960,
998236004,
2213765,
1718088045,
298468389
],
"image": "id-11134207-8224u-mi9xxwwltk3q6d",
"images": [
"id-11134207-8224u-mi9xxwwltk3q6d",
"sg-11134201-822zq-mi9w0f3fuj9ded",
"sg-11134201-822x4-mi9w0eva1ddw4f",
"sg-11134201-822zz-mi9w0firnaipe3",
"sg-11134201-822yo-mi9w0fbn3kzme7",
"sg-11134201-822zj-mi9w0fp4esjn27",
"sg-11134201-822xh-mi9w0fwymrr5e7",
"sg-11134201-822yo-mi9w0gaivabq72",
"sg-11134201-822z8-mi9w0g3adr0mbf"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765784272,
"sold": 8,
"historical_sold": 8,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100640,
"brand": "",
"cmt_count": 5,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 7000000000,
"price_min": 7000000000,
"price_max": 7000000000,
"price_min_before_discount": 14000000000,
"price_max_before_discount": 14000000000,
"hidden_price_display": null,
"price_before_discount": 14000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-50%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110106/mms/sg-11110106-6v9af-mi9wmo6yhxxkab.16000081765784283.mp4",
"thumb_url": "sg-11110106-6v9af-mi9wmo6yhxxkab_cover",
"duration": 16,
"version": 2,
"vid": "sg-11110106-6v9af-mi9wmo6yhxxkab",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110106/mms/sg-11110106-6v9af-mi9wmo6yhxxkab.16000081765784283.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9af-mi9wmo6yhxxkab.16000081765784283.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6v9af-mi9wmo6yhxxkab.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "model",
"options": [
"12V",
"24V"
],
"images": [
"sg-11134201-822x6-mi9w06i17ociba",
"sg-11134201-822x7-mi9w06rsvwucc4"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 414782239027344,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 823968068599808,
"price": 7000000000,
"strikethrough_price": 14000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-50%",
"model_id": 350299496928,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 14000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 8,
"rounded_local_monthly_sold_count": 8,
"local_monthly_sold_count_text": "8",
"rounded_display_sold_count": 8,
"display_sold_count_text": "8"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Batik Mall",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 54453101518,
"shopid": 1529335719,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi9xxwwltk3q6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1718596,1119699,298488495,2018619,298933384,2023641,700700063,1428713,1718087960,998236004,2213765,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":218,\"model_id\":350299496928,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi9xxwwltk3q6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1718596,1119699,298488495,2018619,298933384,2023641,700700063,1428713,1718087960,998236004,2213765,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":218,\"model_id\":350299496928,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54453101518",
"debug_info": null
},
{
"item_basic": {
"itemid": 27178744357,
"shopid": 1250117803,
"name": "Transformer Regulator Charger 220V To 110V/110V To 220V Adaptor International Travel AC Power Voltage Converter 50watt",
"label_ids": [
1718087960,
1428713,
844931086908638,
844931064601283,
1718093079,
1119699,
2018619,
2023641,
298463379,
700005512,
1049112,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
837860934119952,
700830032,
298933384,
1400285055,
1015914,
700190087,
298468389,
1718088045
],
"image": "id-11134207-7rbk2-m71wqo66vgccd4",
"images": [
"id-11134207-7rbk2-m71wqo66vgccd4",
"id-11134207-7rbk1-m71wqo679i0s92",
"id-11134207-7rbk0-m71wqo66wuws4c",
"id-11134207-7rbk8-m71wqo66y9h8c7",
"id-11134207-7rbk2-m71wqo66zo1o26",
"id-11134207-7rbk3-m71wqo6712m49d",
"id-11134207-7rbk5-m71wqo672h6k3a",
"id-11134207-7rbk9-m71wqo673vr016",
"id-11134207-7rbkd-m71wqo675abg7d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1741329951,
"sold": 32,
"historical_sold": 84,
"liked": false,
"liked_count": 11,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 17,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 4550000000,
"price_min": 4550000000,
"price_max": 4550000000,
"price_min_before_discount": 9000000000,
"price_max_before_discount": 9000000000,
"hidden_price_display": null,
"price_before_discount": 9000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-49%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kmj4-m71wqxaziav040.16000081741328564.mp4",
"thumb_url": "id-11110105-6kmj4-m71wqxaziav040_cover",
"duration": 33,
"version": 2,
"vid": "id-11110105-6kmj4-m71wqxaziav040",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kmj4-m71wqxaziav040.16000081741328564.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj4-m71wqxaziav040.16000081741328564.mp4",
"width": 720,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kmj4-m71wqxaziav040.default.mp4",
"width": 540,
"height": 720
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "model",
"options": [
"110to220V",
"220to110V"
],
"images": [
"id-11134207-7rbk1-m71wyxgacigsfb",
"id-11134207-7rbk3-m71wyxgadx18b8"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.9411764705882355,
"rating_count": [
17,
0,
0,
0,
1,
16
],
"rcount_with_context": 2,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 402767386788203,
"bundle_deal_label": "Pilih 3, diskon 2%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 731802583498752,
"price": 4550000000,
"strikethrough_price": 9000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-49%",
"model_id": 237474750776,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 9000000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 84,
"rounded_local_monthly_sold_count": 32,
"local_monthly_sold_count_text": "32",
"rounded_display_sold_count": 84,
"display_sold_count_text": "84"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GemilangGoods",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 27178744357,
"shopid": 1250117803,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk2-m71wqo66vgccd4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,2018619,2023641,298463379,700005512,1049112,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,700830032,298933384,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":219,\"model_id\":237474750776,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk2-m71wqo66vgccd4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931086908638,844931064601283,1718093079,1119699,2018619,2023641,298463379,700005512,1049112,822059908662278,825465608494624,825465608499232,825465608497696,837860934119952,700830032,298933384,1400285055,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":219,\"model_id\":237474750776,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27178744357",
"debug_info": null
},
{
"item_basic": {
"itemid": 26718371829,
"shopid": 1409981286,
"name": "Morgen Saklar IB C Series Tanam SK Arde, Engkel, Seri, AC, NPC, Socket AC TV",
"label_ids": [
844931064601283,
1049112,
700005512,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
825465608493600,
1718087960,
1428713,
1000031,
1400285055,
1718093079,
1015914,
700190087,
825465608492064,
1213641,
2018619,
2023641,
298893311,
298463379,
844931086908638,
700830032,
2048660,
2048661,
298933384,
700765096,
700810080,
1718088044,
298458396,
298468389,
298468390,
298458398,
1718093084,
1718088045
],
"image": "sg-11134201-7reoe-m2vyersbmf0p30",
"images": [
"sg-11134201-7reoe-m2vyersbmf0p30",
"sg-11134201-7ren7-m2vyeryzcotj72",
"sg-11134201-7rep9-m2vyes4t45uvbb",
"sg-11134201-7reoo-m2vyesdor65d4e",
"sg-11134201-7renz-m2vyesjsi8ivca",
"sg-11134201-7renv-m2vyess47gm94b",
"sg-11134201-7reps-m2vyesxxxipy49",
"sg-11134201-7repu-m2vyet4lnrm120"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1732251193,
"sold": 297,
"historical_sold": 1000,
"liked": false,
"liked_count": 28,
"view_count": null,
"catid": 100010,
"brand": "Morgen",
"cmt_count": 110,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 2014200000,
"price_min": 2014200000,
"price_max": 2014200000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"MG-8880",
"MG-8881",
"MG-8882",
"MG-8883",
"MG-8884",
"MG-8885",
"MG-8886",
"MG-8887",
"MG-8889-A",
"INBOW PUTIH VISERO"
],
"images": [
"sg-11134201-7reou-m2vyeteva5kd4b",
"sg-11134201-7reoq-m2vyetmmxe4p9c",
"sg-11134201-7reoe-m2vyetsgov0b11",
"sg-11134201-7reol-m2vyetykfxfqdd",
"sg-11134201-7repo-m2vyeu4e8t17c8",
"sg-11134201-7renu-m2vyeuc5w0p556",
"sg-11134201-7repf-m2vyeuhppax53f",
"sg-11134201-7repg-m2vyeup7cych09",
"sg-11134201-7ren6-m2vyev9gjba9e4",
"id-11134207-7ra0h-mbg3tad3b4ibf2"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.9363636363636365,
"rating_count": [
110,
0,
0,
1,
5,
104
],
"rcount_with_context": 11,
"rcount_with_image": 12
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 2014200000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 185576697321,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 2014200000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 297,
"local_monthly_sold_count_text": "297",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Worldwideย Lighting",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 26718371829,
"shopid": 1409981286,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7reoe-m2vyersbmf0p30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608499232,825465608497696,837860934119952,825465608493600,1718087960,1428713,1000031,1400285055,1718093079,1015914,700190087,825465608492064,1213641,2018619,2023641,298893311,298463379,844931086908638,700830032,2048660,2048661,298933384,700765096,700810080,1718088044,298458396,298468389,298468390,298458398,1718093084,1718088045],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":220,\"model_id\":185576697321,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-7reoe-m2vyersbmf0p30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700005512,822059908662278,825465608499232,825465608497696,837860934119952,825465608493600,1718087960,1428713,1000031,1400285055,1718093079,1015914,700190087,825465608492064,1213641,2018619,2023641,298893311,298463379,844931086908638,700830032,2048660,2048661,298933384,700765096,700810080,1718088044,298458396,298468389,298468390,298458398,1718093084,1718088045],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":220,\"model_id\":185576697321,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26718371829",
"debug_info": null
},
{
"item_basic": {
"itemid": 24291742131,
"shopid": 1023510819,
"name": "E.Home AC 1/2 PK AC WINDOW PORTABLEPAKAI FREON R290",
"label_ids": [
844931064601283,
844931086908638,
1718093079,
1400066568,
1400285055,
2018619,
1015914,
700190087,
298893311,
1049120,
700005490,
822059908662278,
825465608499232,
825465608497696,
837860934119952,
2023641,
298463379,
298468389,
1718088045
],
"image": "id-11134207-7rbk4-m6nq8kbhpctw72",
"images": [
"id-11134207-7rbk4-m6nq8kbhpctw72",
"id-11134207-7ra0u-mdb7fokng4rra8",
"id-11134207-7ra0o-mdb7foknhjc746",
"id-11134207-7ra0t-mdb7foknixwna6",
"id-11134207-7ra0i-mdb7foknkch358",
"id-11134207-7ra0m-mdb7foknlr1j3a",
"id-11134207-7ra0h-mdb7foknn5lz1c",
"id-11134207-7ra0l-mdb7foknok6f2f",
"id-11134207-7ra0r-mdb7foknpyqv54"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1740207617,
"sold": 5,
"historical_sold": 80,
"liked": false,
"liked_count": 439,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 38,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 198400000000,
"price_min": 198400000000,
"price_max": 198400000000,
"price_min_before_discount": 338000000000,
"price_max_before_discount": 338000000000,
"hidden_price_display": null,
"price_before_discount": 338000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-41%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6knav-m9r0ztgefzsy6d.16000101747207548.mp4",
"thumb_url": "id-11110105-6knav-m9r0ztgefzsy6d_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6knav-m9r0ztgefzsy6d",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6knav-m9r0ztgefzsy6d.default.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knav-m9r0ztgefzsy6d.default.mp4",
"width": 540,
"height": 676
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6knav-m9r0ztgefzsy6d.default.mp4",
"width": 540,
"height": 676
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Spesifikasi",
"options": [
"1/2 PKโPutih",
"Pembungkus aman"
],
"images": [
"id-11134207-7ra0h-mdb7foknrdbb2c",
"id-11134207-7rbk9-m6nq8kbhs5ys39"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.578947368421052,
"rating_count": [
38,
2,
1,
1,
3,
31
],
"rcount_with_context": 13,
"rcount_with_image": 8
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 355411203211264,
"bundle_deal_label": "Pilih 3, diskon 1%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 820137226190848,
"price": 198400000000,
"strikethrough_price": 338000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-41%",
"model_id": 247698256666,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 338000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 80,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 80,
"display_sold_count_text": "80"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Elegan Home",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
0,
1000,
88,
97,
4
]
},
"itemid": 24291742131,
"shopid": 1023510819,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6nq8kbhpctw72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1400066568,1400285055,2018619,1015914,700190087,298893311,1049120,700005490,822059908662278,825465608499232,825465608497696,837860934119952,2023641,298463379,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":221,\"model_id\":247698256666,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,0,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk4-m6nq8kbhpctw72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1400066568,1400285055,2018619,1015914,700190087,298893311,1049120,700005490,822059908662278,825465608499232,825465608497696,837860934119952,2023641,298463379,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"ac window\",\"air conditioner\",\"ac window\",\"ac window\",\"ac window\"],\"merge_rank\":221,\"model_id\":247698256666,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,0,1000,88,97,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24291742131",
"debug_info": null
},
{
"item_basic": {
"itemid": 15595000548,
"shopid": 441546525,
"name": "Kipas Angin Model AC 1PK manual",
"label_ids": [
844931064601283,
844931086908638,
1400285055,
1015914,
700190087,
2018619,
1400066568,
298463379,
1718093079,
298933384,
2108629,
2023641,
1059152,
1059154,
822059908662278,
825465608497696,
298468389,
1718088045
],
"image": "id-11134207-8224x-mgupsfm6ikunb7",
"images": [
"id-11134207-8224x-mgupsfm6ikunb7",
"sg-11134201-22110-r92c3egs9xjvfb",
"id-11134207-8224u-mgupsfm6jzf30d",
"id-11134207-8224w-mgupsfm6ldzj9d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1668569107,
"sold": 39,
"historical_sold": 84,
"liked": false,
"liked_count": 37,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 40,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 15000000000,
"price_min": 15000000000,
"price_max": 15000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.4,
"rating_count": [
40,
3,
2,
2,
2,
31
],
"rcount_with_context": 16,
"rcount_with_image": 15
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 15000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 259022847259,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 15000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 84,
"rounded_local_monthly_sold_count": 39,
"local_monthly_sold_count_text": "39",
"rounded_display_sold_count": 84,
"display_sold_count_text": "84"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "TukangAC07",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 15595000548,
"shopid": 441546525,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mgupsfm6ikunb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,1015914,700190087,2018619,1400066568,298463379,1718093079,298933384,2108629,2023641,1059152,1059154,822059908662278,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":222,\"model_id\":259022847259,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mgupsfm6ikunb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,1015914,700190087,2018619,1400066568,298463379,1718093079,298933384,2108629,2023641,1059152,1059154,822059908662278,825465608497696,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":222,\"model_id\":259022847259,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_15595000548",
"debug_info": null
},
{
"item_basic": {
"itemid": 26787554307,
"shopid": 1423402464,
"name": "2000W Amplifier Bluetooth Super Bass Tampilan Digital Power Amplifier Board Untuk 8-12 Inci Speaker AC 220V-DC 12V-24V Bluetooth 5.0 Karaoke Audio Bluetooth USB FM Radio Player Subwoofer",
"label_ids": [
2018619,
2023641,
1428713,
1718087960,
844931064601283,
844931086908638,
1718093079,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
1119699,
1400285055,
1015914,
700190087,
700830032,
298933384,
298623321,
1993623,
998091078,
2218763
],
"image": "sg-11134201-822x0-mi44qyik36knb5",
"images": [
"sg-11134201-822x0-mi44qyik36knb5",
"id-11134207-8224x-mi11mdqd2neq75",
"sg-11134201-7ratz-may8tuzxhurnee",
"id-11134207-81zti-medzau66nxmuc4",
"id-11134207-81ztq-medzau66pc7a37",
"id-11134207-81zth-medzau66mj2ea1",
"sg-11134201-7rat7-may8tvb131w155",
"sg-11134201-7rasy-may8tvssefs2ad",
"sg-11134201-7rasv-may8tvh4vixced"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1749823703,
"sold": 211,
"historical_sold": 1000,
"liked": false,
"liked_count": 279,
"view_count": null,
"catid": 100535,
"brand": "",
"cmt_count": 628,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 5600000000,
"price_min": 5600000000,
"price_max": 5600000000,
"price_min_before_discount": 12600000000,
"price_max_before_discount": 12600000000,
"hidden_price_display": null,
"price_before_discount": 12600000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-56%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16000081749641548.mp4",
"thumb_url": "sg-11110106-6kip2-mav8i21hmjg3db_cover",
"duration": 50,
"version": 2,
"vid": "sg-11110106-6kip2-mav8i21hmjg3db",
"formats": [
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16006711751789924.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16006711751789924.mp4",
"width": 960,
"height": 540
},
{
"format": 1600673,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16006731755797817.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16006731755797817.mp4",
"width": 960,
"height": 540
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16000081749641548.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16000081749641548.mp4",
"width": 1280,
"height": 720
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16003251751789924.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.16003251751789924.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110106/mms/sg-11110106-6kip2-mav8i21hmjg3db.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "2 SpeakerCable",
"options": [
"D30II 2000W(8-12INC)",
"D10II 1000W(8-12INC)",
"D10(8-12INCI),800W",
"D10(8-12INCI),900W",
"5inch",
"ZK-502L"
],
"images": [
"sg-11134201-824hf-me3tbfupu29zeb",
"id-11134207-8224w-mhbns49nsv7w9a",
"sg-11134201-7rat1-may8twe5gd1fa5",
"sg-11134201-7raso-may8twk9a8ggbf",
"id-11134207-81ztf-medzau66qqrq82",
"sg-11134201-7reon-mdva8b9ly71f02"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.845541401273885,
"rating_count": [
628,
2,
2,
14,
55,
555
],
"rcount_with_context": 178,
"rcount_with_image": 145
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 365447526761033,
"bundle_deal_label": "Pilih 2, diskon 2%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 811034110132224,
"price": 5600000000,
"strikethrough_price": 12600000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-56%",
"model_id": 275374690144,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 12600000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 211,
"local_monthly_sold_count_text": "211",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GearPro ID",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 26787554307,
"shopid": 1423402464,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822x0-mi44qyik36knb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,700830032,298933384,298623321,1993623,998091078,2218763],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":223,\"model_id\":275374690144,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822x0-mi44qyik36knb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,1718093079,700005490,1049120,822059908662278,825465608499232,825465608497696,1119699,1400285055,1015914,700190087,700830032,298933384,298623321,1993623,998091078,2218763],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":223,\"model_id\":275374690144,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26787554307",
"debug_info": null
},
{
"item_basic": {
"itemid": 26611133748,
"shopid": 1357865996,
"name": "Kipas Mini AC Portable Air Cooler Pendingin Ruangan",
"label_ids": [
844931086908638,
844931064601283,
1718093079,
1000031,
1015914,
700190087,
1400285055,
1049120,
700005490,
822059908662278,
825465608497696,
837860934119952,
825465608499232,
1428713,
1718087960,
2018619,
2023641,
298893311,
298463379,
700830032,
298648355,
298988318,
298983369,
299103323,
298468389,
1718088045
],
"image": "id-11134207-8224z-mhr5g19skgec49",
"images": [
"id-11134207-8224z-mhr5g19skgec49",
"id-11134207-8224v-mhr5g19ubnygc6",
"id-11134207-7r98u-m08bcn0u3sk67a",
"id-11134207-7r98t-m045wi90fmk25e",
"id-11134207-7r98r-m045wi90h14i5f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1726211990,
"sold": 1000,
"historical_sold": 30000,
"liked": false,
"liked_count": 9250,
"view_count": null,
"catid": 100010,
"brand": "HANG YAN",
"cmt_count": 17536,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 4990000000,
"price_min": 4990000000,
"price_max": 4990000000,
"price_min_before_discount": 12000000000,
"price_max_before_discount": 12000000000,
"hidden_price_display": null,
"price_before_discount": 12000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-58%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke17-m046h633n9wtd2.16000081726211310.mp4",
"thumb_url": "id-11110105-7r98w-m046h8mdzgjpae",
"duration": 12,
"version": 2,
"vid": "id-11110105-6ke17-m046h633n9wtd2",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke17-m046h633n9wtd2.default.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke17-m046h633n9wtd2.default.mp4",
"width": 354,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke17-m046h633n9wtd2.default.mp4",
"width": 354,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "WARNA",
"options": [
"HITAM",
"HIJAU",
"PUTIH",
"NAVY"
],
"images": [
"id-11134207-8224w-mhr5g19uioso18",
"id-11134207-8224r-mhr5g19ufvns7c",
"id-11134207-7rasf-m0fd988epr3y6e",
"id-11134207-7rasa-m13w5b6r4jwzb2"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.6551901336074,
"rating_count": [
17536,
339,
205,
828,
2412,
13752
],
"rcount_with_context": 3585,
"rcount_with_image": 2527
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 812167562051584,
"price": 4990000000,
"strikethrough_price": 12000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-58%",
"model_id": 129066518789,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 12000000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 30000,
"rounded_local_monthly_sold_count": 1000,
"local_monthly_sold_count_text": "1RB+",
"rounded_display_sold_count": 30000,
"display_sold_count_text": "10RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "MarkasElectronic",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
91,
4
]
},
"itemid": 26611133748,
"shopid": 1357865996,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhr5g19skgec49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1000031,1015914,700190087,1400285055,1049120,700005490,822059908662278,825465608497696,837860934119952,825465608499232,1428713,1718087960,2018619,2023641,298893311,298463379,700830032,298648355,298988318,298983369,299103323,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":224,\"model_id\":129066518789,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhr5g19skgec49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1718093079,1000031,1015914,700190087,1400285055,1049120,700005490,822059908662278,825465608497696,837860934119952,825465608499232,1428713,1718087960,2018619,2023641,298893311,298463379,700830032,298648355,298988318,298983369,299103323,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"ac window\",\"ac window\"],\"merge_rank\":224,\"model_id\":129066518789,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,91,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26611133748",
"debug_info": null
},
{
"item_basic": {
"itemid": 26312848718,
"shopid": 198666921,
"name": "AC Reiwa 0.5 PK Window Low Watt CW 0501 RA Air Conditioner 0,5 1/2PK 1/2 CW0501 CW 0501RA",
"label_ids": [
844931064601283,
298463379,
1718093079,
844931086908638,
1015914,
700190087,
1000031,
1400285055,
1213641,
2018619,
2023641,
298893311,
1049141,
700005513,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
825465608494624,
700750053,
1400025118,
822120592853526,
298933384,
2068629,
298938357,
2108629,
700765096,
298938356,
1400066568,
2098628,
1718088044,
997921050,
298938368,
2108637,
298468389,
1718088045,
298468390,
1718093084,
997921049,
1718088046,
298458398,
2098630,
298458396,
2098629,
1718093085,
298838363,
700585042,
2103632
],
"image": "id-11134207-7rasm-m0v4gy4ofryfda",
"images": [
"id-11134207-7rasm-m0v4gy4ofryfda",
"id-11134207-7rasc-m0ttolvs7c644d",
"id-11134207-7rasm-m1xw9nagi27t49",
"id-11134207-7rase-m1xw9na6ph7j03",
"id-11134207-7rasg-m1xw9na6qw9b48",
"id-11134207-7rasi-m1xw9na6mojac4",
"id-11134207-7rash-m0v4gy4oeddzbb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1727763786,
"sold": 14,
"historical_sold": 165,
"liked": false,
"liked_count": 197,
"view_count": null,
"catid": 100010,
"brand": "REIWA",
"cmt_count": 83,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 209500000000,
"price_min": 209500000000,
"price_max": 209500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.16000091729329324.mp4",
"thumb_url": "id-11110107-7rasj-m1jorppop1nb63",
"duration": 16,
"version": 2,
"vid": "id-11110107-6ke1d-m1jornmhqqi915",
"formats": [
{
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
"width": 360,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ke1d-m1jornmhqqi915.default.mp4",
"width": 360,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.9397590361445785,
"rating_count": [
83,
1,
0,
0,
1,
81
],
"rcount_with_context": 22,
"rcount_with_image": 15
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bantul",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp698RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 158814627422,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 165,
"rounded_local_monthly_sold_count": 14,
"local_monthly_sold_count_text": "14",
"rounded_display_sold_count": 165,
"display_sold_count_text": "165"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp698RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Lentera Star",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
97,
88,
0,
1000,
4
]
},
"itemid": 26312848718,
"shopid": 198666921,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0v4gy4ofryfda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,844931086908638,1015914,700190087,1000031,1400285055,1213641,2018619,2023641,298893311,1049141,700005513,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,700750053,1400025118,822120592853526,298933384,2068629,298938357,2108629,700765096,298938356,1400066568,2098628,1718088044,997921050,298938368,2108637,298468389,1718088045,298468390,1718093084,997921049,1718088046,298458398,2098630,298458396,2098629,1718093085,298838363,700585042,2103632],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":225,\"model_id\":158814627422,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,97,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m0v4gy4ofryfda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,298463379,1718093079,844931086908638,1015914,700190087,1000031,1400285055,1213641,2018619,2023641,298893311,1049141,700005513,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,700750053,1400025118,822120592853526,298933384,2068629,298938357,2108629,700765096,298938356,1400066568,2098628,1718088044,997921050,298938368,2108637,298468389,1718088045,298468390,1718093084,997921049,1718088046,298458398,2098630,298458396,2098629,1718093085,298838363,700585042,2103632],\"matched_keywords\":[\"pendingin ruangan\",\"reiwa\",\"ac window\",\"ac window\",\"ac window\",\"air conditioner\",\"ac window\"],\"merge_rank\":225,\"model_id\":158814627422,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,97,88,0,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26312848718",
"debug_info": null
},
{
"item_basic": {
"itemid": 27000175661,
"shopid": 271965077,
"name": "Selang Sambung Hawa Plastik Utk Ac Mobil Harga Perpcs 1",
"label_ids": [
1049116,
1049117,
822059908662278,
825465608499232,
825465608497696,
298458395,
844931064601283,
1213641,
1000031,
1400285055,
1119699,
1015914,
700190087,
2018619,
2023641,
1718093079,
844931086908638,
298893311,
298463379,
1400066568,
2068629,
298938357,
298468390,
1718093084,
1718088045,
2098629,
1718088044,
298458398,
298468389,
298458396,
2098628,
298938368
],
"image": "id-11134207-7r98y-lve2ihl3cssj62",
"images": [
"id-11134207-7r98y-lve2ihl3cssj62",
"id-11134207-7r98v-lve2ihl3cs1x67",
"id-11134207-7r98t-lve2ihl3csdb51"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1715914332,
"sold": 293,
"historical_sold": 3000,
"liked": false,
"liked_count": 318,
"view_count": null,
"catid": 100640,
"brand": "",
"cmt_count": 1377,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 1095000000,
"price_min": 1095000000,
"price_max": 1095000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.790288529204785,
"rating_count": [
1421,
9,
10,
40,
152,
1210
],
"rcount_with_context": 204,
"rcount_with_image": 140
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1095000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 245840914123,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1095000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3000,
"rounded_local_monthly_sold_count": 293,
"local_monthly_sold_count_text": "293",
"rounded_display_sold_count": 3000,
"display_sold_count_text": "3RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Khoirun_ac",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 27000175661,
"shopid": 271965077,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lve2ihl3cssj62\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049116,1049117,822059908662278,825465608499232,825465608497696,298458395,844931064601283,1213641,1000031,1400285055,1119699,1015914,700190087,2018619,2023641,1718093079,844931086908638,298893311,298463379,1400066568,2068629,298938357,298468390,1718093084,1718088045,2098629,1718088044,298458398,298468389,298458396,2098628,298938368],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":226,\"model_id\":245840914123,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98y-lve2ihl3cssj62\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049116,1049117,822059908662278,825465608499232,825465608497696,298458395,844931064601283,1213641,1000031,1400285055,1119699,1015914,700190087,2018619,2023641,1718093079,844931086908638,298893311,298463379,1400066568,2068629,298938357,298468390,1718093084,1718088045,2098629,1718088044,298458398,298468389,298458396,2098628,298938368],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":226,\"model_id\":245840914123,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27000175661",
"debug_info": null
},
{
"item_basic": {
"itemid": 9073798714,
"shopid": 15074783,
"name": "TERLARIS KIPAS angin model AC 2PK + remot khusus JNE",
"label_ids": [
1001036,
1015914,
700190087,
1049120,
700005490,
825249635454464,
822059908662278,
1400285055,
298463379,
700025282,
700590005,
1818593,
1718093079,
298458395,
1428713,
1718087960,
1918643,
1000031,
2018619,
700700063,
825465608497696,
700830032,
2108629,
844931086908638,
2068629,
298938357,
1400066568,
298468389,
298938368,
1718088045,
2098628,
2098629
],
"image": "86c705e9eaf6ec8e576f254a305eb4bc",
"images": [
"86c705e9eaf6ec8e576f254a305eb4bc",
"e02be4817badf671b0a3d537f94f5d6f",
"c49c427760cb4b158ea56ae0d737587f",
"b02985e5a6720c9b290f5a1909268ef4",
"4dfc1637fd6d15dc7fc66b4b666e8025"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1625260361,
"sold": 65,
"historical_sold": 10000,
"liked": false,
"liked_count": 5806,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 979,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 36500000000,
"price_min": 36500000000,
"price_max": 36500000000,
"price_min_before_discount": 50000000000,
"price_max_before_discount": 50000000000,
"hidden_price_display": null,
"price_before_discount": 50000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-27%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 3.9001019367991847,
"rating_count": [
982,
156,
42,
89,
154,
541
],
"rcount_with_context": 394,
"rcount_with_image": 272
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp121RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 806653813899264,
"price": 36500000000,
"strikethrough_price": 50000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-27%",
"model_id": 66235181542,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 50000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10000,
"rounded_local_monthly_sold_count": 65,
"local_monthly_sold_count_text": "65",
"rounded_display_sold_count": 10000,
"display_sold_count_text": "10RB+"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp121RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Hema cosmetik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 9073798714,
"shopid": 15074783,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"86c705e9eaf6ec8e576f254a305eb4bc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001036,1015914,700190087,1049120,700005490,825249635454464,822059908662278,1400285055,298463379,700025282,700590005,1818593,1718093079,298458395,1428713,1718087960,1918643,1000031,2018619,700700063,825465608497696,700830032,2108629,844931086908638,2068629,298938357,1400066568,298468389,298938368,1718088045,2098628,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":227,\"model_id\":66235181542,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"86c705e9eaf6ec8e576f254a305eb4bc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1001036,1015914,700190087,1049120,700005490,825249635454464,822059908662278,1400285055,298463379,700025282,700590005,1818593,1718093079,298458395,1428713,1718087960,1918643,1000031,2018619,700700063,825465608497696,700830032,2108629,844931086908638,2068629,298938357,1400066568,298468389,298938368,1718088045,2098628,2098629],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":227,\"model_id\":66235181542,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_9073798714",
"debug_info": null
},
{
"item_basic": {
"itemid": 44068802161,
"shopid": 1609291915,
"name": "(Barang Dagangan Dalam Stok)1000W Amplifier Board Audio 12V/24V/220V Bluetooth USB Radio TF DIY Speaker Woofer Ampli Full Bass Subwoofer 8-10 Inch Hi-Fi Bluetooth Rumah Mobil Audio Power Super Bass Bluetooth Amplifiers AC 220V 12V 24V",
"label_ids": [
844931064601283,
844931086908638,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
700005490,
1049120,
1400285055,
1428713,
1718087960,
298933384,
2023641,
1015914,
700190087,
2018619
],
"image": "id-11134207-81zth-me81r9kfhh4zc0",
"images": [
"id-11134207-81zth-me81r9kfhh4zc0",
"id-11134207-81ztk-mee1cn7aazglc1",
"id-11134207-81ztk-mee1cn7ace1151",
"id-11134207-81ztl-me9o6ngx5qth8a",
"id-11134207-81ztj-mee1cn7am80516",
"id-11134207-81ztn-me9o6ngx75dx46",
"id-11134207-81zte-mee1cn7anmkl26",
"id-11134207-81ztq-mee1cn7ai0at10",
"id-11134207-81ztj-mee1cn7ajev9a5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1757750318,
"sold": 9,
"historical_sold": 35,
"liked": false,
"liked_count": 9,
"view_count": null,
"catid": 100535,
"brand": "",
"cmt_count": 14,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 6348000000,
"price_min": 6348000000,
"price_max": 6348000000,
"price_min_before_discount": 13800000000,
"price_max_before_discount": 13800000000,
"hidden_price_display": null,
"price_before_discount": 13800000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-54%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vemz-mfxmjugtp62za0.16000091760682444.mp4",
"thumb_url": "id-11110105-6vemz-mfxmjugtp62za0_cover",
"duration": 47,
"version": 2,
"vid": "id-11110105-6vemz-mfxmjugtp62za0",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vemz-mfxmjugtp62za0.16000091760682444.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mfxmjugtp62za0.16000091760682444.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mfxmjugtp62za0.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "nomor model",
"options": [
"D30-II",
"D30",
"D10-II",
"D10",
"T5",
"01"
],
"images": [
"id-11134207-81zte-mee1cn7anmkl26",
"id-11134207-81ztq-mee1cn7ai0at10",
"id-11134207-81ztk-mee1cn7ace1151",
"id-11134207-81ztn-me9o6ngx75dx46",
"id-11134207-81ztj-mee1cn7ajev9a5",
"id-11134207-81zti-mfngbpuitpftc1"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
14,
0,
0,
0,
0,
14
],
"rcount_with_context": 2,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228219680993282,
"price": 6348000000,
"strikethrough_price": 13800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-54%",
"model_id": 281542421860,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 13800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 35,
"rounded_local_monthly_sold_count": 9,
"local_monthly_sold_count_text": "9",
"rounded_display_sold_count": 35,
"display_sold_count_text": "35"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "MOTOX GARAGE",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 44068802161,
"shopid": 1609291915,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-me81r9kfhh4zc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,822059908662278,825465608499232,825465608497696,1119699,700005490,1049120,1400285055,1428713,1718087960,298933384,2023641,1015914,700190087,2018619],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":228,\"model_id\":281542421860,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-81zth-me81r9kfhh4zc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,822059908662278,825465608499232,825465608497696,1119699,700005490,1049120,1400285055,1428713,1718087960,298933384,2023641,1015914,700190087,2018619],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":228,\"model_id\":281542421860,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44068802161",
"debug_info": null
},
{
"item_basic": {
"itemid": 29455142540,
"shopid": 1267412159,
"name": "OUTDOOR ( BARU ) AC 1/2 - 3/4 - 1 PK",
"label_ids": [
844931064601283,
1049120,
700005490,
822059908662278,
837860934119952,
1718093079,
1400285055,
1015914,
700190087,
1000031,
2018619,
2023641,
1400066568,
298893311,
825465608497696,
298933384,
298463379,
834230400556567,
298468389,
1718088045
],
"image": "id-11134207-7rasm-m2drmnfxovgu7d",
"images": [
"id-11134207-7rasm-m2drmnfxovgu7d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1720760277,
"sold": 77,
"historical_sold": 901,
"liked": false,
"liked_count": 704,
"view_count": null,
"catid": 100010,
"brand": "ACC",
"cmt_count": 370,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 126500000000,
"price_min": 126500000000,
"price_max": 126500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "UKURAN AC",
"options": [
"1/2 PK",
"3/4 PK",
"1 PK"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "MERK AC",
"options": [
"PANASONIC",
"DAIKIN INDO FTC-YV14",
"SHARP",
"GREE",
"LG",
"AQUA",
"MIDEA",
"CHANGHONG",
"DAIKIN Thailand",
"(OUT) BESTLIFE",
"DAIKIN FTP-AV14"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.914893617021277,
"rating_count": [
376,
1,
2,
1,
20,
352
],
"rcount_with_context": 98,
"rcount_with_image": 73
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 126500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 226537661238,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 126500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 901,
"rounded_local_monthly_sold_count": 77,
"local_monthly_sold_count_text": "77",
"rounded_display_sold_count": 901,
"display_sold_count_text": "901"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "TOKO AC BINTANG REZEKI",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 392791855,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9DN+j0RVU3cflxR1dlMWiaAHVwja6pCTiIrmdIv4FvthSSGFg9qUnksNFyXbm/PD2MyDhCOJf7TcEHNCJaeo4r2JpxmafQX/GR0BbRsLER8D/T/zfiJVpLvKD5+Nytmnn1D9hBEAZT3IjDlvl0Ztsw8z2BC+XjDZHX3kNy/oGAXXo6KQZxUFLno32mrtyQMmJ/g3lX9LBKUJ8eXfraPxM2F9+sZoQIvuuCpnqhgrmJydVoiQvsDnjgnnlCXHQEw56Obbiirc027iADQQTA1iMcWEAZjOWck1oa3OfzFSNlsulahrUygX6nJpzA3c6iTIBASPl2p1KLlIQxhz12Lk+/fipmGTzOZZRhsJhDYJbN+SbAcpuSglKtaV9TdKXPv2UKoND1ns/E06A+XA3CoHR3lO36dnSB7gSGXRSbAASxWdZJzuC+ZL/60chBt1UeYNlqdueyL6w6QZ+PIhmU/SfTe8yfRFDUZNsfoYya9lcBYTFDd6obKG5JZAPcIgqu0Kg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8EK+OprsBGMyn45MBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYUFIVndqYTZwQ1RpSXJtZEl2NEZ2dGhTU0dGZzlxVW5rc05GeVhibS9QRDJNeURoQ09KZjdUY0VITkNKYWVvNHIySnB4bWFmUVgvR1IwQmJSc0xFUjhEL1QvemZpSlZwTHZLRDUrTnl0bW5uMUQ5aEJFQVpUM0lqRGx2bDBadHN3OHoyQkMrWGpEWkhYM2tOeS9vR0FYWG82S1FaeFVGTG5vMzJtcnR5UU1tSi9nM2xYOUxCS1VKOGVYZnJhUHhNMkY5K3Nab1FJdnV1Q3BucWhncm1KeWRWb2lRdnNEbmpnbm5sQ1hIUUV3NTZPYmJpaXJjMDI3aUFEUVFUQTFpTWNXRUFaak9XY2sxb2EzT2Z6RlNObHN1bGFoclV5Z1g2bkpwekEzYzZpVElCQVNQbDJwMUtMbElReGh6MTJMaysvZmlwbUdUek9aWlJoc0poRFlKYk4rU2JBY3B1U2dsS3RhVjlUZEtYUHYyVUtvTkQxbnMvRTA2QStYQTNDb0hSM2xPMzZkblNCN2dTR1hSU2JBQVN4V2RaSnp1QytaTC82MGNoQnQxVWVZTmxxZHVleUw2dzZRWitQSWhtVS9TZlRlOHlmUkZEVVpOc2ZvWXlhOWxjQllURkRkNm9iS0c1SlpBUGNJZ3F1MEtnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywbgAe6B/aJU6QEAAADglSXxP/EBAAAAQOZJEEDIDA/gDAHpDAAAACCButE/iQ17FK5H4XqUP5ENAAAAANASU0GhDQAAAABlza1B+A2AgN3F8gOwDqHb71XiDgyqjQbHjQbVjgbwkAbIDxLiGYALRW9NQk55NHlPVEkwTmpreU5qQTVNemN5TVRVMUxDMHhMQzB4TEMweExDMHhMRGN1TXpZMk1UTXdOVFkyTmpBek1qUTRMREVzTUM0ek1EUTRNalk1TkRjd016VTBNamN5TXl3d0xqa3NMVEVzTUM0ek9UTTVNemsxTXprM05EQTROemt3TXl3d0xqQXpNamd3TkRRNE9Dd3pMakV6TVRjeE16UXhPVEEzTlRjd09UY3NMVEVkSEQ4WlRTQ0IwUEwyQXkzb1crbEFOUUFBZ0Q4NWxIcjJ3aGRQQjBKQnZFMXU5SEllUFVKS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9ZZzRJclBPV0F4RUFBQUFBQUFBQUFHSU9DS3Z6bGdNUkFBQUFBQUFBQUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCcG1HNFNnNnVTVXNGeEFBQUFnTkdFQkQ5NUFBQUE0SkFaOHo2QkFRQUFBQUFhSUZaQmlRRUFBQUNnNlU4MFFaRUJBQUFBYUJRMFcwR1pBUUFBQUlDSjNsMUJvUUVBQUFEZzRXczdRYWtCQUFBQS9NQmNZa0hvQVFHQUFwUURpZ0krTUM0d01EWXdOVElzTVM0d01EQXdNREFzTVM0d05ERTJOelFzTVM0eU5UQXdNREFzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQXZLQlp1N3FkaDFBb1FLdDd6UjR3a25CUWNFQ21HNFNnNnVTVXNIS0Fnc0lBUkg4OTZ3ejhqQlF3Y29DQ3dnQ0VaaHVFb09ya2xMQjJRSUFhdkRmRktsQlFlRUNRSUxVRkRydElVSHBBamM2dXNOSmVheEJpZ013QUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL21RUEVMdXVsL3BvTFFxRURUeGNDUzJWTlEwSzVBL0lEbEJjdks5MC93UU05ejF4cHhBVGhQOGtERWhKbUxMZTk1RC9SQXc4RjNpZndBK3MvK2dNSkNnVkpjMDVRUWhBQStnTUxDZ2RTYjJsVWFXVnlFQUQ2QXcwS0NVOXlaR1Z5VkdsbGNoQUErZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQUNCQkFBQUFLRHBvL3MraVFRQUFBQmdYZ0QwUHBBRW13T1lCSytmazRnRW9BU1o4NWkwQktnRWdQS0xxQW00QksrZms0Z0V3QVRJa3F5OENNa0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUJneU1sNFA2RUZBQUFBQUFBQThEK3BCUUFBQUVDeXF2QS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZBLpNxE36GaQGCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5NDU1MTQyNTQwCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNYml6X3F1ZXVlX2lkcxIJIgdhZHMsb3JnChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKFAoOc2hvcF9ibGFja2xpc3QSAigACi0KEHJlY2FsbF9xdWV1ZV9pZHMSGSIXNjExMDIwMzA0LDYxMTAxMDEwNCxvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2NCwiYXBpMV9sYXRlbmN5X21zIjo0NiwiYXBpMl9sYXRlbmN5X21zIjo1NywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMwLCJhcGkwX2Fkc19jb3VudCI6MjgxLCJhcGkxX2Fkc19jb3VudCI6MTU0OSwiYXBpMl9hZHNfY291bnQiOjMxNiwiYXBpM19hZHNfY291bnQiOjN9sB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 29455142540,
"shopid": 1267412159,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":6560898,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m2drmnfxovgu7d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,1049120,700005490,822059908662278,837860934119952,1718093079,1400285055,1015914,700190087,1000031,2018619,2023641,1400066568,298893311,825465608497696,298933384,298463379,834230400556567,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":229,\"model_id\":226537661238,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":6560898,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasm-m2drmnfxovgu7d\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[844931064601283,1049120,700005490,822059908662278,837860934119952,1718093079,1400285055,1015914,700190087,1000031,2018619,2023641,1400066568,298893311,825465608497696,298933384,298463379,834230400556567,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":229,\"model_id\":226537661238,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8EK+OprsBGMyn45MBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOUROK2owUlZVM2NmbHhSMWRsTVdpYUFIVndqYTZwQ1RpSXJtZEl2NEZ2dGhTU0dGZzlxVW5rc05GeVhibS9QRDJNeURoQ09KZjdUY0VITkNKYWVvNHIySnB4bWFmUVgvR1IwQmJSc0xFUjhEL1QvemZpSlZwTHZLRDUrTnl0bW5uMUQ5aEJFQVpUM0lqRGx2bDBadHN3OHoyQkMrWGpEWkhYM2tOeS9vR0FYWG82S1FaeFVGTG5vMzJtcnR5UU1tSi9nM2xYOUxCS1VKOGVYZnJhUHhNMkY5K3Nab1FJdnV1Q3BucWhncm1KeWRWb2lRdnNEbmpnbm5sQ1hIUUV3NTZPYmJpaXJjMDI3aUFEUVFUQTFpTWNXRUFaak9XY2sxb2EzT2Z6RlNObHN1bGFoclV5Z1g2bkpwekEzYzZpVElCQVNQbDJwMUtMbElReGh6MTJMaysvZmlwbUdUek9aWlJoc0poRFlKYk4rU2JBY3B1U2dsS3RhVjlUZEtYUHYyVUtvTkQxbnMvRTA2QStYQTNDb0hSM2xPMzZkblNCN2dTR1hSU2JBQVN4V2RaSnp1QytaTC82MGNoQnQxVWVZTmxxZHVleUw2dzZRWitQSWhtVS9TZlRlOHlmUkZEVVpOc2ZvWXlhOWxjQllURkRkNm9iS0c1SlpBUGNJZ3F1MEtnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywbgAe6B/aJU6QEAAADglSXxP/EBAAAAQOZJEEDIDA/gDAHpDAAAACCButE/iQ17FK5H4XqUP5ENAAAAANASU0GhDQAAAABlza1B+A2AgN3F8gOwDqHb71XiDgyqjQbHjQbVjgbwkAbIDxLiGYALRW9NQk55NHlPVEkwTmpreU5qQTVNemN5TVRVMUxDMHhMQzB4TEMweExDMHhMRGN1TXpZMk1UTXdOVFkyTmpBek1qUTRMREVzTUM0ek1EUTRNalk1TkRjd016VTBNamN5TXl3d0xqa3NMVEVzTUM0ek9UTTVNemsxTXprM05EQTROemt3TXl3d0xqQXpNamd3TkRRNE9Dd3pMakV6TVRjeE16UXhPVEEzTlRjd09UY3NMVEVkSEQ4WlRTQ0IwUEwyQXkzb1crbEFOUUFBZ0Q4NWxIcjJ3aGRQQjBKQnZFMXU5SEllUFVKS0VBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCS0RnaXE4NVlERVFBQUFBQUFBQUFBU2c0SXJQT1dBeEVBQUFBQUFBQUFBRW9PQ0p6NjRRUVJBQUFBQUFBQUFBQktEZ2lyODVZREVRQUFBQUFBQUFBQVVoQUlnSUNBZ0lBRUVRQUFBQUFBQUFBQVVnNElxdk9XQXhFQUFBQUFBQUFBQUZJT0NLenpsZ01SQUFBQUFBQUFBQUJTRGdpcjg1WURFUUFBQUFBQUFBQUFXZ2NJcXZPV0F4QUFXZ2NJclBPV0F4QUFXZ2NJcS9PV0F4QUFXZ2tJZ0lDQWdJQUVFQUJpRGdpcTg1WURFUUFBQUFBQUFQQS9ZZzRJclBPV0F4RUFBQUFBQUFBQUFHSU9DS3Z6bGdNUkFBQUFBQUFBQUFCaUVBaUFnSUNBZ0FRUkFBQUFBQUFBQUFCcG1HNFNnNnVTVXNGeEFBQUFnTkdFQkQ5NUFBQUE0SkFaOHo2QkFRQUFBQUFhSUZaQmlRRUFBQUNnNlU4MFFaRUJBQUFBYUJRMFcwR1pBUUFBQUlDSjNsMUJvUUVBQUFEZzRXczdRYWtCQUFBQS9NQmNZa0hvQVFHQUFwUURpZ0krTUM0d01EWXdOVElzTVM0d01EQXdNREFzTVM0d05ERTJOelFzTVM0eU5UQXdNREFzTVM0ek1EQXdNREFzTVM0ME1EQXdNREFzTVM0MU1EQXdNRENaQXZLQlp1N3FkaDFBb1FLdDd6UjR3a25CUWNFQ21HNFNnNnVTVXNIS0Fnc0lBUkg4OTZ3ejhqQlF3Y29DQ3dnQ0VaaHVFb09ya2xMQjJRSUFhdkRmRktsQlFlRUNRSUxVRkRydElVSHBBamM2dXNOSmVheEJpZ013QUFBQUFBQUE4RDhBQUFBQUFBRHdQd0FBQUFBQUFQQS9BQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL21RUEVMdXVsL3BvTFFxRURUeGNDUzJWTlEwSzVBL0lEbEJjdks5MC93UU05ejF4cHhBVGhQOGtERWhKbUxMZTk1RC9SQXc4RjNpZndBK3MvK2dNSkNnVkpjMDVRUWhBQStnTUxDZ2RTYjJsVWFXVnlFQUQ2QXcwS0NVOXlaR1Z5VkdsbGNoQUErZ01SQ2cxSmRHVnRVSEpwWTJWVWFXVnlFQUNCQkFBQUFLRHBvL3MraVFRQUFBQmdYZ0QwUHBBRW13T1lCSytmazRnRW9BU1o4NWkwQktnRWdQS0xxQW00QksrZms0Z0V3QVRJa3F5OENNa0VleFN1UitGNmxEL2hCSHNVcmtmaGVwUS82UVFBQUFBQUFBRHdQL0VFQUFBQUFBQUE4RC81QkFBQUFBQUFBUEEvZ1FVQUFBQUFBQUR3UDRrRkFBQUFBQUFBOEQrUkJRQUFBQUFBQVBBL21RVUFBQUJneU1sNFA2RUZBQUFBQUFBQThEK3BCUUFBQUVDeXF2QS9zUVVBQUFBQUFBRDBQN2tGQUFBQXdNek05RC9CQlFBQUFHQm1adlkveVFVQUFBQUFBQUQ0UHc9PeoZBLpNxE36GaQGCioKHXRyYWZmaWNfYm9vc3RfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKIAoTaWR4X3JvaV91cHBlcl9ib3VuZBIJCQAAAAAAAAAAChYKEHVzZXJfcHJvZmlsZV90YWcSAhgACiIKD3Zza3VfdW5pcXVlX2tleRIPIg0wXzI5NDU1MTQyNTQwCiQKF2NwbV9hZHNfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAAAKGgoNYml6X3F1ZXVlX2lkcxIJIgdhZHMsb3JnChIKDHZvdWNoZXJfbGVucxICEAAKDQoHaXNfdnNrdRICKAAKFAoOc2hvcF9ibGFja2xpc3QSAigACi0KEHJlY2FsbF9xdWV1ZV9pZHMSGSIXNjExMDIwMzA0LDYxMTAxMDEwNCxvcmcKGAoScmFwaWRfYm9vc3RfdG9nZ2xlEgIoAApoCht1bmlfcGNyX2Nhc2NhZGVfbW9kZWxfbmFtZXMSSSJHZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZHxncHVfcGN0cl91cGxpZnRfZ2x1X2lkX3Q0fGdwdV91cGxpZnRfY3JfaWQKIAoTb3JpX2RlZHVjdGlvbl9wcmljZRIJCQAAAAAAAAAAChoKDXRyYWZmaWNfYm9vc3QSCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKGAoSZW50cmFuY2VfZ3JvdXBfaWR4EgIQAQr7AQoTZW5naW5lZXJpbmdfbWV0cmljcxLjASLgAXsiYXBpMF9sYXRlbmN5X21zIjo2NCwiYXBpMV9sYXRlbmN5X21zIjo0NiwiYXBpMl9sYXRlbmN5X21zIjo1NywiYXBpM19sYXRlbmN5X21zIjoxLCJyZXRyaWV2YWxfbGF0ZW5jeV9tcyI6MTQsIm9ubGluZV9iaWRkaW5nX2xhdGVuY3lfbXMiOjMwLCJhcGkwX2Fkc19jb3VudCI6MjgxLCJhcGkxX2Fkc19jb3VudCI6MTU0OSwiYXBpMl9hZHNfY291bnQiOjMxNiwiYXBpM19hZHNfY291bnQiOjN9sB/PgoCAgICAqIAByB8JwiUcZ3B1X3BnbXZfcHJvYl9zaXJfdjNfcHJvbV9pZMklre80eMJJwUHyJQZTRUFSQ0g=",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29455142540",
"debug_info": null
},
{
"item_basic": {
"itemid": 24206822932,
"shopid": 577038261,
"name": "Switch Box Kipas Angin Regency#Switch/Saklar Kipas Angin Regency",
"label_ids": [
844931064601283,
844931086908638,
1400285055,
298458395,
1015914,
700190087,
2018619,
2023641,
1718087960,
1428713,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
298933384,
298463379,
1718093079,
2108629,
1718088045,
298468389
],
"image": "id-11134207-8224z-mg62lkosq1vze4",
"images": [
"id-11134207-8224z-mg62lkosq1vze4",
"id-11134207-81zto-mf30iptprkzy11",
"id-11134207-81ztf-mf30iptqgv7t01",
"id-11134207-8224o-mg62lkotmcy613",
"id-11134207-82251-mg62lkosonbj8f",
"id-11134207-82250-mgog84a4qhoqd0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1704483096,
"sold": 67,
"historical_sold": 265,
"liked": false,
"liked_count": 16,
"view_count": null,
"catid": 100010,
"brand": "REGENCY",
"cmt_count": 106,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 2450000000,
"price_min": 2450000000,
"price_max": 2450000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "SWITCH BOX",
"options": [
"Switch Set box",
"Switch saja copotan",
"Switch box set kabel"
],
"images": [
"id-11134207-8224v-mg62lkouwporb4",
"id-11134207-81ztj-mf30iptpszkedc",
"id-11134207-82252-mgog84a4rw96f5"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.794392523364486,
"rating_count": [
107,
1,
1,
2,
11,
92
],
"rcount_with_context": 21,
"rcount_with_image": 14
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 2450000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 262078677364,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 2450000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 265,
"rounded_local_monthly_sold_count": 67,
"local_monthly_sold_count_text": "67",
"rounded_display_sold_count": 265,
"display_sold_count_text": "265"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "pandowo07",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 24206822932,
"shopid": 577038261,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mg62lkosq1vze4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,298458395,1015914,700190087,2018619,2023641,1718087960,1428713,700005490,1049120,822059908662278,825465608499232,825465608497696,298933384,298463379,1718093079,2108629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":230,\"model_id\":262078677364,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mg62lkosq1vze4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1400285055,298458395,1015914,700190087,2018619,2023641,1718087960,1428713,700005490,1049120,822059908662278,825465608499232,825465608497696,298933384,298463379,1718093079,2108629,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":230,\"model_id\":262078677364,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24206822932",
"debug_info": null
},
{
"item_basic": {
"itemid": 9729068300,
"shopid": 257255651,
"name": "AC 1/2 PK Standart MIDEA MSFCE-05CRN2X / MSFCE05CRN2X Double Gold Fin Instan Terbaru 2025 (Medan)",
"label_ids": [
1400095067,
1400285005,
1001036,
1002164,
22,
844931046478970,
844931026694327,
844931064601283,
1015914,
700190087,
1400285055,
1000031,
2018619,
298893311,
1213641,
298933384,
2023641,
298463379,
700765096,
2108629,
1059150,
700005498,
822059908662278,
834403089593352,
2048660,
2048661,
825465608492064,
700810080,
298938356,
298468390,
298458398,
298468389,
298458396
],
"image": "id-11134207-7ra0p-mbz0pwxnwke1bf",
"images": [
"id-11134207-7ra0p-mbz0pwxnwke1bf",
"id-11134207-7ra0g-mbrxzn5kxrxp0a",
"id-11134207-7ra0l-mbrxzn5l0l2ld4",
"id-11134207-7ra0s-mbrxzn5kwdd9ff",
"id-11134207-7ra0j-mbrxzn5kz6i565"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1616228396,
"sold": 21,
"historical_sold": 749,
"liked": false,
"liked_count": 775,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 359,
"flag": 917504,
"cb_option": 0,
"item_status": "normal",
"price": 245500000000,
"price_min": 245500000000,
"price_max": 245500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.94475138121547,
"rating_count": [
362,
0,
0,
3,
14,
345
],
"rcount_with_context": 91,
"rcount_with_image": 85
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": true,
"is_non_cc_installment_payment_eligible": true,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Medan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 245500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 207878603563,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 245500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 749,
"rounded_local_monthly_sold_count": 21,
"local_monthly_sold_count_text": "21",
"rounded_display_sold_count": 749,
"display_sold_count_text": "749"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SHMART ELECTRONIC",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 9729068300,
"shopid": 257255651,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mbz0pwxnwke1bf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,1001036,1002164,22,844931046478970,844931026694327,844931064601283,1015914,700190087,1400285055,1000031,2018619,298893311,1213641,298933384,2023641,298463379,700765096,2108629,1059150,700005498,822059908662278,834403089593352,2048660,2048661,825465608492064,700810080,298938356,298468390,298458398,298468389,298458396],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":231,\"model_id\":207878603563,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0p-mbz0pwxnwke1bf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400095067,1400285005,1001036,1002164,22,844931046478970,844931026694327,844931064601283,1015914,700190087,1400285055,1000031,2018619,298893311,1213641,298933384,2023641,298463379,700765096,2108629,1059150,700005498,822059908662278,834403089593352,2048660,2048661,825465608492064,700810080,298938356,298468390,298458398,298468389,298458396],\"matched_keywords\":[\"air conditioner\",\"pendingin ruangan\"],\"merge_rank\":231,\"model_id\":207878603563,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_9729068300",
"debug_info": null
},
{
"item_basic": {
"itemid": 16994805785,
"shopid": 201925129,
"name": "PAPERBAG AC / TAS AC / KANTONG KERTAS AC / PAPER BAG ALEXANDRE CHRISTIE",
"label_ids": [
844931064601283,
1213641,
1400285055,
844931086908638,
1049116,
1049117,
822059908662278,
825465608492064,
825465608493600,
825465608494624,
825465608497696,
825465608499232,
840955085144628,
840990690654214,
1015914,
700190087,
1000031,
822120592861206,
827380695406658,
1119699,
1718093079,
2018619,
298463379,
2108629,
298933384,
2048660,
2048661,
700765096,
298468389,
1718088044,
1718088045,
298458396,
298468390,
1718093084,
298458398
],
"image": "id-11134207-7qul1-lhe659fazjl8b6",
"images": [
"id-11134207-7qul1-lhe659fazjl8b6",
"id-11134207-8224y-mgnnh51rt8necd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1685433896,
"sold": 98,
"historical_sold": 1000,
"liked": false,
"liked_count": 242,
"view_count": null,
"catid": 100638,
"brand": "",
"cmt_count": 319,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 850000000,
"price_min": 850000000,
"price_max": 850000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "04f6a24d79aa0f72c97b6113dd22b311",
"thumb_url": "de889c8350e553de8322b638801823bd",
"duration": 35,
"version": 2,
"vid": "id-11110107-6jt7n-lhekhl201msz30",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6jt7n-lhekhl201msz30.16000081685434658.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6jt7n-lhekhl201msz30.16000081685434658.mp4",
"width": 640,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6jt7n-lhekhl201msz30.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"AC White",
"AC Black",
"Expedition"
],
"images": [
"id-11134207-8224r-mgnnh51rru2y49",
"id-11134207-7r98s-lppy6c3uz29xf3",
"id-11134207-7r98t-lzfwn9mnigh4ab"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.7907692307692304,
"rating_count": [
325,
4,
1,
9,
31,
280
],
"rcount_with_context": 39,
"rcount_with_image": 26
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 850000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 222405824724,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 850000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 98,
"local_monthly_sold_count_text": "98",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "PION_BREAK",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 16994805785,
"shopid": 201925129,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul1-lhe659fazjl8b6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1400285055,844931086908638,1049116,1049117,822059908662278,825465608492064,825465608493600,825465608494624,825465608497696,825465608499232,840955085144628,840990690654214,1015914,700190087,1000031,822120592861206,827380695406658,1119699,1718093079,2018619,298463379,2108629,298933384,2048660,2048661,700765096,298468389,1718088044,1718088045,298458396,298468390,1718093084,298458398],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":232,\"model_id\":222405824724,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul1-lhe659fazjl8b6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1213641,1400285055,844931086908638,1049116,1049117,822059908662278,825465608492064,825465608493600,825465608494624,825465608497696,825465608499232,840955085144628,840990690654214,1015914,700190087,1000031,822120592861206,827380695406658,1119699,1718093079,2018619,298463379,2108629,298933384,2048660,2048661,700765096,298468389,1718088044,1718088045,298458396,298468390,1718093084,298458398],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":232,\"model_id\":222405824724,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_16994805785",
"debug_info": null
},
{
"item_basic": {
"itemid": 27224908602,
"shopid": 491881863,
"name": "Power Switch Swit Tombol On Off Sensor Ac 4Pin 4 Pin Ukuran 6x6x5mm Saklar Push Button Pcb Tv Ac",
"label_ids": [
1428713,
1718087960,
844931064601283,
844931086908638,
1049126,
700005507,
298463379,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699,
1213641,
2018619,
2023641,
825465608492064,
298933384,
1015914,
700190087,
1718093084,
298458398,
298458396,
1718088045,
298468389,
298468390,
1718088044
],
"image": "id-11134207-7rasb-m5q41ouggv6b82",
"images": [
"id-11134207-7rasb-m5q41ouggv6b82",
"id-11134207-7rasi-m5q41ougfglva9",
"id-11134207-7rash-m5q41ougi9qra1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1738442636,
"sold": 84,
"historical_sold": 233,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100010,
"brand": "",
"cmt_count": 6,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 245000000,
"price_min": 245000000,
"price_max": 245000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
6,
0,
0,
0,
0,
6
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 405399455150294,
"add_on_deal_label": "Kombo Hemat",
"sub_type": 0,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Denpasar",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 245000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 198186796427,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 245000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 233,
"rounded_local_monthly_sold_count": 84,
"local_monthly_sold_count_text": "84",
"rounded_display_sold_count": 233,
"display_sold_count_text": "233"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Bali Aircond",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 27224908602,
"shopid": 491881863,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m5q41ouggv6b82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1049126,700005507,298463379,822059908662278,825465608499232,825465608497696,1718093079,1119699,1213641,2018619,2023641,825465608492064,298933384,1015914,700190087,1718093084,298458398,298458396,1718088045,298468389,298468390,1718088044],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":233,\"model_id\":198186796427,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rasb-m5q41ouggv6b82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1049126,700005507,298463379,822059908662278,825465608499232,825465608497696,1718093079,1119699,1213641,2018619,2023641,825465608492064,298933384,1015914,700190087,1718093084,298458398,298458396,1718088045,298468389,298468390,1718088044],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":233,\"model_id\":198186796427,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27224908602",
"debug_info": null
},
{
"item_basic": {
"itemid": 22921122316,
"shopid": 17470865,
"name": "MIDEA AC Standard 0.5 PK 05CRN + PASANG XtremeDura MSFC 05CRN2X",
"label_ids": [
844931064601283,
1400285055,
1015914,
700190087,
1059154,
1059152,
822059908662278,
825465608499232,
834403089593352,
825465608497696,
822120592853526,
1000031,
298463379,
2018619,
2018618,
1918643,
1718093079,
700700063,
1012763,
298893311,
298933384,
2153644,
2213652,
700810080,
2008656,
298468389,
1718088045
],
"image": "id-11134207-82251-mi6xbzse8vls5e",
"images": [
"id-11134207-82251-mi6xbzse8vls5e",
"id-11134207-8224o-mhbkjth6rrwq3d",
"id-11134207-8224x-mhbkjth6ul1mc7",
"id-11134207-8224y-mhbkjth6t6h6bc",
"id-11134207-8224z-mhbkjth6vzm2df"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1675237727,
"sold": 65,
"historical_sold": 1000,
"liked": false,
"liked_count": 3009,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 774,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 244500000000,
"price_min": 244500000000,
"price_max": 244500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.16000081725199615.mp4",
"thumb_url": "id-11110105-7r98t-lzngtjvbuyda38",
"duration": 59,
"version": 2,
"vid": "id-11110105-6ke1k-lzngtdu2ojjcda",
"formats": [
{
"format": 1600408,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.16004081728154952.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.16004081728154952.mp4",
"width": 360,
"height": 630
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.16000081725199615.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.16000081725199615.mp4",
"width": 484,
"height": 848
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ke1k-lzngtdu2ojjcda.default.mp4",
"width": 484,
"height": 848
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "PAKET",
"options": [
"UNIT ONLY",
"UNIT + PASANG",
"PASANG PIPA 3 M",
"PASANG PIPA 5 M",
"PASANG PIPA 6 M",
"PASANG PIPA 7 M",
"PASANG PIPA 8 M",
"PASANG PIPA 9 M",
"PASANG PIPA 10M",
"PASANG PIPA 11 M",
"PASANG PIPA 15M"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8878980891719745,
"rating_count": [
785,
5,
4,
12,
32,
732
],
"rcount_with_context": 357,
"rcount_with_image": 353
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 408613646778442,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 244500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 194156653769,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 244500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1000,
"rounded_local_monthly_sold_count": 65,
"local_monthly_sold_count_text": "65",
"rounded_display_sold_count": 1000,
"display_sold_count_text": "1RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "STARLYN Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
4
]
},
"itemid": 22921122316,
"shopid": 17470865,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi6xbzse8vls5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1015914,700190087,1059154,1059152,822059908662278,825465608499232,834403089593352,825465608497696,822120592853526,1000031,298463379,2018619,2018618,1918643,1718093079,700700063,1012763,298893311,298933384,2153644,2213652,700810080,2008656,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":234,\"model_id\":194156653769,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi6xbzse8vls5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400285055,1015914,700190087,1059154,1059152,822059908662278,825465608499232,834403089593352,825465608497696,822120592853526,1000031,298463379,2018619,2018618,1918643,1718093079,700700063,1012763,298893311,298933384,2153644,2213652,700810080,2008656,298468389,1718088045],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\",\"ac window\"],\"merge_rank\":234,\"model_id\":194156653769,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_22921122316",
"debug_info": null
},
{
"item_basic": {
"itemid": 20589742278,
"shopid": 233341203,
"name": "Entry Wall Cover Protective Pipe AC - Putih (Bagian dalam dinding)",
"label_ids": [
844931064601283,
700005490,
700005495,
822059908662278,
1213641,
825465608493600,
825465608494624,
825465608497696,
825465608499232,
1400285055,
1000031,
2018619,
2023641,
1015914,
700190087,
298893311,
298463379,
844931086908638,
2048660,
2048661,
700765096,
298933384,
2068629,
298938357,
298938368,
298468389,
298458396,
298458398,
298468390
],
"image": "id-11134207-7ra0t-mct18q50v5t3d7",
"images": [
"id-11134207-7ra0t-mct18q50v5t3d7",
"id-11134207-7ra0p-mct25vg07tp3de",
"id-11134207-7ra0i-mct25vg0989j2e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1686622537,
"sold": 30,
"historical_sold": 566,
"liked": false,
"liked_count": 133,
"view_count": null,
"catid": 100010,
"brand": "Rifeng",
"cmt_count": 126,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 2656400000,
"price_min": 2656400000,
"price_max": 2656400000,
"price_min_before_discount": 3053300000,
"price_max_before_discount": 3053300000,
"hidden_price_display": null,
"price_before_discount": 3053300000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-13%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.9689922480620154,
"rating_count": [
129,
0,
0,
0,
4,
125
],
"rcount_with_context": 22,
"rcount_with_image": 16
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 825188241948672,
"price": 2603200000,
"strikethrough_price": 3053300000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1328034671378432,
"discount_text": "-13%",
"model_id": 225309844911,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1328034671378432,
"voucher_code": "KULEKUL26",
"voucher_discount": 53200000,
"time_info": {
"start_time": 1767773700,
"end_time": 1774965600,
"valid_duration": null
},
"groups": [],
"min_spend": 2500000000
},
"recommended_platform_voucher_info": null,
"original_price": 3053300000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 566,
"rounded_local_monthly_sold_count": 30,
"local_monthly_sold_count_text": "30",
"rounded_display_sold_count": 566,
"display_sold_count_text": "566"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "KULEO",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 20589742278,
"shopid": 233341203,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0t-mct18q50v5t3d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,1213641,825465608493600,825465608494624,825465608497696,825465608499232,1400285055,1000031,2018619,2023641,1015914,700190087,298893311,298463379,844931086908638,2048660,2048661,700765096,298933384,2068629,298938357,298938368,298468389,298458396,298458398,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":235,\"model_id\":225309844911,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0t-mct18q50v5t3d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,1213641,825465608493600,825465608494624,825465608497696,825465608499232,1400285055,1000031,2018619,2023641,1015914,700190087,298893311,298463379,844931086908638,2048660,2048661,700765096,298933384,2068629,298938357,298938368,298468389,298458396,298458398,298468390],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":235,\"model_id\":225309844911,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_20589742278",
"debug_info": null
},
{
"item_basic": {
"itemid": 57952318903,
"shopid": 592127666,
"name": "MIDEA Air Cooler AC 100A (B) 6 Liter 3 Speed Swing 3 In 1 Remote Control Purifier Ionizer Humidifier",
"label_ids": [
2018619,
298463379,
844931064601283,
1718093079,
1400066568,
298933384,
1015914,
700190087,
1400285055,
1718087960,
1428713,
700765096,
1049112,
1049127,
822059908662278,
825465608497696,
2048660,
2048661,
822120592853526,
834403089593352,
2023641,
1718088045,
298468389
],
"image": "id-11134207-82250-mhy90q6exddy37",
"images": [
"id-11134207-82250-mhy90q6exddy37",
"sg-11134201-8225d-mhn8xwdfb9jc3f",
"sg-11134201-82271-mhn8xwt7cd1f6b",
"sg-11134201-8225p-mhn8xx87e9s6a7",
"sg-11134201-8227i-mhn8xxnmh2bq87",
"sg-11134201-8226v-mhn8xy1ic7ph47",
"sg-11134201-8224v-mhn8xydatibo9a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764412524,
"sold": 21,
"historical_sold": 24,
"liked": false,
"liked_count": 20,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 9,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 94800000000,
"price_min": 94800000000,
"price_max": 94800000000,
"price_min_before_discount": 179900000000,
"price_max_before_discount": 179900000000,
"hidden_price_display": null,
"price_before_discount": 179900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-47%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdv9-mhr3zhbfc8au33.16000081764646498.mp4",
"thumb_url": "id-11110105-6vdv9-mhr3zhbfc8au33_cover",
"duration": 47,
"version": 2,
"vid": "id-11110105-6vdv9-mhr3zhbfc8au33",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv9-mhr3zhbfc8au33.16000081764646498.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv9-mhr3zhbfc8au33.16000081764646498.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv9-mhr3zhbfc8au33.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "AC",
"options": [
"AC-100A",
"AC-100A(B)"
],
"images": [
"id-11134207-8224p-mife3c926byfd1",
"id-11134207-8224w-mife3c92vm6b5e"
],
"properties": [],
"type": 0
},
{
"name": "PACKING",
"options": [
"PACKING NORMAL",
"PACKING KAYU"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
9,
0,
0,
0,
0,
9
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 731757914161152,
"price": 94800000000,
"strikethrough_price": 179900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-47%",
"model_id": 385225014291,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 179900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 24,
"rounded_local_monthly_sold_count": 21,
"local_monthly_sold_count_text": "21",
"rounded_display_sold_count": 24,
"display_sold_count_text": "24"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "A1 ELECTRONIC",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": 659483316,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": "dWtkVGFRQUFBQUJzWjJGT9tbIGTwTTM9mmFQaSB5kZvAMLFN3o48UQMVovGWO6ZyjQ2EY3gIuY2EEFN79ZhaAGQxtxbE1bJPV9aErpuEhn7TUn/yCthHhX1gmtykRBu6/mL64F/6CzV6NQX3RZIiD0i2aji0rCb3r6X0OfT5QKhImQCXULA68Bo4sN6HGdSZ8Xf4qm2M+n3AJEZESRz+mzlpN7QNF4pHmedLB34wn6/V0IHEzwB5L64HO02uq3MaBad5xQfXo3+pbnoubqmyuBQKAqMRHlVM13h1xbWoJH6K/8fNbo5NqLpNqeon9vbeAmmBZ6qCr356dAofdp9rwGZk7N/KW7dda3iKhDTgaKvYALb6Uh6miEeEzav5vrX+orQCS5DHOBSh061kgMy9IDOxzwJftYTWDeUszAb18mEYKNnjTfRKnL1IEQFW+VyK4Pi6ub+wHO37UOn1DbPTyiD9cnxbNJRy4w28M/Epcwwq2HtzwCFw8eCSC2NY31Ln+rcqV9aVV1KofP07eKw0zg==",
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8ELTVu7oCGNf+4dQBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeWpRMkVZM2dJdVkyRUVGTjc5WmhhQUdReHR4YkUxYkpQVjlhRXJwdUVobjdUVW4veUN0aEhoWDFnbXR5a1JCdTYvbUw2NEYvNkN6VjZOUVgzUlpJaUQwaTJhamkwckNiM3I2WDBPZlQ1UUtoSW1RQ1hVTEE2OEJvNHNONkhHZFNaOFhmNHFtMk0rbjNBSkVaRVNSeittemxwTjdRTkY0cEhtZWRMQjM0d242L1YwSUhFendCNUw2NEhPMDJ1cTNNYUJhZDV4UWZYbzMrcGJub3VicW15dUJRS0FxTVJIbFZNMTNoMXhiV29KSDZLLzhmTmJvNU5xTHBOcWVvbjl2YmVBbW1CWjZxQ3IzNTZkQW9mZHA5cndHWms3Ti9LVzdkZGEzaUtoRFRnYUt2WUFMYjZVaDZtaUVlRXphdjV2clgrb3JRQ1M1REhPQlNoMDYxa2dNeTlJRE94endKZnRZVFdEZVVzekFiMThtRVlLTm5qVGZSS25MMUlFUUZXK1Z5SzRQaTZ1Yit3SE8zN1VPbjFEYlBUeWlEOWNueGJOSlJ5NHcyOE0vRXBjd3dxMkh0endDRnc4ZUNTQzJOWTMxTG4rcmNxVjlhVlYxS29mUDA3ZUt3MHpnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywa4AQHgAfWY9KqpAekBAAAA4JUl8T/xAQAAAIDmCfQ/yAwP4AwB6QwAAADg4Mu8P4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgMDfx9gCsA7VzKpq4g4Mqo0Gx40G1Y4G8ZAGyA8Z4hmkCkVsd3dMak01Tml3dE1Td3RNU3d0TVN3dE1Td3dMalFzTVN3d0xqWTNPVGswTmpNME5EazBOVFk1TnpRc01DNDVMQzB4TERBdU16ZzNOVGMyTlRjMk5qVTROamM0TXl3dE1Td3hMakkzTVRjd09EQTJORGsxTURBNU5Td3RNUjM1Nm5oTUlQaTJpd3N0ZzhES1BqVUFBSUEvT2NXRytKZkFsL1JCUWVRQUswejRmVWhDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFDQ2tGUkUvZVFBQUFFQUwrdmMrZ1FFQUFBRGc0WFpaUVlrQkFBQUFJUExjTTBHUkFRQUFBR2dlYmw1Qm1RRUFBQURnUGpCaFFhRUJBQUFBUUszUU9rR3BBUUFBQUloVWltUkI2QUVCZ0FLVUE0b0NQakF1TURBMU56RTFMREV1TURBd01EQXdMREV1TURNM05EazFMREV1TWpNek9ERTBMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUthbVptWm1ablpQNkVDcmU4MGVNSkp3VUhLQWdzSUFSR2gyMHNhbzNXVXY4b0NDd2dDRWZ1cDhkSk5ZbkMvMlFJQS9ZR0xlQ2xFUWVFQzRPM1BrRHU4SWtIcEFzcmJUbCtPOHF4QmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFQRmh2aVh3SmYwUWFFRDVBQXJUUGg5U0VLNUE2Q3J6S3hPTytBL3dRTThPQng2dU5IaVA4a0RUbFFDdWhSbDVqL1JBMW5vUXBjRHd1dy8rZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBTDZBdzBLQ1U5eVpHVnlWR2xsY2hBQytnTVJDZzFKZEdWdFVISnBZMlZVYVdWeUVBT0JCQUFBQUNEVFVnay9pUVFBQUFBZ3ZkOENQNUFFbXdPWUJKV2Q5K3RUb0FTQThvdW9DYWdFZ1BLTHFBbkFCSUR5aTZnSnlRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBR0FYYVhjL29RVUFBQUFBQUFEd1A2a0ZBQUFBSUpTWjhEK3hCUUFBQU9DenZmTS91UVVBQUFEQXpNejBQOEVGQUFBQVlHWm05ai9KQlFBQUFBQUFBUGcv6hkEuk3ATfoZjAYKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF81Nzk1MjMxODkwMwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjY0LCJhcGkxX2xhdGVuY3lfbXMiOjQ2LCJhcGkyX2xhdGVuY3lfbXMiOjU3LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzAsImFwaTBfYWRzX2NvdW50IjoyODEsImFwaTFfYWRzX2NvdW50IjoxNTQ5LCJhcGkyX2Fkc19jb3VudCI6MzE2LCJhcGkzX2Fkc19jb3VudCI6M30KEgoMdm91Y2hlcl9sZW5zEgIQAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAACwH4CAgICAgICoiAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSMg+AQ==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000,
1000,
4
]
},
"itemid": 57952318903,
"shopid": 592127666,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhy90q6exddy37\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,298463379,844931064601283,1718093079,1400066568,298933384,1015914,700190087,1400285055,1718087960,1428713,700765096,1049112,1049127,822059908662278,825465608497696,2048660,2048661,822120592853526,834403089593352,2023641,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":236,\"model_id\":385225014291,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":1,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhy90q6exddy37\",\"image_source\":0,\"is_ads\":true,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"simple_roi2\",\"label_ids\":[2018619,298463379,844931064601283,1718093079,1400066568,298933384,1015914,700190087,1400285055,1718087960,1428713,700765096,1049112,1049127,822059908662278,825465608497696,2048660,2048661,822120592853526,834403089593352,2023641,1718088045,298468389],\"matched_keywords\":[\"pendingin ruangan\",\"pendingin ruangan portable\",\"air conditioner\",\"ac window\"],\"merge_rank\":236,\"model_id\":385225014291,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000,1000,4],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":6,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": 0,
"traffic_source": 6,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "CtYCfG5ld19hYl9zaWdufDU3MDQ2Nnw1NDQ1MDR8NTQ3Nzg0fDYyMDIxM3w1ODA3ODN8NjA5Mjg4fDUzODc1NHw2Mjc2Njd8NjM1NzUyfDYyOTQ2MHw2MTk5NTd8NTI2NTA4fDQ0MjYzN3w1MzIzNjB8NjAzMzMxfDYwMjkyM3w1Nzg4Nzd8NjE4Mzc2fDYzNDc1MHw2MzU3OTB8NTM0MTc4fDUyNzQyOXw2MDA0MDZ8NjA5MTM5fDUwMDUzNXw2MzA3NzR8NTk3MDk4fDU5Njc1NHw1ODA3ODJ8NjA5MzA0fDYwODk5OXw1MDU3OTB8NTU0MDAwfDU2OTA0MHw2MTM4NTl8NjMxNTQ5fDU1NDc5Nnw1OTc4ODN8NjM0NzIxfDYxMzQyMnw1NDQ1NjF8NjIwOTc5fDU1NjYwN3w2MjM1MDN8NTQ0NTUxfDYwNTQ2N3w1OTM2Mjd8ELTVu7oCGNf+4dQBMpgEZFd0a1ZHRlJRVUZCUVVKeldqSkdUOXRiSUdUd1RUTTltbUZRYVNCNWtadkFNTEZOM280OFVRTVZvdkdXTzZaeWpRMkVZM2dJdVkyRUVGTjc5WmhhQUdReHR4YkUxYkpQVjlhRXJwdUVobjdUVW4veUN0aEhoWDFnbXR5a1JCdTYvbUw2NEYvNkN6VjZOUVgzUlpJaUQwaTJhamkwckNiM3I2WDBPZlQ1UUtoSW1RQ1hVTEE2OEJvNHNONkhHZFNaOFhmNHFtMk0rbjNBSkVaRVNSeittemxwTjdRTkY0cEhtZWRMQjM0d242L1YwSUhFendCNUw2NEhPMDJ1cTNNYUJhZDV4UWZYbzMrcGJub3VicW15dUJRS0FxTVJIbFZNMTNoMXhiV29KSDZLLzhmTmJvNU5xTHBOcWVvbjl2YmVBbW1CWjZxQ3IzNTZkQW9mZHA5cndHWms3Ti9LVzdkZGEzaUtoRFRnYUt2WUFMYjZVaDZtaUVlRXphdjV2clgrb3JRQ1M1REhPQlNoMDYxa2dNeTlJRE94endKZnRZVFdEZVVzekFiMThtRVlLTm5qVGZSS25MMUlFUUZXK1Z5SzRQaTZ1Yit3SE8zN1VPbjFEYlBUeWlEOWNueGJOSlJ5NHcyOE0vRXBjd3dxMkh0endDRnc4ZUNTQzJOWTMxTG4rcmNxVjlhVlYxS29mUDA3ZUt3MHpnPT1IMlKlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMHF7FK5H4XqUP4IBCWFjIHdpbmRvd5ABuLudywa4AQHgAfWY9KqpAekBAAAA4JUl8T/xAQAAAIDmCfQ/yAwP4AwB6QwAAADg4Mu8P4kNexSuR+F6lD+RDXsUrkfhepQ/oQ0AAAAAAADwP/gNgMDfx9gCsA7VzKpq4g4Mqo0Gx40G1Y4G8ZAGyA8Z4hmkCkVsd3dMak01Tml3dE1Td3RNU3d0TVN3dE1Td3dMalFzTVN3d0xqWTNPVGswTmpNME5EazBOVFk1TnpRc01DNDVMQzB4TERBdU16ZzNOVGMyTlRjMk5qVTROamM0TXl3dE1Td3hMakkzTVRjd09EQTJORGsxTURBNU5Td3RNUjM1Nm5oTUlQaTJpd3N0ZzhES1BqVUFBSUEvT2NXRytKZkFsL1JCUWVRQUswejRmVWhDU2hBSWdJQ0FnSUFFRVFBQUFBQUFBQUFBU2c0SXF2T1dBeEVBQUFBQUFBQUFBRW9PQ0t6emxnTVJBQUFBQUFBQUFBQktEZ2ljK3VFRUVRQUFBQUFBQUFBQVNnNElxL09XQXhFQUFBQUFBQUFBQUZJUUNJQ0FnSUNBQkJFQUFBQUFBQUFBQUZJT0NLcnpsZ01SQUFBQUFBQUFBQUJTRGdpczg1WURFUUFBQUFBQUFBQUFVZzRJcS9PV0F4RUFBQUFBQUFBQUFGb0hDS3p6bGdNUUFGb0hDS3Z6bGdNUUFGb0pDSUNBZ0lDQUJCQUFXZ2NJcXZPV0F4QUFZaEFJZ0lDQWdJQUVFUUFBQUFBQUFBQUFZZzRJcXZPV0F4RUFBQUFBQUFEd1AySU9DS3p6bGdNUkFBQUFBQUFBQUFCaURnaXI4NVlERVFBQUFBQUFBQUFBY1FBQUFDQ2tGUkUvZVFBQUFFQUwrdmMrZ1FFQUFBRGc0WFpaUVlrQkFBQUFJUExjTTBHUkFRQUFBR2dlYmw1Qm1RRUFBQURnUGpCaFFhRUJBQUFBUUszUU9rR3BBUUFBQUloVWltUkI2QUVCZ0FLVUE0b0NQakF1TURBMU56RTFMREV1TURBd01EQXdMREV1TURNM05EazFMREV1TWpNek9ERTBMREV1TXpBd01EQXdMREV1TkRBd01EQXdMREV1TlRBd01EQXdtUUthbVptWm1ablpQNkVDcmU4MGVNSkp3VUhLQWdzSUFSR2gyMHNhbzNXVXY4b0NDd2dDRWZ1cDhkSk5ZbkMvMlFJQS9ZR0xlQ2xFUWVFQzRPM1BrRHU4SWtIcEFzcmJUbCtPOHF4QmlnTXdBQUFBQUFBQThEOEFBQUFBQUFEd1B3QUFBQUFBQVBBL0FBQUFBQUFBOEQ4QUFBQUFBQUR3UHdBQUFBQUFBUEEvbVFQRmh2aVh3SmYwUWFFRDVBQXJUUGg5U0VLNUE2Q3J6S3hPTytBL3dRTThPQng2dU5IaVA4a0RUbFFDdWhSbDVqL1JBMW5vUXBjRHd1dy8rZ01KQ2dWSmMwNVFRaEFBK2dNTENnZFNiMmxVYVdWeUVBTDZBdzBLQ1U5eVpHVnlWR2xsY2hBQytnTVJDZzFKZEdWdFVISnBZMlZVYVdWeUVBT0JCQUFBQUNEVFVnay9pUVFBQUFBZ3ZkOENQNUFFbXdPWUJKV2Q5K3RUb0FTQThvdW9DYWdFZ1BLTHFBbkFCSUR5aTZnSnlRUjdGSzVINFhxVVArRUVleFN1UitGNmxEL3BCQUFBQUFBQUFQQS84UVFBQUFBQUFBRHdQL2tFQUFBQUFBQUE4RCtCQlFBQUFBQUFBUEEvaVFVQUFBQUFBQUR3UDVFRkFBQUFBQUFBOEQrWkJRQUFBR0FYYVhjL29RVUFBQUFBQUFEd1A2a0ZBQUFBSUpTWjhEK3hCUUFBQU9DenZmTS91UVVBQUFEQXpNejBQOEVGQUFBQVlHWm05ai9KQlFBQUFBQUFBUGcv6hkEuk3ATfoZjAYKDQoHaXNfdnNrdRICKAAKJAoXY3BtX2Fkc19kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoUCg51c2VyX2JsYWNrbGlzdBICKAAKFgoQdXNlcl9wcm9maWxlX3RhZxICGAAKKgoddHJhZmZpY19ib29zdF9kZWR1Y3Rpb25fcHJpY2USCQkAAAAAAAAAAAoaCg10cmFmZmljX2Jvb3N0EgkJAAAAAAAAAAAKFAoOc2hvcF9ibGFja2xpc3QSAigACmgKG3VuaV9wY3JfY2FzY2FkZV9tb2RlbF9uYW1lcxJJIkdncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkfGdwdV9wY3RyX3VwbGlmdF9nbHVfaWRfdDR8Z3B1X3VwbGlmdF9jcl9pZAoiCg92c2t1X3VuaXF1ZV9rZXkSDyINMF81Nzk1MjMxODkwMwoYChJyYXBpZF9ib29zdF90b2dnbGUSAigACiAKE2lkeF9yb2lfdXBwZXJfYm91bmQSCQkAAAAAAAAAAAoYChJlbnRyYW5jZV9ncm91cF9pZHgSAhABCvsBChNlbmdpbmVlcmluZ19tZXRyaWNzEuMBIuABeyJhcGkwX2xhdGVuY3lfbXMiOjY0LCJhcGkxX2xhdGVuY3lfbXMiOjQ2LCJhcGkyX2xhdGVuY3lfbXMiOjU3LCJhcGkzX2xhdGVuY3lfbXMiOjEsInJldHJpZXZhbF9sYXRlbmN5X21zIjoxNCwib25saW5lX2JpZGRpbmdfbGF0ZW5jeV9tcyI6MzAsImFwaTBfYWRzX2NvdW50IjoyODEsImFwaTFfYWRzX2NvdW50IjoxNTQ5LCJhcGkyX2Fkc19jb3VudCI6MzE2LCJhcGkzX2Fkc19jb3VudCI6M30KEgoMdm91Y2hlcl9sZW5zEgIQAAoWCg1iaXpfcXVldWVfaWRzEgUiA29yZwoZChByZWNhbGxfcXVldWVfaWRzEgUiA29yZwogChNvcmlfZGVkdWN0aW9uX3ByaWNlEgkJAAAAAAAAAACwH4CAgICAgICoiAHIHwnCJRxncHVfcGdtdl9wcm9iX3Npcl92M19wcm9tX2lkySWt7zR4wknBQfIlBlNFQVJDSMg+AQ==",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57952318903",
"debug_info": null
},
{
"item_basic": {
"itemid": 28150265580,
"shopid": 487262203,
"name": "magnet clutch AC Veloz 1.5 new Terios rush calya sigra agya ayla",
"label_ids": [
298458395,
844931064601283,
1213641,
1000031,
1400285055,
1015914,
700190087,
1718093079,
2018619,
298463379,
2023641,
1400066568,
298893311,
298933384,
700765096,
2068629,
298938357,
1049112,
700005512,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
825465608493600,
844931086908638,
298468390,
1718093084,
298938368,
1718088045,
2098629,
298468389,
298458396,
1718088044,
298458398,
2098628
],
"image": "id-11134207-7r990-lvfcfqw90nu7eb",
"images": [
"id-11134207-7r990-lvfcfqw90nu7eb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1715991312,
"sold": 68,
"historical_sold": 718,
"liked": false,
"liked_count": 29,
"view_count": null,
"catid": 100640,
"brand": "",
"cmt_count": 329,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 31000000000,
"price_min": 31000000000,
"price_max": 31000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.8698224852071,
"rating_count": [
338,
0,
1,
3,
35,
299
],
"rcount_with_context": 41,
"rcount_with_image": 29
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": true,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 31000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 205108921668,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 31000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 718,
"rounded_local_monthly_sold_count": 68,
"local_monthly_sold_count_text": "68",
"rounded_display_sold_count": 718,
"display_sold_count_text": "718"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Royalplatinumacmobil",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 28150265580,
"shopid": 487262203,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lvfcfqw90nu7eb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298458395,844931064601283,1213641,1000031,1400285055,1015914,700190087,1718093079,2018619,298463379,2023641,1400066568,298893311,298933384,700765096,2068629,298938357,1049112,700005512,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,844931086908638,298468390,1718093084,298938368,1718088045,2098629,298468389,298458396,1718088044,298458398,2098628],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":237,\"model_id\":205108921668,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r990-lvfcfqw90nu7eb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298458395,844931064601283,1213641,1000031,1400285055,1015914,700190087,1718093079,2018619,298463379,2023641,1400066568,298893311,298933384,700765096,2068629,298938357,1049112,700005512,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,844931086908638,298468390,1718093084,298938368,1718088045,2098629,298468389,298458396,1718088044,298458398,2098628],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":237,\"model_id\":205108921668,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28150265580",
"debug_info": null
},
{
"item_basic": {
"itemid": 43561137647,
"shopid": 1102835203,
"name": "Midea AC 1/2 PK ( 0.5 PK ) - MSFC-05CRN2X (Unit Indoor & Outdoor Only)",
"label_ids": [
2018619,
844931064601283,
1015914,
700190087,
1718093065,
2023641,
2068629,
298938357,
298463379,
700000528,
1059156,
1718093079,
822059908662278,
825465608499232,
825465608497696,
822120592853526,
825465608494624,
2108629,
1718088045,
298938368,
2098629,
298468389,
2098628
],
"image": "id-11134207-7ra0i-mcvlihdja2t48b",
"images": [
"id-11134207-7ra0i-mcvlihdja2t48b",
"id-11134207-7ra0i-mcvlihdj8o8oe6",
"id-11134207-7ra0o-mcvrqnjn687ra2",
"id-11134207-7ra0n-mcvrqnjn68fbdd",
"id-11134207-7ra0n-mcvrqnjx5tlj31"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1754032584,
"sold": 1,
"historical_sold": 2,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100010,
"brand": "Midea",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 250334900000,
"price_min": 250334900000,
"price_max": 250334900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ko2k-mcvrleyx4qt13a.16000081754032149.mp4",
"thumb_url": "id-11110105-6ko2k-mcvrleyx4qt13a_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6ko2k-mcvrleyx4qt13a",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ko2k-mcvrleyx4qt13a.16000081754032149.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ko2k-mcvrleyx4qt13a.16000081754032149.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ko2k-mcvrleyx4qt13a.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Temanggung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp834RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 250334900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 295934502890,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 250334900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp834RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Gentongmas Elektronik Official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000,
1000
]
},
"itemid": 43561137647,
"shopid": 1102835203,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0i-mcvlihdja2t48b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1015914,700190087,1718093065,2023641,2068629,298938357,298463379,700000528,1059156,1718093079,822059908662278,825465608499232,825465608497696,822120592853526,825465608494624,2108629,1718088045,298938368,2098629,298468389,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":238,\"model_id\":295934502890,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0i-mcvlihdja2t48b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1015914,700190087,1718093065,2023641,2068629,298938357,298463379,700000528,1059156,1718093079,822059908662278,825465608499232,825465608497696,822120592853526,825465608494624,2108629,1718088045,298938368,2098629,298468389,2098628],\"matched_keywords\":[\"pendingin ruangan\",\"air conditioner\"],\"merge_rank\":238,\"model_id\":295934502890,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000,1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43561137647",
"debug_info": null
},
{
"item_basic": {
"itemid": 27089275050,
"shopid": 39424619,
"name": "Pelindung AC Miniatur Bus RKC ( PROMO )",
"label_ids": [
2018619,
844931086908638,
844931064601283,
700005490,
700005495,
822059908662278,
825465608499232,
1119699,
298463379,
1718093079,
1400285055,
1428713,
1718087960,
1015914,
700190087,
700830033,
2108628,
1718088045,
298468389
],
"image": "id-11134207-7ra0k-mcqotzjm7upod8",
"images": [
"id-11134207-7ra0k-mcqotzjm7upod8",
"id-11134207-7ra0u-mcqouy91ffzsd8",
"id-11134207-7ra0l-mcqouy91ffvref",
"id-11134207-7ra0g-mcqouy9ve82r51",
"id-11134207-7ra0h-mcqouyel7bkz14",
"id-11134207-7ra0h-mcqouydh8y0731",
"id-11134207-7ra0u-mcqouycdakl47f",
"id-11134207-7ra0s-mcqouyazclcnd5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1753725538,
"sold": 49,
"historical_sold": 211,
"liked": false,
"liked_count": 43,
"view_count": null,
"catid": 100640,
"brand": "",
"cmt_count": 72,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 1500000000,
"price_min": 1500000000,
"price_max": 1500000000,
"price_min_before_discount": 2500000000,
"price_max_before_discount": 2500000000,
"hidden_price_display": null,
"price_before_discount": 2500000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-40%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ko29-mcqp2ld4u14se0.16000081753725219.mp4",
"thumb_url": "id-11110107-6ko29-mcqp2ld4u14se0_cover",
"duration": 31,
"version": 2,
"vid": "id-11110107-6ko29-mcqp2ld4u14se0",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ko29-mcqp2ld4u14se0.16000081753725219.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko29-mcqp2ld4u14se0.16000081753725219.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ko29-mcqp2ld4u14se0.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Silver",
"Merah",
"Biru Muda",
"Putih",
"Hitam",
"Pink"
],
"images": [
"id-11134207-7ra0h-mcqp6wmnmejbe8",
"id-11134207-7ra0t-mcqp7a5vtewo7e",
"id-11134207-7ra0m-mcqp7j5enz1jfa",
"id-11134207-7ra0r-mcqp7vqi8x2b20",
"id-11134207-7ra0u-mcqp8443zjtjd6",
"id-11134207-7ra0l-mcqp8b4vpnso80"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.861111111111111,
"rating_count": [
72,
0,
0,
3,
4,
65
],
"rcount_with_context": 5,
"rcount_with_image": 8
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 781242522468352,
"price": 1500000000,
"strikethrough_price": 2500000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-40%",
"model_id": 295897805437,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 2500000000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 211,
"rounded_local_monthly_sold_count": 49,
"local_monthly_sold_count_text": "49",
"rounded_display_sold_count": 211,
"display_sold_count_text": "211"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Zemix Junior Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 27089275050,
"shopid": 39424619,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-mcqotzjm7upod8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,700005490,700005495,822059908662278,825465608499232,1119699,298463379,1718093079,1400285055,1428713,1718087960,1015914,700190087,700830033,2108628,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":239,\"model_id\":295897805437,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7ra0k-mcqotzjm7upod8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,700005490,700005495,822059908662278,825465608499232,1119699,298463379,1718093079,1400285055,1428713,1718087960,1015914,700190087,700830033,2108628,1718088045,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":239,\"model_id\":295897805437,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27089275050",
"debug_info": null
},
{
"item_basic": {
"itemid": 40904358745,
"shopid": 1524828106,
"name": "Kipas Angin Exhaust fan/ Hexos Dinding OKAYAMA 8/10/12 INCH - OK8D/ OK10D / OK12D",
"label_ids": [
1400066568,
2018619,
1428713,
1718087960,
844931064601283,
1049122,
1059152,
822059908662278,
825465608497696,
825465608499232,
1718093079,
1213641,
1400285055,
1015914,
700190087,
1718093065,
298463379,
700765096,
700830032,
844931086908638,
2048660,
2048661,
825465608493600,
2023641,
1718088045,
1718088044,
298458398,
298458396,
1718093084,
298468390,
298468389
],
"image": "id-11134207-7rbk7-maxqtvoskul2a4",
"images": [
"id-11134207-7rbk7-maxqtvoskul2a4",
"id-11134207-7rbkd-maxqtvosgmvq4e",
"id-11134207-7rbkb-maxqtvosi1g690",
"id-11134207-7rbkd-maxqtvosjg0m07",
"id-11134207-8224p-mfw9dwbc5u6i5a",
"id-11134207-7rbkb-maxr5ogelcpl15"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1749795006,
"sold": 1000,
"historical_sold": 10000,
"liked": false,
"liked_count": 8583,
"view_count": null,
"catid": 100010,
"brand": "Okayama",
"cmt_count": 4011,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 13990000000,
"price_min": 13990000000,
"price_max": 13990000000,
"price_min_before_discount": 28800000000,
"price_max_before_discount": 28800000000,
"hidden_price_display": null,
"price_before_discount": 28800000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-51%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16000081753080275.mp4",
"thumb_url": "id-11110105-6kou5-mcg1ir7wcy5589_cover",
"duration": 28,
"version": 2,
"vid": "id-11110105-6kou5-mcg1ir7wcy5589",
"formats": [
{
"format": 1600671,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16006711753475601.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16006711753475601.mp4",
"width": 540,
"height": 960
},
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16000081753080275.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16000081753080275.mp4",
"width": 720,
"height": 1280
},
{
"format": 1600325,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16003251753475601.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.16003251753475601.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6kou5-mcg1ir7wcy5589.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Varian",
"options": [
"8D",
"10D",
"12D"
],
"images": [
"id-11134207-7rbk5-maxr5ogemra171",
"id-11134207-7rbkd-maxr5ogeo5uh08",
"id-11134207-7rbka-maxr5ogepkex6c"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.864123659935179,
"rating_count": [
4011,
20,
20,
84,
237,
3650
],
"rcount_with_context": 788,
"rcount_with_image": 609
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-7rbk7-maxqtvoskul2a4",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 734159211921408,
"price": 13990000000,
"strikethrough_price": 28800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-51%",
"model_id": 265370458404,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 28800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 10000,
"rounded_local_monthly_sold_count": 1000,
"local_monthly_sold_count_text": "1RB+",
"rounded_display_sold_count": 10000,
"display_sold_count_text": "10RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "STB Electronics",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 40904358745,
"shopid": 1524828106,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-maxqtvoskul2a4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1428713,1718087960,844931064601283,1049122,1059152,822059908662278,825465608497696,825465608499232,1718093079,1213641,1400285055,1015914,700190087,1718093065,298463379,700765096,700830032,844931086908638,2048660,2048661,825465608493600,2023641,1718088045,1718088044,298458398,298458396,1718093084,298468390,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":240,\"model_id\":265370458404,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk7-maxqtvoskul2a4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1428713,1718087960,844931064601283,1049122,1059152,822059908662278,825465608497696,825465608499232,1718093079,1213641,1400285055,1015914,700190087,1718093065,298463379,700765096,700830032,844931086908638,2048660,2048661,825465608493600,2023641,1718088045,1718088044,298458398,298458396,1718093084,298468390,298468389],\"matched_keywords\":[\"pendingin ruangan\"],\"merge_rank\":240,\"model_id\":265370458404,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40904358745",
"debug_info": null
},
{
"item_basic": {
"itemid": 18163934744,
"shopid": 341424064,
"name": "Knop knob putaran AC daihatsu SIGRA AYLA toyota CALYA AGYA ORIGINAL",
"label_ids": [
1049112,
1059151,
844931064601283,
822059908662278,
1213641,
1400285055,
298463379,
825465608493600,
825465608497696,
825465608499232,
840955085144628,
840990690654214,
1015914,
700190087,
298458395,
1119699,
1718093079,
1000031,
844931086908638,
2018619,
298893311,
298933384,
2023641,
700830075,
2048660,
2048661,
700810080,
700765096,
298468390,
1718093084,
1718088044,
298458396,
1718088045,
298458398,
298468389
],
"image": "id-11134207-7r98w-lyz85wmllpt4d0",
"images": [
"id-11134207-7r98w-lyz85wmllpt4d0",
"sg-11134201-22110-zpjz1eksc7jve5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1669060297,
"sold": 401,
"historical_sold": 4000,
"liked": false,
"liked_count": 320,
"view_count": null,
"catid": 100640,
"brand": "",
"cmt_count": 1208,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 1999900000,
"price_min": 1999900000,
"price_max": 1999900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"1pcs hitam",
"1pcs Silver"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.802931596091205,
"rating_count": [
1228,
10,
13,
27,
109,
1069
],
"rcount_with_context": 227,
"rcount_with_image": 169
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1999900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 117751205304,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1999900000,
"model_selection_logic": 2,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 4000,
"rounded_local_monthly_sold_count": 401,
"local_monthly_sold_count_text": "401",
"rounded_display_sold_count": 4000,
"display_sold_count_text": "4RB+"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Alfadani motor",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTk5LjE3NF97YjExYmEzYWY0ODU1N2RjZThhOWZhYzc1ZGExNTExMDA6MDIwMDAwNDNkY2E1ZGM2MzowMTAwMDE1ZDY1MWNlN2M2fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2Mjc1NzQ1NDMyMA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
1000
]
},
"itemid": 18163934744,
"shopid": 341424064,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-lyz85wmllpt4d0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049112,1059151,844931064601283,822059908662278,1213641,1400285055,298463379,825465608493600,825465608497696,825465608499232,840955085144628,840990690654214,1015914,700190087,298458395,1119699,1718093079,1000031,844931086908638,2018619,298893311,298933384,2023641,700830075,2048660,2048661,700810080,700765096,298468390,1718093084,1718088044,298458396,1718088045,298458398,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":241,\"model_id\":117751205304,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98w-lyz85wmllpt4d0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049112,1059151,844931064601283,822059908662278,1213641,1400285055,298463379,825465608493600,825465608497696,825465608499232,840955085144628,840990690654214,1015914,700190087,298458395,1119699,1718093079,1000031,844931086908638,2018619,298893311,298933384,2023641,700830075,2048660,2048661,700810080,700765096,298468390,1718093084,1718088044,298458396,1718088045,298458398,298468389],\"matched_keywords\":[\"air conditioner\"],\"merge_rank\":241,\"model_id\":117751205304,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[1000],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_18163934744",
"debug_info": null
}
],
"total_fetched": 300,
"total_count": 0,
"pages_fetched": 11,
"has_more": false
}
},
"https://shopee.co.id/Perangkat-Wearable-cat.11044458.11044504?minPrice=200000": {
"page_url": "https://shopee.co.id/Perangkat-Wearable-cat.11044458.11044504?minPrice=200000",
"page_type": "category",
"page_params": {
"match_id": 11044504,
"filters": {
"minPrice": "200000"
}
},
"items": {
"items": [
{
"item_basic": {
"itemid": 54254643790,
"shopid": 1666733759,
"name": "wajib punya skmei dm56 smartwatch gps map | 1.43 amoled | 5atm waterproof | compass | altitude air pressure jam olahraga / smartwatch bahasa indonesia / skmei smartwatch gps kompas mendukung strava /pelacakan real-time/",
"label_ids": [
844931064601283,
700005509,
1049138,
822059908662278,
825465608499232,
1718093079
],
"image": "id-11134201-8224w-mjgtdnfwkh6pfb",
"images": [
"id-11134201-8224w-mjgtdnfwkh6pfb",
"id-11134201-8224w-mjgtdoipfg1xf4",
"id-11134201-8224s-mjgtdr3hsq2qd2",
"id-11134201-8224s-mjgtdtsj02kif0",
"id-11134201-8224x-mjgtduxj2juv46",
"id-11134201-8224v-mjgtdxlvqd53e9",
"id-11134201-82250-mjgtdzgz0f7lcf",
"id-11134201-8224q-mjgte1c09iwx6d",
"id-11134201-8224y-mjgte2egod1d87"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381842,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 83006800000,
"price_min": 83006800000,
"price_max": 83006800000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Hitam + Strap",
"DM56 Black+ 3 Gift",
"Silver Add Strap",
"Black",
"B78 Red",
"Black Add Strap",
"B78 Black",
"DM56 Silver+3 Gift",
"Silver"
],
"images": [
"id-11134201-8224v-mjgte7aa8zk2e1",
"id-11134201-82252-mjgte92ipssh4a",
"id-11134201-82251-mjgtea5mb1tz84",
"id-11134201-8224z-mjgtec2bvocie4",
"id-11134201-8224u-mjgted2s3xfn12",
"id-11134201-8224o-mjgtefo2dzpg8e",
"id-11134201-8224z-mjgtei7yesxsa7",
"id-11134201-82250-mjgtej9jncw2c3",
"id-11134201-8224t-mjgtek9y5szk87"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 83006800000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345432824265,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 83006800000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54254643790,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgtdnfwkh6pfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1,\"model_id\":345432824265,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgtdnfwkh6pfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1,\"model_id\":345432824265,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54254643790",
"debug_info": null
},
{
"item_basic": {
"itemid": 41378012797,
"shopid": 1623695925,
"name": "Ready Stock Haylou Solar Lite Smart Watch Ip68 Sp02 1.38\" Display",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224y-mjgteavxtv5w85",
"images": [
"id-11134201-8224y-mjgteavxtv5w85",
"id-11134201-8224w-mjgteddndwcmae",
"id-11134201-8224v-mjgteeciuepy61",
"id-11134201-8224u-mjgteg47al1db2",
"id-11134201-8224y-mjgteiprn08z32",
"id-11134201-8224t-mjgtejoszksj82",
"id-11134201-8224w-mjgteknylath85"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381841,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 39800000000,
"price_min": 39800000000,
"price_max": 39800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"PUTIH",
"BiruTua"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 39800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 360432828855,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 39800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 41378012797,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgteavxtv5w85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2,\"model_id\":360432828855,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgteavxtv5w85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2,\"model_id\":360432828855,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41378012797",
"debug_info": null
},
{
"item_basic": {
"itemid": 27744037735,
"shopid": 1623695925,
"name": "Limited Advan Smartwatch S1 S1 V2 Ai Voice Ips 2.01 Inch Waterproof Bluetooth Call",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224w-mjgtcj2oepdx51",
"images": [
"id-11134201-8224w-mjgtcj2oepdx51",
"id-11134201-82252-mjgtcl066whwe4",
"id-11134201-8224t-mjgtcnrxu7sybd",
"id-11134201-8224s-mjgtcq9fsdtt22",
"id-11134201-8224s-mjgtcra0fd3b7e",
"id-11134201-8224r-mjgtcs9ywhs71e",
"id-11134201-8224s-mjgtcu2a6fwn53",
"id-11134201-8224r-mjgtcvvxoide9f",
"id-11134201-8224p-mjgtcxn8foxtda"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381783,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 31200000000,
"price_min": 31200000000,
"price_max": 31200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"S1V2 Black",
"S1V2 Silver",
"S1 Black",
"S1 Silver",
"S1 Gold",
"S1 Taqwa Black",
"S1 Taqwa Gold",
"S1V2 Gold"
],
"images": [
"id-11134201-8224p-mjgtd2g0u0w48f",
"id-11134201-8224p-mjgtd45dla831a",
"id-11134201-8224t-mjgtd559rhtu8e",
"id-11134201-82251-mjgtd64fvfnp78",
"id-11134201-8224o-mjgtd7uek45f6f",
"id-11134201-8224q-mjgtd8vsqfb91a",
"id-11134201-8224q-mjgtdanreo02c5",
"id-11134201-8224z-mjgtdcetktmr73"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 31200000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 440432822840,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 31200000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 27744037735,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgtcj2oepdx51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":3,\"model_id\":440432822840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgtcj2oepdx51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":3,\"model_id\":440432822840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27744037735",
"debug_info": null
},
{
"item_basic": {
"itemid": 57654653155,
"shopid": 1666692538,
"name": "TERBARU itel Smart watch O43 1.43 inch AMOLED Touch Screen IP68 water proof Jam Tangan Pria fitness tracking SmartWatch",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-8224r-mjgtbuzvhhxi00",
"images": [
"id-11134201-8224r-mjgtbuzvhhxi00",
"id-11134201-8224o-mjgtbxk0og7792",
"id-11134201-8224q-mjgtbzardladfe",
"id-11134201-82252-mjgtc1rwj11fc2",
"id-11134201-8224u-mjgtc2qol8uf2e",
"id-11134201-82250-mjgtc598rxty2e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381733,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 51900000000,
"price_min": 51900000000,
"price_max": 51900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"hijau",
"hitam",
"biru"
],
"images": [
"id-11134201-8224o-mjgtc7i4268619",
"id-11134201-82252-mjgtc1rwj11fc2",
"id-11134201-82251-mjgtc9ztje9y32"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 51900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445432814130,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 51900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57654653155,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgtbuzvhhxi00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":5,\"model_id\":445432814130,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgtbuzvhhxi00\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":5,\"model_id\":445432814130,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57654653155",
"debug_info": null
},
{
"item_basic": {
"itemid": 56804657794,
"shopid": 1623695925,
"name": "Premium Goojodoq Curve Smart Watch New | Ip68 Waterproof | 2.01-Inch Curved Ips Screen | Bluetooth Call | Running Pace | Custom Wallpaper Smartwatch",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224o-mjgtalh0vd3b46",
"images": [
"id-11134201-8224o-mjgtalh0vd3b46",
"id-11134201-8224o-mjgtan7ymqys55",
"id-11134201-82250-mjgtapre17ur16",
"id-11134201-8224o-mjgtas9jjpq8af",
"id-11134201-8224q-mjgtat8ly96vd2",
"id-11134201-82250-mjgtav2c5af74f",
"id-11134201-82250-mjgtaw14pt6u4d",
"id-11134201-8224t-mjgtaxudxrsy10",
"id-11134201-8224q-mjgtazm9kg7847"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381692,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 30416900000,
"price_min": 30416900000,
"price_max": 30416900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Sliver-B",
"Black-Curved Screen",
"Sliver-Curved Screen",
"Green-B",
"Pink-B",
"Black-B"
],
"images": [
"id-11134201-82251-mjgtb3m86z9ca2",
"id-11134201-8224y-mjgtb5cc9eyo91",
"id-11134201-8224q-mjgtb6a6xa87ac",
"id-11134201-8224p-mjgtb8rtik8y1f",
"id-11134201-82250-mjgtbb9c37d14a",
"id-11134201-8224w-mjgtbczl9ngj77"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 30416900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 302333714238,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 30416900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56804657794,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgtalh0vd3b46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":9,\"model_id\":302333714238,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgtalh0vd3b46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":9,\"model_id\":302333714238,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56804657794",
"debug_info": null
},
{
"item_basic": {
"itemid": 56404657715,
"shopid": 1666733759,
"name": "100% aman advan smartwatch s1 s1 v2 ai voice ips 2.01 inch waterproof bluetooth call",
"label_ids": [
844931064601283,
700005509,
1049138,
1718093079,
822059908662278,
825465608499232
],
"image": "id-11134201-8224v-mjgtad8n9ywzc2",
"images": [
"id-11134201-8224v-mjgtad8n9ywzc2",
"id-11134201-8224t-mjgtae7rtrlz77",
"id-11134201-8224q-mjgtaf6ukwliba",
"id-11134201-82251-mjgtahsk5ibo2c",
"id-11134201-8224q-mjgtakcmja4nc5",
"id-11134201-8224v-mjgtan0sbx1if0",
"id-11134201-82250-mjgtapigpt6v40",
"id-11134201-8224r-mjgtar9lxhj4ab",
"id-11134201-8224u-mjgtas8kwdfl40"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381683,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 31900000000,
"price_min": 31900000000,
"price_max": 31900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"S1V2 Black",
"S1V2 Silver",
"S1 Black",
"S1 Silver",
"S1 Gold",
"S1 Taqwa Black",
"S1 Taqwa Gold",
"S1V2 Gold"
],
"images": [
"id-11134201-8224p-mjgtax7ndbswe9",
"id-11134201-8224s-mjgtay66f406ab",
"id-11134201-8224u-mjgtaz41ct8hbf",
"id-11134201-82251-mjgtb1l06ozkce",
"id-11134201-8224y-mjgtb3awddz7bd",
"id-11134201-8224v-mjgtb5167sw4ac",
"id-11134201-8224v-mjgtb5zw4rgnc5",
"id-11134201-8224u-mjgtb7px03r705"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 31900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435432820521,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 31900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56404657715,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgtad8n9ywzc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":10,\"model_id\":435432820521,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgtad8n9ywzc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":10,\"model_id\":435432820521,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56404657715",
"debug_info": null
},
{
"item_basic": {
"itemid": 55004657814,
"shopid": 1656110262,
"name": "KUALITAS SUPER 100% ASLI SAMSUNG SMARTWATCH XS 11 PRO MAX GPS NFC IP68 WATERPROOF BLUETOOTH CALL JAM SMARTWATCH WANITA PRIA MONITOR DETAK JANTUNG TEKANAN DARAH WIRELESS CHARGING DAN GANTI WALLPAPPER JAM TANGAN WANITA JAM TANGAN COUPLE JAM TANGAN DIGITAL",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224y-mjgt9yjgsn440a",
"images": [
"id-11134201-8224y-mjgt9yjgsn440a",
"id-11134201-8224p-mjgta10l1q85fe",
"id-11134201-82250-mjgta3hdbkzq55",
"id-11134201-8224p-mjgta5y03dog41",
"id-11134201-8224q-mjgta7o1e4na5c",
"id-11134201-8224p-mjgtaa3u8jr7a9",
"id-11134201-8224o-mjgtackyonphdb",
"id-11134201-82250-mjgtadhsv5z97e",
"id-11134201-82251-mjgtaf5wledde5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381659,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 28149900000,
"price_min": 28149900000,
"price_max": 28149900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "1",
"options": [
"black",
"white",
"pink",
"black."
],
"images": [
"id-11134201-82252-mjgtaio2nimaba",
"id-11134201-8224u-mjgtal63kcn6ce",
"id-11134201-8224o-mjgtamxtt539e1",
"id-11134201-8224r-mjgtanu5q9l3ae"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 28149900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355432816246,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 28149900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55004657814,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgt9yjgsn440a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":11,\"model_id\":355432816246,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgt9yjgsn440a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":11,\"model_id\":355432816246,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55004657814",
"debug_info": null
},
{
"item_basic": {
"itemid": 54104648252,
"shopid": 1623695925,
"name": "Cuci Gudang Apexglow Smartwatch T800 Promax Tahanair Bt5.0 Lacakjantung Notifikasi Wa Gps Garansi2Thn Shopeemall",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224x-mjgtbo1hd9tu37",
"images": [
"id-11134201-8224x-mjgtbo1hd9tu37",
"id-11134201-8224q-mjgtbqkmw9vnaf",
"id-11134201-8224w-mjgtbtf6e4g30b",
"id-11134201-8224z-mjgtbue66i9w1a",
"id-11134201-8224p-mjgtbw456dqe15",
"id-11134201-8224s-mjgtbxtcnytc02",
"id-11134201-8224q-mjgtbzl28x6pa5",
"id-11134201-8224z-mjgtc1csc6itcd",
"id-11134201-8224q-mjgtc3vydfyfeb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381732,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21445100000,
"price_min": 21445100000,
"price_max": 21445100000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Spesifikasi",
"options": [
"Hitam",
"Pink",
"Putih"
],
"images": [
"id-11134201-8224v-mjgtc5lol9mrcd",
"id-11134201-8224w-mjgtc79wuhhj36",
"id-11134201-8224t-mjgtc8y2rc3mef"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21445100000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 282333718390,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21445100000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54104648252,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgtbo1hd9tu37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":6,\"model_id\":282333718390,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgtbo1hd9tu37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":6,\"model_id\":282333718390,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54104648252",
"debug_info": null
},
{
"item_basic": {
"itemid": 50954643839,
"shopid": 1666733759,
"name": "100% aman itel smart watch o43 1.43 inch amoled touch screen ip68 water proof jam tangan pria fitness tracking smartwatch",
"label_ids": [
844931064601283,
700005509,
1049138,
1718093079,
822059908662278,
825465608499232
],
"image": "id-11134201-8224x-mjgtbh6yp8906c",
"images": [
"id-11134201-8224x-mjgtbh6yp8906c",
"id-11134201-8224q-mjgtbiysqcxz9f",
"id-11134201-8224s-mjgtblhbs9vk03",
"id-11134201-8224r-mjgtbn8ew6pv7e",
"id-11134201-82251-mjgtbo8vl91j64",
"id-11134201-8224u-mjgtbp8y5wxu28"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381712,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 51900000000,
"price_min": 51900000000,
"price_max": 51900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"hijau",
"hitam",
"biru"
],
"images": [
"id-11134201-82251-mjgtbr3enncw0c",
"id-11134201-8224u-mjgtbp8y5wxu28",
"id-11134201-82250-mjgtbswdw26906"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 51900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445432825865,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 51900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50954643839,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgtbh6yp8906c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":7,\"model_id\":445432825865,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgtbh6yp8906c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":7,\"model_id\":445432825865,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50954643839",
"debug_info": null
},
{
"item_basic": {
"itemid": 43628008019,
"shopid": 1666692538,
"name": "FAST DELIVERY ADVAN Smartwatch S1 S1 V2 AI Voice IPS 2.01 inch Waterproof Bluetooth Call",
"label_ids": [
844931064601283,
700005503,
1049130,
822059908662278,
825465608499232
],
"image": "id-11134201-8224s-mjgtamchoyyv51",
"images": [
"id-11134201-8224s-mjgtamchoyyv51",
"id-11134201-8224z-mjgtaou1fny94f",
"id-11134201-8224s-mjgtarc8mltv1b",
"id-11134201-8224r-mjgtat3xxq8633",
"id-11134201-82251-mjgtavmk9q1020",
"id-11134201-82252-mjgtay3obqpyd2",
"id-11134201-8224t-mjgtb0ls1o1sea",
"id-11134201-8224v-mjgtb33dl0qrca",
"id-11134201-8224o-mjgtb41d7a4if9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381701,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 31600000000,
"price_min": 31600000000,
"price_max": 31600000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"S1V2 Black",
"S1V2 Silver",
"S1 Black",
"S1 Silver",
"S1 Gold",
"S1 Taqwa Black",
"S1 Taqwa Gold",
"S1V2 Gold"
],
"images": [
"id-11134201-8224o-mjgtb7n3xzb8a4",
"id-11134201-8224s-mjgtb9e0ui9y6b",
"id-11134201-8224o-mjgtbbwepn9ia8",
"id-11134201-8224y-mjgtbecbxdz78d",
"id-11134201-82251-mjgtbf8mfzlydc",
"id-11134201-82250-mjgtbgzvzmkhe8",
"id-11134201-8224s-mjgtbhyamolge6",
"id-11134201-8224x-mjgtbk06imf42c"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 31600000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345432821118,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 31600000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43628008019,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgtamchoyyv51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":8,\"model_id\":345432821118,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgtamchoyyv51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":8,\"model_id\":345432821118,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43628008019",
"debug_info": null
},
{
"item_basic": {
"itemid": 41528008000,
"shopid": 1666692538,
"name": "TERLARIS APEXGLOW Smartwatch T800 ProMax TahanAir BT5.0 LacakJantung Notifikasi WA GPS Garansi2Thn ShopeeMall",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-82252-mjgt9sr71ts0ee",
"images": [
"id-11134201-82252-mjgt9sr71ts0ee",
"id-11134201-8224t-mjgt9ugt3e9s6b",
"id-11134201-8224o-mjgt9veryyv5d8",
"id-11134201-8224p-mjgt9xwk29dvff",
"id-11134201-8224u-mjgt9zmgohs0a5",
"id-11134201-82250-mjgta0jydyx3fa",
"id-11134201-8224z-mjgta1hp2ltsbb",
"id-11134201-8224z-mjgta3yno0lf7c",
"id-11134201-82252-mjgta4xfdmva2b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381643,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21045100000,
"price_min": 21045100000,
"price_max": 21045100000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Spesifikasi",
"options": [
"Hitam",
"Pink",
"Putih"
],
"images": [
"id-11134201-82251-mjgta6gthsldff",
"id-11134201-82251-mjgta8x6tm9s57",
"id-11134201-8224x-mjgtabehqy2u93"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21045100000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390432804660,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21045100000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 41528008000,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgt9sr71ts0ee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":12,\"model_id\":390432804660,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgt9sr71ts0ee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":12,\"model_id\":390432804660,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41528008000",
"debug_info": null
},
{
"item_basic": {
"itemid": 56254648241,
"shopid": 1666692538,
"name": "TERBARU Goojodoq Curve Smart Watch New | IP68 Waterproof | 2.01-inch Curved IPS Screen | Bluetooth Call | Running Pace | Custom Wallpaper Smartwatch",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-82251-mjgt8pn4xz4106",
"images": [
"id-11134201-82251-mjgt8pn4xz4106",
"id-11134201-8224w-mjgt8s41s7wj4c",
"id-11134201-8224t-mjgt8t24ptz92a",
"id-11134201-82250-mjgt8vkbd5hg54",
"id-11134201-8224t-mjgt8y0u72tgbe",
"id-11134201-8224y-mjgt90innj7k4b",
"id-11134201-8224w-mjgt93066q6a6c",
"id-11134201-8224y-mjgt95gwpddy85",
"id-11134201-8224u-mjgt975t2mm888"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381605,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 29916900000,
"price_min": 29916900000,
"price_max": 29916900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Sliver-B",
"Black-Curved Screen",
"Sliver-Curved Screen",
"Green-B",
"Pink-B",
"Black-B"
],
"images": [
"id-11134201-8224y-mjgt99u9r5z7f0",
"id-11134201-8224r-mjgt9bjl9dzb86",
"id-11134201-8224r-mjgt9dcvf3t32a",
"id-11134201-82252-mjgt9f1bshs737",
"id-11134201-8224p-mjgt9hldtkw304",
"id-11134201-8224y-mjgt9jalgttsd4"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 29916900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405432811103,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 29916900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56254648241,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgt8pn4xz4106\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":14,\"model_id\":405432811103,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgt8pn4xz4106\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":14,\"model_id\":405432811103,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56254648241",
"debug_info": null
},
{
"item_basic": {
"itemid": 54954653235,
"shopid": 1666733759,
"name": "exclusive apexglow smartwatch t800 promax tahanair bt5.0 lacakjantung notifikasi wa gps garansi2thn shopeemall",
"label_ids": [
844931064601283,
1718093079,
700005509,
1049138,
822059908662278,
825465608499232
],
"image": "id-11134201-8224y-mjgt9l0gpt6t48",
"images": [
"id-11134201-8224y-mjgt9l0gpt6t48",
"id-11134201-82251-mjgt9mq91hj9cb",
"id-11134201-8224s-mjgt9noqlw5hb8",
"id-11134201-8224p-mjgt9onybf9f89",
"id-11134201-82251-mjgt9qf4z47b99",
"id-11134201-8224x-mjgt9rgufdhgb5",
"id-11134201-8224u-mjgt9t7gzpj588",
"id-11134201-8224y-mjgt9uxcfpqafb",
"id-11134201-82250-mjgt9vzobnk648"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381631,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 20845100000,
"price_min": 20845100000,
"price_max": 20845100000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Spesifikasi",
"options": [
"Hitam",
"Pink",
"Putih"
],
"images": [
"id-11134201-8224o-mjgt9z1t2d51a8",
"id-11134201-8224w-mjgta0s0c0zn0b",
"id-11134201-82250-mjgta1sg91jac3"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 20845100000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 415432811846,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 20845100000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54954653235,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgt9l0gpt6t48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":13,\"model_id\":415432811846,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgt9l0gpt6t48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":13,\"model_id\":415432811846,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54954653235",
"debug_info": null
},
{
"item_basic": {
"itemid": 53854653189,
"shopid": 1666733759,
"name": "favorit goojodoq curve smart watch new | ip68 waterproof | 2.01-inch curved ips screen | bluetooth call | running pace | custom wallpaper smartwatch",
"label_ids": [
844931064601283,
700005509,
1049138,
1718093079,
822059908662278,
825465608499232
],
"image": "id-11134201-8224u-mjgt8k8jc8aq3b",
"images": [
"id-11134201-8224u-mjgt8k8jc8aq3b",
"id-11134201-8224o-mjgt8msfzime6b",
"id-11134201-8224q-mjgt8pb16osn4e",
"id-11134201-82252-mjgt8qb3hh4x2e",
"id-11134201-8224t-mjgt8rabgu8288",
"id-11134201-82251-mjgt8sa0f9xi99",
"id-11134201-8224t-mjgt8u2wow0043",
"id-11134201-8224z-mjgt8vuirf9d30",
"id-11134201-8224p-mjgt8ycxrapw68"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381594,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 30816900000,
"price_min": 30816900000,
"price_max": 30816900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Sliver-B",
"Black-Curved Screen",
"Sliver-Curved Screen",
"Green-B",
"Pink-B",
"Black-B"
],
"images": [
"id-11134201-8224r-mjgt92gcp1j774",
"id-11134201-8224x-mjgt946d95abf9",
"id-11134201-8224z-mjgt95w5143n69",
"id-11134201-8224y-mjgt96tr87pibd",
"id-11134201-8224w-mjgt97rk3f9f8f",
"id-11134201-8224t-mjgt99hpkikib9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 30816900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410432803183,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 30816900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53854653189,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgt8k8jc8aq3b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":15,\"model_id\":410432803183,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgt8k8jc8aq3b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":15,\"model_id\":410432803183,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53854653189",
"debug_info": null
},
{
"item_basic": {
"itemid": 47904668218,
"shopid": 1666692538,
"name": "DISKON 100% Asli Samsung SmartWatch XS 11 PRO MAX Gps NFC IP68 Waterproof Bluetooth Call Jam Smartwatch Wanita Pria Monitor Detak Jantung Tekanan Darah wireless charging Dan Ganti Wallpapper Jam Tangan Wanita Jam Tangan Couple Jam Tangan Digital Wanita",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-8224r-mjgt7ut9qvpg3e",
"images": [
"id-11134201-8224r-mjgt7ut9qvpg3e",
"id-11134201-8224w-mjgt7vqimznk2b",
"id-11134201-8224v-mjgt7y72ptky19",
"id-11134201-8224p-mjgt80sucwzl93",
"id-11134201-8224x-mjgt81rk5r0i9b",
"id-11134201-82250-mjgt82pdhuytc0",
"id-11134201-8224o-mjgt8572jmrn14",
"id-11134201-8224r-mjgt87pjsxkz16",
"id-11134201-8224u-mjgt88ns09hfed"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381554,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26949900000,
"price_min": 26949900000,
"price_max": 26949900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "1",
"options": [
"black",
"white",
"pink",
"black."
],
"images": [
"id-11134201-82252-mjgt8acxclc7b0",
"id-11134201-8224z-mjgt8c1v5s07dd",
"id-11134201-8224r-mjgt8dsh51ja62",
"id-11134201-8224s-mjgt8eq9ds0762"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26949900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 234639959423,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26949900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47904668218,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt7ut9qvpg3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":16,\"model_id\":234639959423,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt7ut9qvpg3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":16,\"model_id\":234639959423,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47904668218",
"debug_info": null
},
{
"item_basic": {
"itemid": 57504643565,
"shopid": 1666692538,
"name": "ORIGINAL PrimeWatch ULTRA2 Smartwatch Stainless Bluetooth 2.2\" Infinite Display Dynamic Island Pria Wanita",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-8224s-mjgt5obzo6x321",
"images": [
"id-11134201-8224s-mjgt5obzo6x321",
"id-11134201-8224u-mjgt5qu3wdmp6a",
"id-11134201-8224v-mjgt5sizlr7p12",
"id-11134201-8224v-mjgt5u8bp1q9f0",
"id-11134201-82252-mjgt5vymxzibd7",
"id-11134201-8224o-mjgt5yh06ozn0f",
"id-11134201-8224s-mjgt60y18jyb84",
"id-11134201-8224v-mjgt63f80xz59c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381467,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 32099900000,
"price_min": 32099900000,
"price_max": 32099900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"FULLBLACK+LINK BLACK",
"SILBLACK+LINK SILVER",
"BLACKBLUE+LINK BLACK",
"SIL-BLACK+LINK BLACK",
"SILBLUE-LINK BLACK",
"CREAM+LINK SILVER",
"ORANGE+LINK SILVER",
"PINK+LINK SILVER",
"FULBLACK+LINK SILVER"
],
"images": [
"id-11134201-8224x-mjgt66ki5ngg18",
"id-11134201-8224o-mjgt67hga138c7",
"id-11134201-8224q-mjgt695wey2p4c",
"id-11134201-8224t-mjgt6bmizocm8b",
"id-11134201-8224p-mjgt6db2lngndf",
"id-11134201-8224o-mjgt6fufkzk687",
"id-11134201-8224v-mjgt6iafvp4wd7",
"id-11134201-8224o-mjgt6k29ob9g9f",
"id-11134201-8224o-mjgt6kzgkqo50a"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 32099900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385432800246,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 32099900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57504643565,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgt5obzo6x321\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":17,\"model_id\":385432800246,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgt5obzo6x321\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":17,\"model_id\":385432800246,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57504643565",
"debug_info": null
},
{
"item_basic": {
"itemid": 56404643617,
"shopid": 1666733759,
"name": "favorit primewatch ultra2 smartwatch stainless bluetooth 2.2\" infinite display dynamic island pria wanita",
"label_ids": [
844931064601283,
1718093079,
700005509,
1049138,
822059908662278,
825465608499232
],
"image": "id-11134201-8224r-mjgt5hiw01kxb7",
"images": [
"id-11134201-8224r-mjgt5hiw01kxb7",
"id-11134201-82252-mjgt5ikh07pg51",
"id-11134201-82252-mjgt5l4dhvr554",
"id-11134201-8224s-mjgt5m4dj5ky3d",
"id-11134201-8224q-mjgt5n788553ce",
"id-11134201-82252-mjgt5o5sohs5e9",
"id-11134201-8224s-mjgt5p6wsef9d8",
"id-11134201-8224u-mjgt5qxy2aklf3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381449,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 32999900000,
"price_min": 32999900000,
"price_max": 32999900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"FULLBLACK+LINK BLACK",
"SILBLACK+LINK SILVER",
"BLACKBLUE+LINK BLACK",
"SIL-BLACK+LINK BLACK",
"SILBLUE-LINK BLACK",
"CREAM+LINK SILVER",
"ORANGE+LINK SILVER",
"PINK+LINK SILVER",
"FULBLACK+LINK SILVER"
],
"images": [
"id-11134201-82251-mjgt5uo9jhfq31",
"id-11134201-8224o-mjgt5vmk1lomb5",
"id-11134201-8224z-mjgt5xg7fjlu02",
"id-11134201-8224x-mjgt5z6l4xl020",
"id-11134201-8224y-mjgt61onyjusd7",
"id-11134201-8224r-mjgt62oi6kn557",
"id-11134201-82252-mjgt65kcyvif40",
"id-11134201-8224t-mjgt66jsr66a6d",
"id-11134201-8224u-mjgt67jdc8p1e1"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 32999900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425432795748,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 32999900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56404643617,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt5hiw01kxb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":19,\"model_id\":425432795748,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt5hiw01kxb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":19,\"model_id\":425432795748,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56404643617",
"debug_info": null
},
{
"item_basic": {
"itemid": 50854648197,
"shopid": 1656110262,
"name": "WAJIB PUNYA ROLEMANI 2025 NEW T2 PRO MAX JAM SMARTWATCH ORIGINAL BLUETOOTH CALL MONITOR BLOOD PRESSURE AND BLOOD SUGAR HEALTH MONITORING MORE SPORTS MODE",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224q-mjgt4obe9ds558",
"images": [
"id-11134201-8224q-mjgt4obe9ds558",
"id-11134201-8224t-mjgt4q2crgg6ef",
"id-11134201-8224z-mjgt4smheqrq26",
"id-11134201-8224r-mjgt4ifqi6me0d",
"id-11134201-8224p-mjgt4vc417gld0",
"id-11134201-8224v-mjgt4xvd2ps39e",
"id-11134201-82251-mjgt50gmgfev20",
"id-11134201-8224v-mjgt527n2cqo9c",
"id-11134201-8224y-mjgt54pijxty74"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381408,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 32800000000,
"price_min": 32800000000,
"price_max": 32800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Perak",
"Hitam",
"Emas"
],
"images": [
"id-11134201-8224y-mjgt57dksnwn9f",
"id-11134201-82250-mjgt5961t53b76",
"id-11134201-8224p-mjgt5aw70b9c56"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 32800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395432788054,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 32800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50854648197,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt4obe9ds558\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":23,\"model_id\":395432788054,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt4obe9ds558\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":23,\"model_id\":395432788054,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50854648197",
"debug_info": null
},
{
"item_basic": {
"itemid": 48104677735,
"shopid": 1623695925,
"name": "Ready Stock Xiaomi Redmi Watch 5 Active | 2.0\" Lcd Display | Mendukung 140+ Mode Olahraga | Tahan Air 5Atm",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224t-mjgt61g455og13",
"images": [
"id-11134201-8224t-mjgt61g455og13",
"id-11134201-8224x-mjgt638nm32aa1",
"id-11134201-8224y-mjgt64x7vw8x7e",
"id-11134201-82250-mjgt67falatgff",
"id-11134201-8224y-mjgt694r7ksl65",
"id-11134201-8224u-mjgt6atuafpj0d",
"id-11134201-8224v-mjgt6cib7g1y62"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381462,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 59600000000,
"price_min": 59600000000,
"price_max": 59600000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"MIDNIGHT BLACK",
"MATTE SILVER"
],
"images": [
"id-11134201-8224p-mjgt6f51xc04a0",
"id-11134201-8224s-mjgt6g1p08htd6"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 59600000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 375432796325,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 59600000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48104677735,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgt61g455og13\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":18,\"model_id\":375432796325,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgt61g455og13\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":18,\"model_id\":375432796325,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48104677735",
"debug_info": null
},
{
"item_basic": {
"itemid": 46004677779,
"shopid": 1623695925,
"name": "Paket Hemat Rolemani 2025 New T2 Pro Max Jam Smartwatch Original Bluetooth Call Monitor Blood Pressure And Blood Sugar Health Monitoring More Sports Mode",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224q-mjgt4duk0jr8c9",
"images": [
"id-11134201-8224q-mjgt4duk0jr8c9",
"id-11134201-8224p-mjgt4fm6frpd83",
"id-11134201-8224o-mjgt4gjtq5mua0",
"id-11134201-82250-mjgt4hhlb20y0e",
"id-11134201-8224r-mjgt4ifqi6me0d",
"id-11134201-8224p-mjgt4kx5dam91d",
"id-11134201-8224p-mjgt4lvg5c020d",
"id-11134201-8224t-mjgt4od7xdz699",
"id-11134201-8224x-mjgt4qw7lqf78f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381389,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 33400000000,
"price_min": 33400000000,
"price_max": 33400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Perak",
"Hitam",
"Emas"
],
"images": [
"id-11134201-8224p-mjgt4tgbtkhzd0",
"id-11134201-8224t-mjgt4v40okxx90",
"id-11134201-8224y-mjgt4wgnwphgf3"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 33400000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310433368009,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 33400000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46004677779,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt4duk0jr8c9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":24,\"model_id\":310433368009,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt4duk0jr8c9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":24,\"model_id\":310433368009,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46004677779",
"debug_info": null
},
{
"item_basic": {
"itemid": 44504673163,
"shopid": 1623695925,
"name": "Original Lige Asli Jam Pintar Pria Layar Sentuh Penuh Olahraga Tahan Air Kebugaran Menonton Bluetooth Smartwatch Untuk Android Ios",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224v-mjgt56sgwvlwf7",
"images": [
"id-11134201-8224v-mjgt56sgwvlwf7",
"id-11134201-82251-mjgt59bj5vyee8",
"id-11134201-8224o-mjgt5aawq49273",
"id-11134201-8224o-mjgt5c2yll39cc",
"id-11134201-8224w-mjgt5d3g1ds0d7",
"id-11134201-8224o-mjgt5eunbi867e",
"id-11134201-8224r-mjgt5fudbtog1d",
"id-11134201-82251-mjgt5gvewfeu85",
"id-11134201-8224r-mjgt5jf6pkw18c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381430,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 48000000000,
"price_min": 48000000000,
"price_max": 48000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Bw0382",
"options": [
"Baja Hitam + Silikon",
"Baja Perak + Silikon",
"Hitam",
"Perak"
],
"images": [
"id-11134201-8224u-mjgt5n2m330ie5",
"id-11134201-82252-mjgt5otbcao23c",
"id-11134201-8224x-mjgt5pumxwcie7",
"id-11134201-8224x-mjgt5sd1z6di10"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 48000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 277333706369,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 48000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44504673163,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgt56sgwvlwf7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":21,\"model_id\":277333706369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgt56sgwvlwf7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":21,\"model_id\":277333706369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44504673163",
"debug_info": null
},
{
"item_basic": {
"itemid": 57354643553,
"shopid": 1666733759,
"name": "new arrival lige asli jam pintar pria layar sentuh penuh olahraga tahan air kebugaran menonton bluetooth smartwatch untuk android ios",
"label_ids": [
844931064601283,
1049138,
700005509,
822059908662278,
825465608499232,
1718093079
],
"image": "id-11134201-8224p-mjgt3bmy4dmt89",
"images": [
"id-11134201-8224p-mjgt3bmy4dmt89",
"id-11134201-8224w-mjgt3e6qqzgg69",
"id-11134201-8224r-mjgt3gsckqo5f3",
"id-11134201-8224o-mjgt3htsgutg56",
"id-11134201-8224s-mjgt3ivdxvr9d0",
"id-11134201-8224x-mjgt3jw4cphi52",
"id-11134201-8224x-mjgt3kvixgjn9a",
"id-11134201-8224u-mjgt3lwp11qb12",
"id-11134201-8224p-mjgt3ogjg9ol7b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381339,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 48700000000,
"price_min": 48700000000,
"price_max": 48700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Bw0382",
"options": [
"Baja Hitam + Silikon",
"Baja Perak + Silikon",
"Hitam",
"Perak"
],
"images": [
"id-11134201-8224s-mjgt3r44232f95",
"id-11134201-8224v-mjgt3s2n3v9f0e",
"id-11134201-8224t-mjgt3t1rkt8j0b",
"id-11134201-8224s-mjgt3u2elh4y93"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 48700000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345432786037,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 48700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57354643553,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgt3bmy4dmt89\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049138,700005509,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":27,\"model_id\":345432786037,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgt3bmy4dmt89\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049138,700005509,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":27,\"model_id\":345432786037,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57354643553",
"debug_info": null
},
{
"item_basic": {
"itemid": 55154643565,
"shopid": 1666733759,
"name": "official teevo smartwatch s9 max 44mm gps nfc bluetooth waterproof wanita pria jam tangan pintar bisa telponan dan ganti wallpapper smart watch",
"label_ids": [
844931064601283,
1718093079,
700005509,
1049138,
822059908662278,
825465608499232
],
"image": "id-11134201-8224q-mjgt1q9ueqkg60",
"images": [
"id-11134201-8224q-mjgt1q9ueqkg60",
"id-11134201-8224o-mjgt1stni77o50",
"id-11134201-8224o-mjgt1tss90qo62",
"id-11134201-8224v-mjgt1vmm1a8069",
"id-11134201-82251-mjgt1wlulo8wfd",
"id-11134201-82250-mjgt1ybyqyo7a1",
"id-11134201-82250-mjgt1zbnfitj3e",
"id-11134201-8224r-mjgt20ajv5dv9b",
"id-11134201-8224z-mjgt21dcx53bd4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381262,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 25100000000,
"price_min": 25100000000,
"price_max": 25100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Merah Jambu",
"Abu-abu"
],
"images": [
"id-11134201-8224x-mjgt23lnlo1xac",
"id-11134201-8224y-mjgt24ju4ide63",
"id-11134201-8224y-mjgt26aeyzuqe4"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 25100000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385432772461,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 25100000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55154643565,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt1q9ueqkg60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":31,\"model_id\":385432772461,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgt1q9ueqkg60\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":31,\"model_id\":385432772461,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55154643565",
"debug_info": null
},
{
"item_basic": {
"itemid": 51854657787,
"shopid": 1623695925,
"name": "Recommended Teevo Smartwatch S9 Max 44Mm Gps Nfc Bluetooth Waterproof Wanita Pria Jam Tangan Pintar Bisa Telponan Dan Ganti Wallpapper Smart Watch",
"label_ids": [
844931064601283,
1049131,
1049130,
822059908662278,
825465608499232
],
"image": "id-11134201-8224t-mjgt3gi4o5xge7",
"images": [
"id-11134201-8224t-mjgt3gi4o5xge7",
"id-11134201-8224z-mjgt3j2fzncz7e",
"id-11134201-8224s-mjgt3ljp03ra34",
"id-11134201-82250-mjgt3o0ywtmq71",
"id-11134201-8224x-mjgt3p15cjrb46",
"id-11134201-8224o-mjgt3qslzu2oe2",
"id-11134201-8224p-mjgt3siqq5fqe2",
"id-11134201-8224u-mjgt3v1eurcxfa",
"id-11134201-8224q-mjgt3wt3qdxj5a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381352,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24700000000,
"price_min": 24700000000,
"price_max": 24700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Merah Jambu",
"Abu-abu"
],
"images": [
"id-11134201-8224x-mjgt3zlx179fd2",
"id-11134201-8224t-mjgt423p7chvfa",
"id-11134201-82251-mjgt44kzcjcw0c"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24700000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 267333909165,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51854657787,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgt3gi4o5xge7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":26,\"model_id\":267333909165,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgt3gi4o5xge7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":26,\"model_id\":267333909165,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51854657787",
"debug_info": null
},
{
"item_basic": {
"itemid": 48204663620,
"shopid": 1721996639,
"name": "GPS GEODETIC HUAYI PLUS GNSS RECEIVER / PERALATAN SURVEI KONSTRUKSI",
"label_ids": [
844931064601283,
1049122,
1059152,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8260u-mjgt2cpjnkslda",
"images": [
"sg-11134201-8260u-mjgt2cpjnkslda",
"sg-11134201-8262s-mjgt2cwtpatj4a",
"sg-11134201-8262b-mjgt2d2x7xtw5d",
"sg-11134201-82602-mjgt2dcyykuc5e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381270,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 7500000000000,
"price_min": 7500000000000,
"price_max": 7500000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 7499000000000,
"strikethrough_price": 7500000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1333128427094016,
"discount_text": null,
"model_id": 390432769274,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1333128427094016,
"voucher_code": "6AR510K",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1768380960,
"end_time": 1774950960,
"valid_duration": null
},
"groups": [],
"min_spend": 100000000000
},
"recommended_platform_voucher_info": null,
"original_price": 7500000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "T-M24",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48204663620,
"shopid": 1721996639,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgt2cpjnkslda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049122,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":30,\"model_id\":390432769274,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgt2cpjnkslda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049122,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":30,\"model_id\":390432769274,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48204663620",
"debug_info": null
},
{
"item_basic": {
"itemid": 46054673191,
"shopid": 1656110262,
"name": "WAJIB PUNYA TEEVO SMARTWATCH S9 MAX 44MM GPS NFC BLUETOOTH WATERPROOF WANITA PRIA JAM TANGAN PINTAR BISA TELPONAN DAN GANTI WALLPAPPER SMART WATCH",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224o-mjgt3sjcw003eb",
"images": [
"id-11134201-8224o-mjgt3sjcw003eb",
"id-11134201-82250-mjgt3ubchybm4f",
"id-11134201-8224r-mjgt3w5ba0hscb",
"id-11134201-8224y-mjgt3xzx2tqb54",
"id-11134201-8224t-mjgt3z0im41z2c",
"id-11134201-8224p-mjgt40thaux0ff",
"id-11134201-8224r-mjgt42nu4lj530",
"id-11134201-8224r-mjgt459n7nya87",
"id-11134201-8224y-mjgt47us3u9w4d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381366,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24400000000,
"price_min": 24400000000,
"price_max": 24400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Merah Jambu",
"Abu-abu"
],
"images": [
"id-11134201-8224y-mjgt49t7hjib72",
"id-11134201-8224r-mjgt4bkjnaio0b",
"id-11134201-82252-mjgt4dgu1jpe26"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24400000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380432778421,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24400000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46054673191,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgt3sjcw003eb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":25,\"model_id\":380432778421,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgt3sjcw003eb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":25,\"model_id\":380432778421,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46054673191",
"debug_info": null
},
{
"item_basic": {
"itemid": 45254668196,
"shopid": 1623695925,
"name": "Best Seller Jete Smartwatch Fr13 Jam Tangan 1.85 Ips Screen Display Ip68 Waterproof Bluetooth Smart Watch Running Sport Mode",
"label_ids": [
844931064601283,
1049131,
1049130,
822059908662278,
825465608499232
],
"image": "id-11134201-8224s-mjgt1ezvl0cg46",
"images": [
"id-11134201-8224s-mjgt1ezvl0cg46",
"id-11134201-8224p-mjgt1fyba1adde",
"id-11134201-82252-mjgt1gxxji8480",
"id-11134201-8224q-mjgt1ioy17ut7f",
"id-11134201-8224r-mjgt1l824c1t33",
"id-11134201-8224s-mjgt1m6icxs6f6",
"id-11134201-82250-mjgt1nxumwhz7c",
"id-11134201-8224s-mjgt1pnb96h134",
"id-11134201-8224w-mjgt1s5htoud48"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381251,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 36800000000,
"price_min": 36800000000,
"price_max": 36800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Black",
"Rosegold"
],
"images": [
"id-11134201-8224y-mjgt1upfafic5d",
"id-11134201-8224u-mjgt1x7a2qdj42"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 36800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435432768720,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 36800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45254668196,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgt1ezvl0cg46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":32,\"model_id\":435432768720,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgt1ezvl0cg46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":32,\"model_id\":435432768720,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45254668196",
"debug_info": null
},
{
"item_basic": {
"itemid": 43278017712,
"shopid": 1656110262,
"name": "DISKON ITEL SMART WATCH ISW-O20 AI WATCH FACE | LAYAR HD 2.04\" | PEMANTAU KESEHATAN 24 JAM | PANGGILAN BT | TAHAN AIR IP68",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224r-mjgt2iqeky6946",
"images": [
"id-11134201-8224r-mjgt2iqeky6946",
"id-11134201-8224u-mjgt2lasv56o35",
"id-11134201-8224u-mjgt2nv3obnrd7",
"id-11134201-8224q-mjgt2qiuojr828",
"id-11134201-8224z-mjgt2t47rqx181",
"id-11134201-8224w-mjgt2vp7widfc9",
"id-11134201-8224w-mjgt2yaxmtj86d",
"id-11134201-8224t-mjgt2zbmu58mbe",
"id-11134201-8224t-mjgt31wew55226"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381324,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 33200000000,
"price_min": 33200000000,
"price_max": 33200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Merah Muda",
"Pink+STRAP",
"O20Black+Strap Pink",
"O20Black+Strap White",
"Hijau Muda",
"Hijau Botol",
"Biru",
"Hitam"
],
"images": [
"id-11134201-8224s-mjgt3636bhmq9e",
"id-11134201-8224v-mjgt37v3z94z69",
"id-11134201-8224t-mjgt39ncg0snc4",
"id-11134201-8224u-mjgt3bex5frbea",
"id-11134201-8224w-mjgt3cnhqu4h1c",
"id-11134201-8224r-mjgt3dp9awhvc1",
"id-11134201-8224v-mjgt3epabc3nfd",
"id-11134201-8224p-mjgt3h9dfu9w55"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 33200000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 302333689776,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 33200000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43278017712,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt2iqeky6946\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":28,\"model_id\":302333689776,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgt2iqeky6946\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":28,\"model_id\":302333689776,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43278017712",
"debug_info": null
},
{
"item_basic": {
"itemid": 55604652996,
"shopid": 1666692538,
"name": "TERBARU itel Smart Watch ISW-O20 AI Watch Face | Layar HD 2.04\" | Pemantau Kesehatan 24 Jam | Panggilan BT | Tahan Air IP68",
"label_ids": [
844931064601283,
700005503,
1049130,
822059908662278,
825465608499232
],
"image": "id-11134201-8224x-mjgt0pi8gohzb5",
"images": [
"id-11134201-8224x-mjgt0pi8gohzb5",
"id-11134201-82251-mjgt0r7fd72da1",
"id-11134201-8224w-mjgt0s5nucxv6f",
"id-11134201-82250-mjgt0unk9m2s94",
"id-11134201-8224o-mjgt0x5kzdona8",
"id-11134201-8224u-mjgt0zn5uupz23",
"id-11134201-8224p-mjgt10js5m9w0c",
"id-11134201-8224q-mjgt1295qadf5e",
"id-11134201-8224w-mjgt14pitq83c4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381232,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 35000000000,
"price_min": 35000000000,
"price_max": 35000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Merah Muda",
"Pink+STRAP",
"O20Black+Strap Pink",
"O20Black+Strap White",
"Hijau Muda",
"Hijau Botol",
"Biru",
"Hitam"
],
"images": [
"id-11134201-82250-mjgt16zi9bet14",
"id-11134201-82252-mjgt19g5p1c529",
"id-11134201-8224o-mjgt1ae5e29s83",
"id-11134201-8224y-mjgt1c4xm2o7f4",
"id-11134201-8224q-mjgt1d2oc2kjee",
"id-11134201-8224p-mjgt1er8zxfq7d",
"id-11134201-8224x-mjgt1ha5wjk240",
"id-11134201-8224x-mjgt1i9ka9s58a"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380432775219,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55604652996,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgt0pi8gohzb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":33,\"model_id\":380432775219,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgt0pi8gohzb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":33,\"model_id\":380432775219,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55604652996",
"debug_info": null
},
{
"item_basic": {
"itemid": 52504653054,
"shopid": 1666733759,
"name": "wajib punya jete smartwatch fr13 jam tangan 1.85 ips screen display ip68 waterproof bluetooth smart watch running sport mode",
"label_ids": [
844931064601283,
700005509,
1049138,
1718093079,
822059908662278,
825465608499232
],
"image": "id-11134201-8224r-mjgszr2lgykgfe",
"images": [
"id-11134201-8224r-mjgszr2lgykgfe",
"id-11134201-8224r-mjgszstqoohw57",
"id-11134201-8224t-mjgszvct0jk74a",
"id-11134201-8224u-mjgszxwweu4g16",
"id-11134201-8224o-mjgt00gs77ye57",
"id-11134201-8224v-mjgt02yoz47851",
"id-11134201-8224q-mjgt03xgrjlw81",
"id-11134201-8224o-mjgt06gk2kg387",
"id-11134201-82250-mjgt07ibjtoi28"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381176,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 35500000000,
"price_min": 35500000000,
"price_max": 35500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Black",
"Rosegold"
],
"images": [
"id-11134201-8224r-mjgt0a0rbshs01",
"id-11134201-8224v-mjgt0azqrj7o60"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 415432770160,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3ZTNmNjU5MGU1ZGJhNmE4M2QwMDowMjAwMDAzMGZiZDg4NmRlOjAxMDAwMWJhNjU0ZmQwOWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52504653054,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgszr2lgykgfe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":36,\"model_id\":415432770160,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgszr2lgykgfe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":36,\"model_id\":415432770160,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52504653054",
"debug_info": null
},
{
"item_basic": {
"itemid": 47354677692,
"shopid": 1666733759,
"name": "cuci gudang itel smart watch isw-o20 ai watch face | layar hd 2.04\" | pemantau kesehatan 24 jam | panggilan bt | tahan air ip68",
"label_ids": [
844931064601283,
700005509,
1049138,
822059908662278,
825465608499232,
1718093079
],
"image": "id-11134201-8224v-mjgt0mfpsi6e26",
"images": [
"id-11134201-8224v-mjgt0mfpsi6e26",
"id-11134201-8224o-mjgt0ozxk4ci8f",
"id-11134201-82251-mjgt0qtvoav57d",
"id-11134201-8224u-mjgt0slvvbpd40",
"id-11134201-8224p-mjgt0tn0lpfq3a",
"id-11134201-82252-mjgt0w6sx2pw69",
"id-11134201-82251-mjgt0ytae3npaa",
"id-11134201-82251-mjgt0zu687wg89",
"id-11134201-8224p-mjgt11ltnx1e19"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381228,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 34800000000,
"price_min": 34800000000,
"price_max": 34800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Merah Muda",
"Pink+STRAP",
"O20Black+Strap Pink",
"O20Black+Strap White",
"Hijau Muda",
"Hijau Botol",
"Biru",
"Hitam"
],
"images": [
"id-11134201-8224v-mjgt169xf8xtdc",
"id-11134201-8224q-mjgt180dxtdy96",
"id-11134201-8224o-mjgt190qups22f",
"id-11134201-8224p-mjgt1bksuebob8",
"id-11134201-8224q-mjgt1ckkx7ghed",
"id-11134201-8224z-mjgt1dk1pzbadb",
"id-11134201-82252-mjgt1eng8kxs3a",
"id-11134201-8224y-mjgt1ggase1138"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 34800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405432768272,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 34800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47354677692,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgt0mfpsi6e26\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":35,\"model_id\":405432768272,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgt0mfpsi6e26\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":35,\"model_id\":405432768272,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47354677692",
"debug_info": null
},
{
"item_basic": {
"itemid": 43878012750,
"shopid": 1656110262,
"name": "MURAH OFFICIAL ITEL SMARTWATCH O43 MAX SMART WATCH 1.43 INCH AMOLED TOUCH SCREEN IP68 JAM TANGAN PRIA FITNESS TRACKING",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224z-mjgt0yo0hk3k01",
"images": [
"id-11134201-8224z-mjgt0yo0hk3k01",
"id-11134201-8224v-mjgt11b48nb7a7",
"id-11134201-8224v-mjgt13x8g0019e",
"id-11134201-8224o-mjgt15rfknpced",
"id-11134201-82250-mjgt16rvrjsx90",
"id-11134201-8224p-mjgt17u4sy6806"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381229,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 46800000000,
"price_min": 46800000000,
"price_max": 46800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"hijau",
"O43+Strap",
"hitam",
"biru"
],
"images": [
"id-11134201-8224z-mjgt1b6imbyeb3",
"id-11134201-8224w-mjgt1cy08qh25c",
"id-11134201-8224x-mjgt1er404qsf9",
"id-11134201-8224y-mjgt1fs1iltx19"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 46800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420432768382,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 46800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43878012750,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgt0yo0hk3k01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":34,\"model_id\":420432768382,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgt0yo0hk3k01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":34,\"model_id\":420432768382,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43878012750",
"debug_info": null
},
{
"item_basic": {
"itemid": 55204657574,
"shopid": 1656110262,
"name": "READY STOCK SMARTWATCH FR13 JAM TANGAN 1.85 IPS SCREEN DISPLAY IP68 WATERPROOF BLUETOOTH RUNNING SPORT MODE",
"label_ids": [
844931064601283,
700005505,
1049134,
822059908662278,
825465608499232
],
"image": "id-11134201-8224t-mjgsxk0c6yh2f6",
"images": [
"id-11134201-8224t-mjgsxk0c6yh2f6",
"id-11134201-8224y-mjgsxl9zyn0lbd",
"id-11134201-8224x-mjgsxmbfur5y69",
"id-11134201-82251-mjgsxo5mwnb98f",
"id-11134201-8224t-mjgsxp60hc751a",
"id-11134201-8224s-mjgsxq8mqyo5c8",
"id-11134201-8224t-mjgsxrb6r2me22",
"id-11134201-8224s-mjgsxsft1nut56",
"id-11134201-8224y-mjgsxua4i8lg7c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381069,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 34820000000,
"price_min": 34820000000,
"price_max": 34820000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Black",
"Rose Gold"
],
"images": [
"id-11134201-8224x-mjgsxxzls7wie3",
"id-11134201-82251-mjgsy0klhkox69"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 34820000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 325432752702,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 34820000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55204657574,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgsxk0c6yh2f6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":38,\"model_id\":325432752702,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgsxk0c6yh2f6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":38,\"model_id\":325432752702,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55204657574",
"debug_info": null
},
{
"item_basic": {
"itemid": 55104657537,
"shopid": 1542929270,
"name": "DW8200 Watband Bezel Ice Transparent Watband Strap and Cover Customize Colors Silicone Replacement For DW8200 With Tools",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8260w-mjgsxp7lg6x2a5",
"images": [
"sg-11134201-8260w-mjgsxp7lg6x2a5",
"sg-11134201-825zp-mjgsxq0nvvgj51",
"sg-11134201-8262c-mjgsxqnnuubk70",
"sg-11134201-825zz-mjgsxr7kmio39f",
"sg-11134201-82630-mjgsxrse4nwg7b",
"sg-11134201-82613-mjgsxsd4wiyue7",
"sg-11134201-82611-mjgsxsvgl81vb2",
"sg-11134201-8260s-mjgsxtf5zf2d2b",
"sg-11134201-8261k-mjgsxu33e6m895"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381066,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 201750000000,
"price_min": 201750000000,
"price_max": 201750000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Transparent",
"Purple",
"Green",
"Brown Red",
"Blue",
"Deep Brown",
"Red",
"Brown",
"New Green",
"Olive Green",
"Black Green"
],
"images": [
"sg-11134201-8260s-mjgsxtf5zf2d2b",
"sg-11134201-8261k-mjgsxu33e6m895",
"sg-11134201-8261n-mjgsxupsim0x86",
"sg-11134201-8260t-mjgsxv1p3futce",
"sg-11134201-825zq-mjgsxve08937ff",
"sg-11134201-8260c-mjgsxwrio2dfb4",
"sg-11134201-8262k-mjgsxxg7wcuf1d",
"sg-11134201-82606-mjgsxy3pl3458f",
"sg-11134201-825zy-mjgsxyx84w769f",
"sg-11134201-82609-mjgsxzqokt1fe8",
"sg-11134201-8262n-mjgsy0hqk0znd3"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"DW8200"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 201750000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 320432749511,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 201750000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55104657537,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260w-mjgsxp7lg6x2a5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":39,\"model_id\":320432749511,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260w-mjgsxp7lg6x2a5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":39,\"model_id\":320432749511,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55104657537",
"debug_info": null
},
{
"item_basic": {
"itemid": 53204657622,
"shopid": 1656110262,
"name": "NEW ARRIVAL LIGE JAM TANGAN PINTAR OLAHRAGA TAHAN AIR PANGGILAN BLUETOOTH PRIA 420MAH PEMANTAUAN KESEHATAN IP68 JAM TANGAN PINTAR PRIA TAHAN AIR SMARTWATCH MEN",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-82251-mjgswkkhh8uaeb",
"images": [
"id-11134201-82251-mjgswkkhh8uaeb",
"id-11134201-8224t-mjgswmcn241vde",
"id-11134201-8224v-mjgswneqmuwy71",
"id-11134201-8224x-mjgswohox2ps71",
"id-11134201-8224u-mjgswrcctngjf9",
"id-11134201-8224t-mjgswt73ywhtcd",
"id-11134201-8224z-mjgswu99j8qvd7",
"id-11134201-82252-mjgswwwitslfb4",
"id-11134201-8224s-mjgswxwfl4at7c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381033,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 43199900000,
"price_min": 43199900000,
"price_max": 43199900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Bw0667+Charge",
"options": [
"black + 2tail",
"black(led)",
"black(led)+ 2tail",
"black",
"mesh black + 2tail",
"yellow"
],
"images": [
"id-11134201-8224y-mjgsx03a50jk08",
"id-11134201-8224u-mjgsx12qmlfn13",
"id-11134201-8224w-mjgsx3nthona63",
"id-11134201-8224x-mjgsx675rs3p69",
"id-11134201-8224y-mjgsx7xqf75u54",
"id-11134201-82250-mjgsx8zz400616"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 43199900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 307333685443,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 43199900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53204657622,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgswkkhh8uaeb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":42,\"model_id\":307333685443,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgswkkhh8uaeb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":42,\"model_id\":307333685443,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53204657622",
"debug_info": null
},
{
"item_basic": {
"itemid": 52804657572,
"shopid": 1623695925,
"name": "Original Lige Jam Tangan Pintar Olahraga Tahan Air Panggilan Bluetooth Pria 420Mah Pemantauan Kesehatan Ip68 Jam Tangan Pintar Pria Tahan Air Smartwatch Men",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224u-mjgsw9pcfbia9e",
"images": [
"id-11134201-8224u-mjgsw9pcfbia9e",
"id-11134201-8224p-mjgswchfuubpc5",
"id-11134201-8224u-mjgswe84pypzec",
"id-11134201-8224p-mjgswgstb18g8e",
"id-11134201-8224y-mjgswikewo3lde",
"id-11134201-8224p-mjgswl66xurpe3",
"id-11134201-82252-mjgswmymi9s3e4",
"id-11134201-8224u-mjgswo1i0r9ef1",
"id-11134201-8224v-mjgswp1b41kw43"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381022,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 43199900000,
"price_min": 43199900000,
"price_max": 43199900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Bw0667+Charge",
"options": [
"black + 2tail",
"black(led)",
"black(led)+ 2tail",
"black",
"mesh black + 2tail",
"yellow"
],
"images": [
"id-11134201-8224q-mjgswsb2uvb83e",
"id-11134201-8224p-mjgswtb85tdw66",
"id-11134201-8224x-mjgsww1fkyrne4",
"id-11134201-8224o-mjgswx0kveo509",
"id-11134201-8224x-mjgswzke5xqedf",
"id-11134201-8224r-mjgsx24uwkxwda"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 43199900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 302333677973,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 43199900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52804657572,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgsw9pcfbia9e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":43,\"model_id\":302333677973,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgsw9pcfbia9e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":43,\"model_id\":302333677973,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52804657572",
"debug_info": null
},
{
"item_basic": {
"itemid": 48854663579,
"shopid": 1623695925,
"name": "Cuci Gudang Smartwatch Fr13 Jam Tangan 1.85 Ips Screen Display Ip68 Waterproof Bluetooth Running Sport Mode",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224p-mjgsxblxcft037",
"images": [
"id-11134201-8224p-mjgsxblxcft037",
"id-11134201-8224p-mjgsxckq2kuff5",
"id-11134201-82251-mjgsxf4bmzgi91",
"id-11134201-8224t-mjgsxg2acxs46e",
"id-11134201-8224r-mjgsxh314g7b81",
"id-11134201-8224p-mjgsxi2j90xu7a",
"id-11134201-8224x-mjgsxj13uy9u8a",
"id-11134201-8224v-mjgsxkze4lj461",
"id-11134201-8224r-mjgsxmq6i6me75"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768381058,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 34620000000,
"price_min": 34620000000,
"price_max": 34620000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Black",
"Rose Gold"
],
"images": [
"id-11134201-8224w-mjgsxq1o0lc2a3",
"id-11134201-8224o-mjgsxrz7o9a837"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 34620000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 440432744640,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 34620000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48854663579,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgsxblxcft037\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":40,\"model_id\":440432744640,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgsxblxcft037\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":40,\"model_id\":440432744640,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48854663579",
"debug_info": null
},
{
"item_basic": {
"itemid": 56354657565,
"shopid": 1656110262,
"name": "READY STOCK 24H ONLINEAOLON CURVE SMART WATCH ORIGINAL IP68 WATERPROOF 2.01-INCH CURVED IPS SCREEN BLUETOOTH CALL RUNNING PACE CUSTOM WALLPAPER SMARTWATCH HEALTH MONITORING",
"label_ids": [
844931064601283,
700005505,
1049134,
822059908662278,
825465608499232
],
"image": "id-11134201-8224q-mjgstjsw7rpdc2",
"images": [
"id-11134201-8224q-mjgstjsw7rpdc2",
"id-11134201-8224p-mjgstlkybmde63",
"id-11134201-8224y-mjgstndgqkuc00",
"id-11134201-8224u-mjgstpwoyl8mca",
"id-11134201-8224z-mjgstrn7jls102",
"id-11134201-8224o-mjgstu5qzlz5ef",
"id-11134201-82250-mjgstwp3uosmaa",
"id-11134201-8224t-mjgstyh0kp3a8c",
"id-11134201-8224r-mjgsu0aceux18a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380920,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 37599900000,
"price_min": 37599900000,
"price_max": 37599900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Pink",
"Silver add Strap",
"add Strap(Curve3)",
"Black add Strap",
"Black",
"Blue",
"Silver(Curve3)",
"Gold(Curve 3)",
"Black+Film",
"Black add Milan",
"Black add Strap+Film",
"Silver",
"Black(Curve 3)",
"Black Leather"
],
"images": [
"id-11134201-8224z-mjgsu6jhwoaq79",
"id-11134201-8224u-mjgsu92c1k3rdf",
"id-11134201-8224o-mjgsuaw4chl047",
"id-11134201-8224z-mjgsubwabbb75f",
"id-11134201-82250-mjgsucy68paca7",
"id-11134201-82250-mjgsufj7mghv92",
"id-11134201-8224o-mjgsugjlzbwl2c",
"id-11134201-8224t-mjgsuj7bfdad4a",
"id-11134201-8224r-mjgsukydlhc502",
"id-11134201-82251-mjgsunjlt3iaa7",
"id-11134201-8224s-mjgsuq2pgpvkb4",
"id-11134201-8224w-mjgsur4obi0x18",
"id-11134201-8224v-mjgsusy5ce8284",
"id-11134201-82251-mjgsuuqk7m6cf3"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 37599900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370432741267,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 37599900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56354657565,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgstjsw7rpdc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":47,\"model_id\":370432741267,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgstjsw7rpdc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":47,\"model_id\":370432741267,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56354657565",
"debug_info": null
},
{
"item_basic": {
"itemid": 52954653027,
"shopid": 1666733759,
"name": "terbaru lige jam tangan pintar olahraga tahan air panggilan bluetooth pria 420mah pemantauan kesehatan ip68 jam tangan pintar pria tahan air smartwatch men",
"label_ids": [
844931064601283,
700005509,
1049138,
822059908662278,
825465608499232,
1718093079
],
"image": "id-11134201-8224p-mjgsv0786ozr90",
"images": [
"id-11134201-8224p-mjgsv0786ozr90",
"id-11134201-8224z-mjgsv18fj6rp45",
"id-11134201-8224z-mjgsv29j1zb990",
"id-11134201-8224x-mjgsv39d1kp088",
"id-11134201-82252-mjgsv5472rr4a3",
"id-11134201-8224t-mjgsv7bel24je7",
"id-11134201-8224w-mjgsv8cu8qv67c",
"id-11134201-8224r-mjgsv9g2pkw345",
"id-11134201-8224y-mjgsvahdhon6f1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380953,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 43599900000,
"price_min": 43599900000,
"price_max": 43599900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Bw0667+Charge",
"options": [
"black + 2tail",
"black(led)",
"black(led)+ 2tail",
"black",
"mesh black + 2tail",
"yellow"
],
"images": [
"id-11134201-8224y-mjgsvcs3rmyo45",
"id-11134201-82252-mjgsven1pcefd0",
"id-11134201-8224p-mjgsvfnsuwhz22",
"id-11134201-8224q-mjgsvgmdgvev7f",
"id-11134201-8224u-mjgsviemfwg57f",
"id-11134201-8224u-mjgsvjefasxyf2"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 43599900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420432741927,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 43599900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52954653027,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgsv0786ozr90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":45,\"model_id\":420432741927,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224p-mjgsv0786ozr90\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":45,\"model_id\":420432741927,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52954653027",
"debug_info": null
},
{
"item_basic": {
"itemid": 45604673089,
"shopid": 1666692538,
"name": "100% AMAN LIGE Jam Tangan Pintar Olahraga Tahan Air Panggilan Bluetooth Pria 420mAh Pemantauan Kesehatan IP68 Jam Tangan Pintar Pria Tahan Air Smartwatch Men",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-8224v-mjgsuoj2aoef91",
"images": [
"id-11134201-8224v-mjgsuoj2aoef91",
"id-11134201-8224u-mjgsuq9r4e87f8",
"id-11134201-8224u-mjgsusrnwc1x32",
"id-11134201-82252-mjgsutqek0znb7",
"id-11134201-8224p-mjgsuupox14y52",
"id-11134201-8224w-mjgsuwi5rw1ze0",
"id-11134201-8224u-mjgsuy8eu4g6b0",
"id-11134201-8224v-mjgsuzzu1hc282",
"id-11134201-82251-mjgsv2ice5mv11"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380943,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 44099900000,
"price_min": 44099900000,
"price_max": 44099900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Bw0667+Charge",
"options": [
"black + 2tail",
"black(led)",
"black(led)+ 2tail",
"black",
"mesh black + 2tail",
"yellow"
],
"images": [
"id-11134201-8224p-mjgsv5dv07b52f",
"id-11134201-8224u-mjgsv78du7sy04",
"id-11134201-8224y-mjgsv85htc7723",
"id-11134201-8224w-mjgsv92i05xg52",
"id-11134201-8224u-mjgsvarwy1hi57",
"id-11134201-8224r-mjgsvd9fmupz6e"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 44099900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435432741862,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 44099900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45604673089,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgsuoj2aoef91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":46,\"model_id\":435432741862,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgsuoj2aoef91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":46,\"model_id\":435432741862,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45604673089",
"debug_info": null
},
{
"item_basic": {
"itemid": 54654657652,
"shopid": 1656110262,
"name": "PAKET HEMAT (NEW LAUNCHING) ORAIMO WATCH 5 LITE SMARTWATCH OSW-804 JAM TANGAN PINTAR LAYAR BESAR 2.01'' BLUETOOTH BATERAI TAHAN LAMA TAHAN AIR DEBU AMOLED ANDROID SMARTWATCH HEALTH WATCH JAM 100+ MODE OLAHRAGA IP68",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224v-mjgssr69gmpz76",
"images": [
"id-11134201-8224v-mjgssr69gmpz76",
"id-11134201-8224z-mjgsstrc4qo0b6",
"id-11134201-8224o-mjgssure721137",
"id-11134201-8224p-mjgssxbhy1a86f",
"id-11134201-8224v-mjgssyb5ovt11c",
"id-11134201-8224w-mjgsszb5kkxs80",
"id-11134201-8224v-mjgst139bfgj5f",
"id-11134201-82250-mjgst2w3mups7d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380846,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 33800000000,
"price_min": 33800000000,
"price_max": 33800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Type",
"options": [
"Couple Set",
"Black",
"Pink"
],
"images": [
"id-11134201-8224r-mjgst50yl5aeaf",
"id-11134201-8224v-mjgst6s1f6kn02",
"id-11134201-82250-mjgst9bvkm4hda"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 33800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380432732313,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 33800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54654657652,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgssr69gmpz76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":48,\"model_id\":380432732313,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgssr69gmpz76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":48,\"model_id\":380432732313,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54654657652",
"debug_info": null
},
{
"item_basic": {
"itemid": 51154648071,
"shopid": 1666733759,
"name": "hot (new launching) oraimo watch 5 lite smartwatch osw-804 jam tangan pintar layar besar 2.01'' bluetooth baterai tahan lama tahan air debu amoled android smartwatch health watch jam 100+ mode olahraga ip68",
"label_ids": [
844931064601283,
1718093079,
700005509,
1049138,
822059908662278,
825465608499232
],
"image": "id-11134201-82252-mjgsrdbimkn93f",
"images": [
"id-11134201-82252-mjgsrdbimkn93f",
"id-11134201-82251-mjgsrec3umf62c",
"id-11134201-8224y-mjgsrfbv85c416",
"id-11134201-8224s-mjgsrgc7mqrnc7",
"id-11134201-8224v-mjgsrhblqn0jfb",
"id-11134201-8224v-mjgsrjtsf9xd1d",
"id-11134201-8224t-mjgsrmbp9zb7ea",
"id-11134201-8224z-mjgsrnb6s4jn36"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380778,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 33800000000,
"price_min": 33800000000,
"price_max": 33800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Type",
"options": [
"Couple Set",
"Black",
"Pink"
],
"images": [
"id-11134201-8224u-mjgsrpdjso3q58",
"id-11134201-8224s-mjgsrrv8nf2c87",
"id-11134201-8224p-mjgsrtmpc5ja85"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 33800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405432730588,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 33800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51154648071,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgsrdbimkn93f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":50,\"model_id\":405432730588,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgsrdbimkn93f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":50,\"model_id\":405432730588,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51154648071",
"debug_info": null
},
{
"item_basic": {
"itemid": 48554668032,
"shopid": 1542929270,
"name": "G-Refit V5.5 Titanium alloy DW5600 GWB5600 G5600E GWM5610 Watbands Bezel Strap Set Watband Metal/Case black band With Tools",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-82616-mjgspstycqo13b",
"images": [
"sg-11134201-82616-mjgspstycqo13b",
"sg-11134201-82617-mjgsptcud81s54",
"sg-11134201-8260z-mjgsptlwhekk37",
"sg-11134201-8261h-mjgsptvdcjr822",
"sg-11134201-8261w-mjgsoys3mjnr30",
"sg-11134201-825zk-mjgspu66mvpebd",
"sg-11134201-8261e-mjgspudiplokdd",
"sg-11134201-8261e-mjgspur3ow76aa",
"sg-11134201-8262x-mjgspv1tnsapd2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380687,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 407140000000,
"price_min": 407140000000,
"price_max": 407140000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Titanium black Strap",
"Titanium black Set",
"Ti Camouflage Set",
"Titanium black case",
"Titanium natural Set",
"TitaniumNatural case",
"Ti old black Strap",
"Ti old black Set",
"Ti old black case",
"TitaniumNatura Strap"
],
"images": [
"sg-11134201-825zq-mjgspw1oxs02bf",
"sg-11134201-8261u-mjgspw7x0pvkd3",
"sg-11134201-82634-mjgspwdy8iytc8",
"sg-11134201-825zs-mjgsp0m0oufb74",
"sg-11134201-8261n-mjgsovqw0e8435",
"sg-11134201-8261w-mjgspwx49ypvb3",
"sg-11134201-8261e-mjgspur3ow76aa",
"sg-11134201-8262x-mjgspv1tnsapd2",
"sg-11134201-82633-mjgspvka9fd2ca",
"sg-11134201-825zv-mjgspvrxrsw1cd"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"5610mm",
"GW5000",
"GMW-B5000",
"5600mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 407140000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 234639961553,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 407140000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48554668032,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgspstycqo13b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":52,\"model_id\":234639961553,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgspstycqo13b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":52,\"model_id\":234639961553,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48554668032",
"debug_info": null
},
{
"item_basic": {
"itemid": 43128022437,
"shopid": 1656110262,
"name": "HEMAT [2025 NEW]WISELION SMARTWATCH W69 BLUETOOTH JAM TANGAN PINTAR WANITA LAYAR AMOLED",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224z-mjgsopl43guf95",
"images": [
"id-11134201-8224z-mjgsopl43guf95",
"id-11134201-82252-mjgsorcmw0e850",
"id-11134201-82250-mjgsot8s232cc5",
"id-11134201-8224y-mjgsovs4uebmf6",
"id-11134201-82252-mjgsoyalh81u89",
"id-11134201-8224u-mjgsp049zwg321",
"id-11134201-8224v-mjgsp1yc7j0i57",
"id-11134201-8224o-mjgsp3rcoxl185",
"id-11134201-8224w-mjgsp6bmvldz02"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380667,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 43500000000,
"price_min": 43500000000,
"price_max": 43500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Pink",
"Blue",
"Silver",
"Black"
],
"images": [
"id-11134201-8224y-mjgsp88u37r495",
"id-11134201-8224x-mjgspat8n75v18",
"id-11134201-8224r-mjgspdc75g5h40",
"id-11134201-82250-mjgspfv3wg02ea"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 43500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410432713281,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 43500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43128022437,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgsopl43guf95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":53,\"model_id\":410432713281,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgsopl43guf95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":53,\"model_id\":410432713281,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43128022437",
"debug_info": null
},
{
"item_basic": {
"itemid": 41078017702,
"shopid": 1623695925,
"name": "Favorit [2025 New]Wiselion Smartwatch W69 Bluetooth Jam Tangan Pintar Wanita Layar Amoled",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224v-mjgsoptf7mdffb",
"images": [
"id-11134201-8224v-mjgsoptf7mdffb",
"id-11134201-82252-mjgsorkej8jmc4",
"id-11134201-82251-mjgsou3bzimddc",
"id-11134201-8224t-mjgsovtrzv9je7",
"id-11134201-8224w-mjgsowqxevi862",
"id-11134201-8224r-mjgsoyhkr9c018",
"id-11134201-8224q-mjgsp09tm5tu2c",
"id-11134201-8224t-mjgsp1cg5j4616",
"id-11134201-8224z-mjgsp2bh6v432c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380662,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 43100000000,
"price_min": 43100000000,
"price_max": 43100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Pink",
"Blue",
"Silver",
"Black"
],
"images": [
"id-11134201-8224r-mjgsp514r30j5a",
"id-11134201-8224r-mjgsp7jai1vmfd",
"id-11134201-82250-mjgsp9zlkhs592",
"id-11134201-8224z-mjgspbqe7wuc96"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 43100000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395432709715,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 43100000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 41078017702,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgsoptf7mdffb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":54,\"model_id\":395432709715,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mjgsoptf7mdffb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":54,\"model_id\":395432709715,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41078017702",
"debug_info": null
},
{
"item_basic": {
"itemid": 54804652824,
"shopid": 1656110262,
"name": "PROMO VIVO SMARTWATCH SERIES S11 PRO MAX 2.0\" HD TOUCH SCREEN BLUETOOTH CALL CUSTOM WALLPAPER JAM TANGAN PRIA HEART RATE MONITOR BLOOD OXYGEN MONITORING JAM TANGAN WANITA WATERPROOF SPORT WATCH JAM PINTAR SMARTWATCH WANITA PRIA",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224x-mjgsmj9rrj0h28",
"images": [
"id-11134201-8224x-mjgsmj9rrj0h28",
"id-11134201-82252-mjgsml2g87i99c",
"id-11134201-8224x-mjgsmm359yis51",
"id-11134201-8224v-mjgsmntmkkqofa",
"id-11134201-8224p-mjgsmotbvnk1bc",
"id-11134201-8224u-mjgsmptp6k1y44",
"id-11134201-82251-mjgsmse9o1s688",
"id-11134201-8224t-mjgsmub7eakh04",
"id-11134201-8224z-mjgsmw3ysd8m61"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380559,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26900100000,
"price_min": 26900100000,
"price_max": 26900100000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"Pink",
"putih",
"putih.",
"hitam"
],
"images": [
"id-11134201-8224r-mjgsmyv6f4skd3",
"id-11134201-8224q-mjgsn1ef6rk46d",
"id-11134201-82252-mjgsn2d77ksl41",
"id-11134201-8224p-mjgsn4wryfwn23"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26900100000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 360432702736,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26900100000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54804652824,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgsmj9rrj0h28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":56,\"model_id\":360432702736,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgsmj9rrj0h28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":56,\"model_id\":360432702736,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54804652824",
"debug_info": null
},
{
"item_basic": {
"itemid": 27094032753,
"shopid": 1656110262,
"name": "HEMAT [COD] ORI OPPO WATCH 10 SMARTWATCH FULLSCREEN 2.3-INCH IP68 WATERPROOF BISA TELPONAN DAN GANTI WALLPAPPER MONITOR DETAK JANTUNG TEKANAN DARAH SMART WATCH",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224s-mjgsl1ji1q0w93",
"images": [
"id-11134201-8224s-mjgsl1ji1q0w93",
"id-11134201-8224r-mjgsl2io8gzr33",
"id-11134201-8224t-mjgsl49wj5s7e5",
"id-11134201-8224z-mjgsl6157uo591",
"id-11134201-8224u-mjgsl6zzs0ecbc",
"id-11134201-8224z-mjgsl8s9rncx9b",
"id-11134201-8224x-mjgslbbgffggdc",
"id-11134201-8224t-mjgslcardi4ida",
"id-11134201-8224v-mjgslf5x18u892"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380518,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 25875000000,
"price_min": 25875000000,
"price_max": 25875000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"S9 MAX Black",
"S9 MAX Pink",
"Black+2strap",
"S9 MAX Blue",
"S9 MAX White",
"Black",
"White+2strap",
"Pink+2strap",
"Blue+2strap",
"White",
"Pink",
"Blue",
"S9 MAX Grey"
],
"images": [
"id-11134201-8224w-mjgslilpojyc9f",
"id-11134201-8224p-mjgsljtrcnb6c9",
"id-11134201-82250-mjgsllnllt6ob3",
"id-11134201-8224s-mjgslo7lzwg783",
"id-11134201-82252-mjgslpx4u8sh29",
"id-11134201-8224z-mjgslskkgb2dbe",
"id-11134201-8224t-mjgslv3g9mvbd6",
"id-11134201-8224s-mjgslxmi7g92dc",
"id-11134201-82252-mjgsm0619wxs3c",
"id-11134201-8224z-mjgsm1y20lqf48",
"id-11134201-8224r-mjgsm3rqkn4295",
"id-11134201-8224q-mjgsm6eu4nwi71",
"id-11134201-8224q-mjgsm924h3i8a3"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 25875000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310433291361,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 25875000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 27094032753,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgsl1ji1q0w93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":57,\"model_id\":310433291361,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgsl1ji1q0w93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":57,\"model_id\":310433291361,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27094032753",
"debug_info": null
},
{
"item_basic": {
"itemid": 56104657476,
"shopid": 1656110262,
"name": "PAKET HEMAT SMARTWATCH I8 ULTRA WATCH 8 FREE 2 TALI+EARPHONE TWS FITNESS TRACKER BLUETOOTH",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224q-mjgsjilcpgjod2",
"images": [
"id-11134201-8224q-mjgsjilcpgjod2",
"id-11134201-8224s-mjgsjl1msqo085",
"id-11134201-8224p-mjgsjnlbg2kh01",
"id-11134201-8224x-mjgsjolgo7if2c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380422,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21300000000,
"price_min": 21300000000,
"price_max": 21300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"CREAM",
"ORANGE",
"PUTIH",
"UNGU",
"NAVY",
"FULL HITAM",
"HIJAU ARMY",
"HITAM SILVER",
"PINK",
"ABU ABU"
],
"images": [
"id-11134201-8224p-mjgsjruw1pmt2a",
"id-11134201-8224t-mjgsjsrur5s266",
"id-11134201-82251-mjgsjuiwm2v9da",
"id-11134201-8224q-mjgsjx4ss45h2f",
"id-11134201-8224z-mjgsjzr8awp15b",
"id-11134201-8224y-mjgsk1jj6t4y7c",
"id-11134201-8224s-mjgsk2j83sp26c",
"id-11134201-8224v-mjgsk4an9nut67",
"id-11134201-8224y-mjgsk625mr5ud0",
"id-11134201-8224x-mjgsk7u42m12c5"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21300000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380432684715,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56104657476,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgsjilcpgjod2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":60,\"model_id\":380432684715,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgsjilcpgjod2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":60,\"model_id\":380432684715,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56104657476",
"debug_info": null
},
{
"item_basic": {
"itemid": 52704647930,
"shopid": 1623695925,
"name": "Termurah Aolon Gts Jam Smartwatch 41Mm Original Telepon Bluetooth 100+ Olahraga Pace Detak Jantung Oksigen Darah Waterproof Long Battery Life Smart Watch Pria",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-82252-mjgsichpihvk6d",
"images": [
"id-11134201-82252-mjgsichpihvk6d",
"id-11134201-8224p-mjgsieyn0j5scd",
"id-11134201-8224q-mjgsiheys9aa08",
"id-11134201-8224u-mjgsiid3wj5ud6",
"id-11134201-8224w-mjgsik85nuo167",
"id-11134201-8224o-mjgsil4pxm9y09",
"id-11134201-8224t-mjgsino6xlad2f",
"id-11134201-8224p-mjgsiq7kkuma59",
"id-11134201-8224o-mjgsirwug4ci03"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380391,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 35900000000,
"price_min": 35900000000,
"price_max": 35900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Kulit Cokelat",
"Logam RoseGold",
"Logam Hitam ",
"[GTS3]RoseGold",
"[Ultra]Hitam",
"[Ultra]Perak",
"[Ultra]Emas",
"Biru",
"Milan Hitam",
"Pink",
"Hitam",
"[GTS3]Hitam",
"[GTS3]Perak"
],
"images": [
"id-11134201-8224v-mjgsivnfbu2p8d",
"id-11134201-8224o-mjgsiy7aszcy86",
"id-11134201-8224t-mjgsizkmuh3534",
"id-11134201-8224v-mjgsj0l5x9mu1d",
"id-11134201-8224w-mjgsj1j6pmgyc1",
"id-11134201-8224s-mjgsj40wcidge8",
"id-11134201-8224p-mjgsj50k1wqqe4",
"id-11134201-8224q-mjgsj7652k92c4",
"id-11134201-8224v-mjgsj9rh6lmu5e",
"id-11134201-8224s-mjgsjc8pc746bd",
"id-11134201-8224s-mjgsjepz3apzde",
"id-11134201-8224q-mjgsjgfyo8ow5e",
"id-11134201-8224o-mjgsjj0mr08w1f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405432691552,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52704647930,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgsichpihvk6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":61,\"model_id\":405432691552,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgsichpihvk6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":61,\"model_id\":405432691552,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52704647930",
"debug_info": null
},
{
"item_basic": {
"itemid": 51954643414,
"shopid": 1666692538,
"name": "FAVORIT VIVO Smartwatch Series S11 Pro MAX 2.0\" HD Touch Screen Bluetooth Call Custom Wallpaper Jam Tangan Pria Heart Rate Monitor Blood Oxygen Monitoring Jam Tangan Wanita Waterproof Sport Watch Jam Pintar Smartwatch Wanita Pria",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-8224q-mjgskun04rgm54",
"images": [
"id-11134201-8224q-mjgskun04rgm54",
"id-11134201-8224r-mjgskvn88w0083",
"id-11134201-8224y-mjgsky5ew5xd29",
"id-11134201-8224y-mjgskzum2igx41",
"id-11134201-8224y-mjgsl0ttgt1h7d",
"id-11134201-8224u-mjgsl2it41z74a",
"id-11134201-8224r-mjgsl481nkebe5",
"id-11134201-8224w-mjgsl6o8uwhva8",
"id-11134201-82252-mjgsl7m691xh47"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380478,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27600100000,
"price_min": 27600100000,
"price_max": 27600100000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"Pink",
"putih",
"putih.",
"hitam"
],
"images": [
"id-11134201-8224u-mjgsl9cncqh3c1",
"id-11134201-8224o-mjgslaahz75wb1",
"id-11134201-8224x-mjgslb7pnpxj88",
"id-11134201-8224v-mjgsldriwsu8a8"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27600100000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395432701171,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27600100000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51954643414,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgskun04rgm54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":59,\"model_id\":395432701171,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgskun04rgm54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":59,\"model_id\":395432701171,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51954643414",
"debug_info": null
},
{
"item_basic": {
"itemid": 48854663500,
"shopid": 306594236,
"name": "Garmin Forerunners 165 non music",
"label_ids": [
844931064601283,
1049116,
700000504,
822059908662278,
825465608499232,
1718093079
],
"image": "id-11134207-8224t-mjcnlr83v0n42a",
"images": [
"id-11134207-8224t-mjcnlr83v0n42a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380376,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 230000000000,
"price_min": 230000000000,
"price_max": 230000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Blitar",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 230000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445432687643,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 230000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Dava wrdnn",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48854663500,
"shopid": 306594236,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcnlr83v0n42a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,700000504,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":62,\"model_id\":445432687643,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcnlr83v0n42a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,700000504,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":62,\"model_id\":445432687643,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48854663500",
"debug_info": null
},
{
"item_basic": {
"itemid": 57054647923,
"shopid": 1656110262,
"name": "ORIGINAL AOLON CURVE SMARTWATCH IP68 WATERPROOF 2.01-INCH CURVED IPS SCREEN BLUETOOTH CALL RUNNING PACE CUSTOM WALLPAPER SMARTWATCH HEALTH MONITORING",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224z-mjgsgdgg19tz14",
"images": [
"id-11134201-8224z-mjgsgdgg19tz14",
"id-11134201-8224r-mjgsgegm5ptz1a",
"id-11134201-8224s-mjgsgffyz7r6e6",
"id-11134201-8224t-mjgsghyws4xy81",
"id-11134201-8224o-mjgsgjsbi77nfa",
"id-11134201-8224o-mjgsgmclt5vnba",
"id-11134201-8224v-mjgsgo68rlz5ca",
"id-11134201-82251-mjgsgpyxi6117e",
"id-11134201-8224z-mjgsgqzbwef848"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380317,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 39500000000,
"price_min": 39500000000,
"price_max": 39500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Silver+Film+Metal",
"Silver",
"Blue",
"Gold+Leather Strap",
"Black+Milan Strap",
"Gold",
"Gold+Metal Strap",
"Black+Film",
"Silver+MagneticStrap",
"Black+Leather Strap",
"Black",
"Black+MagneticStrap",
"Silver+Metal Strap",
"Black+Film+Metal",
"Silver+Milan",
"Silver+Film",
"Gold+Film",
"Blue+Film",
"Pink",
"Blue+Metal Strap",
"Black+NewMetal Strap",
"Blue+BlueMetal Strap",
"Black+Metal Strap"
],
"images": [
"id-11134201-8224z-mjgsgvg56lmq92",
"id-11134201-8224q-mjgsgx874sg66a",
"id-11134201-8224p-mjgsgz2dzm6d20",
"id-11134201-8224o-mjgsh0sgjbb9d8",
"id-11134201-82250-mjgsh3cc62v72f",
"id-11134201-82252-mjgsh5wz9q8084",
"id-11134201-8224u-mjgsh6xt01du90",
"id-11134201-8224o-mjgsh8oyn5z6d2",
"id-11134201-8224q-mjgshb6idwjp1a",
"id-11134201-8224z-mjgshc7mx9fr56",
"id-11134201-8224r-mjgshd8csgsjbf",
"id-11134201-82250-mjgshe848r9c4c",
"id-11134201-8224y-mjgshf7g385c7c",
"id-11134201-8224z-mjgshh0901dydd",
"id-11134201-8224p-mjgshjjndxxeb3",
"id-11134201-82250-mjgshm1pxq81ea",
"id-11134201-8224u-mjgshnt7vda883",
"id-11134201-82252-mjgshot2u4g3e0",
"id-11134201-82251-mjgshptr9b7n6b",
"id-11134201-8224x-mjgshqsf124n1d",
"id-11134201-8224u-mjgshtbrmcjpe6",
"id-11134201-82252-mjgshubbteyp04",
"id-11134201-8224q-mjgshwwdmkud2c"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 39500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435432682118,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 39500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57054647923,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgsgdgg19tz14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":63,\"model_id\":435432682118,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgsgdgg19tz14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":63,\"model_id\":435432682118,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57054647923",
"debug_info": null
},
{
"item_basic": {
"itemid": 45854663416,
"shopid": 1666692538,
"name": "CUCI GUDANG Aolon GTS Jam Smartwatch 41mm Original Telepon Bluetooth 100+ Olahraga Pace Detak Jantung Oksigen Darah Waterproof Long Battery Life Smart Watch Pria",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-82251-mjgsgthkaubn71",
"images": [
"id-11134201-82251-mjgsgthkaubn71",
"id-11134201-8224r-mjgsgv8qud5019",
"id-11134201-8224y-mjgsgxowbuo6da",
"id-11134201-82252-mjgsgylf8ge98e",
"id-11134201-8224v-mjgsgzigzgufd7",
"id-11134201-8224q-mjgsh1zqw6pz70",
"id-11134201-8224q-mjgsh2w90p3718",
"id-11134201-8224t-mjgsh3symux2e5",
"id-11134201-8224w-mjgsh4wt12ip94"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380311,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 35300000000,
"price_min": 35300000000,
"price_max": 35300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Kulit Cokelat",
"Logam RoseGold",
"Logam Hitam ",
"[GTS3]RoseGold",
"[Ultra]Hitam",
"[Ultra]Perak",
"[Ultra]Emas",
"Biru",
"Milan Hitam",
"Pink",
"Hitam",
"[GTS3]Hitam",
"[GTS3]Perak"
],
"images": [
"id-11134201-8224r-mjgsh9487wg3d7",
"id-11134201-82250-mjgshblp5gjmaa",
"id-11134201-8224v-mjgshe5ef9j574",
"id-11134201-8224y-mjgshfweolc150",
"id-11134201-8224u-mjgshifbe6mf07",
"id-11134201-8224o-mjgshjf6fpc7c7",
"id-11134201-82250-mjgshkf32tc7bd",
"id-11134201-82251-mjgshm6hw4jn00",
"id-11134201-82252-mjgshn46ff2e73",
"id-11134201-8224w-mjgshov1awhz8d",
"id-11134201-8224q-mjgshqkltou89e",
"id-11134201-8224s-mjgsht305on537",
"id-11134201-82251-mjgshu1w76di9f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35300000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355432682115,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45854663416,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgsgthkaubn71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":64,\"model_id\":355432682115,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgsgthkaubn71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":64,\"model_id\":355432682115,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45854663416",
"debug_info": null
},
{
"item_basic": {
"itemid": 42278007863,
"shopid": 1666692538,
"name": "LIMITED Aolon Curve SmartWatch IP68 Waterproof 2.01-inch Curved IPS Screen Bluetooth Call Running Pace Custom Wallpaper Smartwatch Health Monitoring",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-8224w-mjgsewvqy5tv86",
"images": [
"id-11134201-8224w-mjgsewvqy5tv86",
"id-11134201-8224p-mjgsextp8mbqab",
"id-11134201-8224x-mjgseyqin18me9",
"id-11134201-8224u-mjgsf0fd23nlf5",
"id-11134201-8224p-mjgsf1cuc64h95",
"id-11134201-8224y-mjgsf3ioka2tce",
"id-11134201-8224x-mjgsf57fs4cl53",
"id-11134201-8224o-mjgsf7okkwzlfa",
"id-11134201-8224o-mjgsf8mm6rrb18"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380251,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 39800000000,
"price_min": 39800000000,
"price_max": 39800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Silver+Film+Metal",
"Silver",
"Blue",
"Gold+Leather Strap",
"Black+Milan Strap",
"Gold",
"Gold+Metal Strap",
"Black+Film",
"Silver+MagneticStrap",
"Black+Leather Strap",
"Black",
"Black+MagneticStrap",
"Silver+Metal Strap",
"Black+Film+Metal",
"Silver+Milan",
"Silver+Film",
"Gold+Film",
"Blue+Film",
"Pink",
"Blue+Metal Strap",
"Black+NewMetal Strap",
"Blue+BlueMetal Strap",
"Black+Metal Strap"
],
"images": [
"id-11134201-8224w-mjgsfcwtnl6re4",
"id-11134201-8224t-mjgsfdxojzsya8",
"id-11134201-8224u-mjgsffov20w26a",
"id-11134201-8224t-mjgsfhds7f2aa9",
"id-11134201-8224v-mjgsfj27ekud76",
"id-11134201-8224z-mjgsfksoxo1s3d",
"id-11134201-8224t-mjgsfnd24j5w6f",
"id-11134201-8224r-mjgsfpv0f7k143",
"id-11134201-8224s-mjgsfsc0t8g232",
"id-11134201-82250-mjgsfusql8g0eb",
"id-11134201-8224u-mjgsfwli3h8maf",
"id-11134201-8224q-mjgsfz4ntlaf27",
"id-11134201-8224z-mjgsg0tgejutec",
"id-11134201-8224v-mjgsg2hochl222",
"id-11134201-8224r-mjgsg3en4qv678",
"id-11134201-8224s-mjgsg5uoaeipf8",
"id-11134201-8224u-mjgsg6rla1ok68",
"id-11134201-82252-mjgsg8j0hbeqbc",
"id-11134201-82250-mjgsga8nw1s05a",
"id-11134201-8224q-mjgsgcpwv21021",
"id-11134201-8224v-mjgsgf6snbwid7",
"id-11134201-8224t-mjgsghoqr11c9c",
"id-11134201-82251-mjgsgje6wg7721"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 39800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420432680598,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 39800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 42278007863,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgsewvqy5tv86\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":65,\"model_id\":420432680598,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mjgsewvqy5tv86\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":65,\"model_id\":420432680598,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42278007863",
"debug_info": null
},
{
"item_basic": {
"itemid": 53454657513,
"shopid": 1623695925,
"name": "New Arrival [Garansi 1 Tahun] Aolon Tetra R4 Smartwatch Amoled Aod Cover Lock Compass Bluetooth Call Smart Watch 1.46'' 466*466 Display Heart Rate&Blood Oxygen Sleep Monitoring",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224s-mjgsd60mygw289",
"images": [
"id-11134201-8224s-mjgsd60mygw289",
"id-11134201-82251-mjgsd8hzptdtc7",
"id-11134201-8224z-mjgsd9fgvmkk3a",
"id-11134201-8224u-mjgsdbwdpvd181",
"id-11134201-8224o-mjgsdefqqm0ybf",
"id-11134201-8224y-mjgsdg59ciytd2",
"id-11134201-8224u-mjgsdhugn1mo0c",
"id-11134201-8224x-mjgsdjk2x1j53a",
"id-11134201-8224w-mjgsdlcpcohv54"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380135,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 76100000000,
"price_min": 76100000000,
"price_max": 76100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Milan Perak",
"Perak",
"Logam Perak",
"Logam Hitam",
"Hitam",
"Khaki",
"Milan Hitam",
"Kulit Cokelat",
"Magnetik Hitam"
],
"images": [
"id-11134201-8224v-mjgsdonzdclc81",
"id-11134201-8224r-mjgsdr5676rl46",
"id-11134201-82252-mjgsds5aesxy14",
"id-11134201-8224s-mjgsdtv7gefa38",
"id-11134201-82252-mjgsdwchis5h5c",
"id-11134201-8224t-mjgsdxjrx24mb5",
"id-11134201-8224z-mjgsdyhqbthi05",
"id-11134201-8224s-mjgsdzg8ip6u26",
"id-11134201-8224z-mjgse16tbs3q61"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 76100000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390432667339,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 76100000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53454657513,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgsd60mygw289\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":66,\"model_id\":390432667339,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgsd60mygw289\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":66,\"model_id\":390432667339,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53454657513",
"debug_info": null
},
{
"item_basic": {
"itemid": 52154647840,
"shopid": 1666733759,
"name": "ready stock samsung samrt watch s11 pro max original with 2.2\" hd amoled display gps nfc waterproof bluetooth call smartwatch wanita pria wireless charging dan ganti wallpapper jam tangan smartwatch jam tangan wanita",
"label_ids": [
844931064601283,
700005509,
1049138,
1718093079,
822059908662278,
825465608499232
],
"image": "id-11134201-82252-mjgscu2rb1mrd6",
"images": [
"id-11134201-82252-mjgscu2rb1mrd6",
"id-11134201-8224t-mjgscwnuk9on8a",
"id-11134201-8224x-mjgscxr3aw3o47",
"id-11134201-8224v-mjgsczj62mf5e2",
"id-11134201-8224y-mjgsd1c13dhh41",
"id-11134201-8224t-mjgsd35mu9zb5a",
"id-11134201-8224u-mjgsd4866i9tb8",
"id-11134201-8224y-mjgsd6re7g900c",
"id-11134201-8224o-mjgsd7u26sjq83"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380119,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 28799800000,
"price_min": 28799800000,
"price_max": 28799800000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"S10 PRO MAX-BLACK",
"S11 PRO MAX-white",
"S9 PRO MAX-Pink",
"S10 PRO MAX-white",
"S11 PRO MAX",
"S11 PRO MAX-PINK",
"S11 PRO MAX-Black",
"S10 PRO MAX-PINK",
"S9 PRO MAX-white",
"S9 PRO MAX-Black"
],
"images": [
"id-11134201-82250-mjgsdai65erl26",
"id-11134201-82251-mjgsdbg3jls065",
"id-11134201-82250-mjgsddxch7gk25",
"id-11134201-8224o-mjgsdeu0lzpe25",
"id-11134201-8224y-mjgsdgly43d1f9",
"id-11134201-8224u-mjgsdic35oud26",
"id-11134201-82252-mjgsdjb0dern17",
"id-11134201-8224t-mjgsdlt7ss1u32",
"id-11134201-8224y-mjgsdod4k8hs99",
"id-11134201-8224p-mjgsdpdw6nep61"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 28799800000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 440432666913,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 28799800000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52154647840,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgscu2rb1mrd6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":69,\"model_id\":440432666913,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgscu2rb1mrd6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":69,\"model_id\":440432666913,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52154647840",
"debug_info": null
},
{
"item_basic": {
"itemid": 46304677423,
"shopid": 1656110262,
"name": "HEMAT [GARANSI 1 TAHUN] AOLON TETRA R4 SMARTWATCH AMOLED AOD COVER LOCK COMPASS BLUETOOTH CALL SMART WATCH 1.46'' 466*466 DISPLAY HEART RATE&BLOOD OXYGEN SLEEP MONITORING",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224o-mjgsd3ja75zbea",
"images": [
"id-11134201-8224o-mjgsd3ja75zbea",
"id-11134201-8224p-mjgsd4l38p39e8",
"id-11134201-82250-mjgsd6in7k0718",
"id-11134201-82252-mjgsd98cstfkc9",
"id-11134201-8224t-mjgsdac50etj94",
"id-11134201-8224u-mjgsdbcnkxz56b",
"id-11134201-8224t-mjgsdd6s232d6f",
"id-11134201-8224x-mjgsdez93x8n6d",
"id-11134201-8224p-mjgsdhkpbg9323"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380129,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 76400000000,
"price_min": 76400000000,
"price_max": 76400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Milan Perak",
"Perak",
"Logam Perak",
"Logam Hitam",
"Hitam",
"Khaki",
"Milan Hitam",
"Kulit Cokelat",
"Magnetik Hitam"
],
"images": [
"id-11134201-8224w-mjgsdkqo2i2v7c",
"id-11134201-8224o-mjgsdmkt62o561",
"id-11134201-82251-mjgsdpegh2pu99",
"id-11134201-8224u-mjgsdqgvekue6e",
"id-11134201-82250-mjgsdt65z37o55",
"id-11134201-8224s-mjgsdu746w3pca",
"id-11134201-82251-mjgsdw172ebk99",
"id-11134201-8224s-mjgsdx2o622v2f",
"id-11134201-8224u-mjgsdy5mvq4l93"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 76400000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 49950747322,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 76400000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46304677423,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgsd3ja75zbea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":67,\"model_id\":49950747322,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgsd3ja75zbea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":67,\"model_id\":49950747322,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46304677423",
"debug_info": null
},
{
"item_basic": {
"itemid": 46104677392,
"shopid": 1666692538,
"name": "100% AMAN Samsung Samrt watch S11 Pro Max Original with 2.2\" HD AMOLED Display GPS NFC Waterproof Bluetooth Call Smartwatch wanita pria wireless charging Dan Ganti Wallpapper Jam Tangan Smartwatch Jam Tangan Wanita",
"label_ids": [
844931064601283,
700005503,
1049130,
822059908662278,
825465608499232
],
"image": "id-11134201-8224q-mjgscsb6wydi22",
"images": [
"id-11134201-8224q-mjgscsb6wydi22",
"id-11134201-82252-mjgscusssy69a6",
"id-11134201-8224w-mjgscwhpwumf0b",
"id-11134201-82252-mjgscy733k7935",
"id-11134201-8224p-mjgscz5ntp8m40",
"id-11134201-8224s-mjgsd1lzr01za4",
"id-11134201-8224z-mjgsd3di1a806b",
"id-11134201-8224q-mjgsd5uga3gh0f",
"id-11134201-8224o-mjgsd8br34e989"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380121,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27599800000,
"price_min": 27599800000,
"price_max": 27599800000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"S10 PRO MAX-BLACK",
"S11 PRO MAX-white",
"S9 PRO MAX-Pink",
"S10 PRO MAX-white",
"S11 PRO MAX",
"S11 PRO MAX-PINK",
"S11 PRO MAX-Black",
"S10 PRO MAX-PINK",
"S9 PRO MAX-white",
"S9 PRO MAX-Black"
],
"images": [
"id-11134201-82251-mjgsdbznijuve8",
"id-11134201-82252-mjgsdefq6y2rfe",
"id-11134201-8224p-mjgsdg4l5la991",
"id-11134201-8224z-mjgsdhstg64h2e",
"id-11134201-8224o-mjgsdior7g1y77",
"id-11134201-8224x-mjgsdkehxj45e6",
"id-11134201-8224x-mjgsdmv5acqv80",
"id-11134201-8224z-mjgsdpc24jyffa",
"id-11134201-8224u-mjgsdq960v7le3",
"id-11134201-8224o-mjgsdr7ut3b8b8"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27599800000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 350432670279,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27599800000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46104677392,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgscsb6wydi22\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":68,\"model_id\":350432670279,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgscsb6wydi22\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":68,\"model_id\":350432670279,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46104677392",
"debug_info": null
},
{
"item_basic": {
"itemid": 57754643353,
"shopid": 1623695925,
"name": "Garansi Official Itel Smart Watch Isw-O20 Ai Watch Face | Pemantau Kesehatan 24 Jam | Layar Hd 2.04\" | Panggilan Bt | Tahan Air Ip68 Smartwatch",
"label_ids": [
844931064601283,
1049131,
1049130,
822059908662278,
825465608499232
],
"image": "id-11134201-8224y-mjgsc39jz952c9",
"images": [
"id-11134201-8224y-mjgsc39jz952c9",
"id-11134201-8224r-mjgsc51b4e8619",
"id-11134201-8224o-mjgsc5yhy22s4b",
"id-11134201-8224t-mjgsc6vongn922",
"id-11134201-8224r-mjgsc9dgidc4d8",
"id-11134201-8224s-mjgscbu6ve9s6e",
"id-11134201-8224r-mjgscdke6f4248",
"id-11134201-82250-mjgscg0y6j2812",
"id-11134201-8224x-mjgschpj47wk44"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380080,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 29800000000,
"price_min": 29800000000,
"price_max": 29800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Blue",
"Pink",
"Light Green",
"Dark Green",
"O20Black+Strap Pink",
"O20Black+Strap White",
"Black"
],
"images": [
"id-11134201-8224u-mjgscl2n44qu45",
"id-11134201-8224z-mjgscnjdfr405e",
"id-11134201-8224q-mjgscogi8buqe7",
"id-11134201-8224s-mjgscq9vflz696",
"id-11134201-8224s-mjgscssfrytg7a",
"id-11134201-82250-mjgscuisqo0155",
"id-11134201-8224v-mjgscw7qxxxhf0"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 29800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345432657909,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 29800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57754643353,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgsc39jz952c9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":71,\"model_id\":345432657909,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgsc39jz952c9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":71,\"model_id\":345432657909,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57754643353",
"debug_info": null
},
{
"item_basic": {
"itemid": 50254647851,
"shopid": 1666692538,
"name": "TERLARIS [Garansi 1 Tahun] Aolon Tetra R4 Smartwatch Amoled AOD Cover Lock Compass Bluetooth Call Smart Watch 1.46'' 466*466 Display Heart Rate&Blood Oxygen Sleep Monitoring",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-8224o-mjgsbpzi5l3bfc",
"images": [
"id-11134201-8224o-mjgsbpzi5l3bfc",
"id-11134201-82250-mjgsbrqxla8148",
"id-11134201-82252-mjgsbthedon66c",
"id-11134201-82252-mjgsbuff1wxt69",
"id-11134201-8224y-mjgsbw5gia6d4b",
"id-11134201-82252-mjgsbx4mi0ape0",
"id-11134201-8224y-mjgsbyua7xmud5",
"id-11134201-82250-mjgsc0jz5czr05",
"id-11134201-8224t-mjgsc33f92iu01"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768380063,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 74600000000,
"price_min": 74600000000,
"price_max": 74600000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Milan Perak",
"Perak",
"Logam Perak",
"Logam Hitam",
"Hitam",
"Khaki",
"Milan Hitam",
"Kulit Cokelat",
"Magnetik Hitam"
],
"images": [
"id-11134201-8224t-mjgsc5pdeqrmac",
"id-11134201-8224v-mjgsc7hhmhoge5",
"id-11134201-82251-mjgsc8gi9qf9bb",
"id-11134201-8224y-mjgsc9fyd9mrdd",
"id-11134201-8224t-mjgscby6qe4jaa",
"id-11134201-8224v-mjgsccw20qgyf6",
"id-11134201-8224s-mjgscenevq4lb5",
"id-11134201-8224x-mjgscfmbqsxv59",
"id-11134201-8224y-mjgsci4abbb57f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 74600000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355432657562,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 74600000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNzQuMzRfe2IxMWJhM2FmNDg1NTdlNTY1ZTA4YWVhNGI1MDFlMTAwOjAyMDAwMGVkNGNkZDkxZWM6MDEwMDAxMTJkYjA2YjRkMn1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjI1NTc0Njg5MDY=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50254647851,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgsbpzi5l3bfc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":72,\"model_id\":355432657562,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgsbpzi5l3bfc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":72,\"model_id\":355432657562,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50254647851",
"debug_info": null
},
{
"item_basic": {
"itemid": 28494037733,
"shopid": 1623695925,
"name": "Promo [Promo Special] Advan Smartwatch Se1 | Ips 1.83\" | Bluetooth Calls | Bluetooth 5.2 | Ai Voice Assistant | 100+ Sport Mode | Waterproof Ip68 | Up To 30-Days Battery Life",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224q-mjgsaesy0gzrd1",
"images": [
"id-11134201-8224q-mjgsaesy0gzrd1",
"id-11134201-8224w-mjgsaha3o4jo52",
"id-11134201-8224o-mjgsai6tsjrbc6",
"id-11134201-8224x-mjgsaj3erk0527",
"id-11134201-8224o-mjgsall5evib74",
"id-11134201-8224u-mjgsanclh3b9ff",
"id-11134201-8224p-mjgsap1uzpxe6f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379985,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 32700000000,
"price_min": 32700000000,
"price_max": 32700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Colour",
"options": [
"Gold",
"Black"
],
"images": [
"id-11134201-8224s-mjgsasj66sjq62",
"id-11134201-82250-mjgsatfpbqiqf8"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 32700000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 350432644214,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 32700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 28494037733,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgsaesy0gzrd1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2163,\"model_id\":350432644214,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mjgsaesy0gzrd1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2163,\"model_id\":350432644214,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28494037733",
"debug_info": null
},
{
"item_basic": {
"itemid": 57704657315,
"shopid": 1656110262,
"name": "HEMAT AOLON CURVE JAM TANGAN SMARTWATCH TAHAN AIR IP68 LAYAR IPS MELENGKUNG 2,01 INCI TELEPON BLUETOOTH RUNNING PACE WALLPAPER KUSTOM JAM PINTAR PRIA PEMANTAUAN KESEHATAN",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-82251-mjgs6frzvawy01",
"images": [
"id-11134201-82251-mjgs6frzvawy01",
"id-11134201-8224o-mjgs6igljldw8e",
"id-11134201-8224q-mjgs6l0gjvuu5d",
"id-11134201-8224z-mjgs6mtytrsyc3",
"id-11134201-8224r-mjgs6nv7w2kic2",
"id-11134201-8224o-mjgs6qe4lnut32",
"id-11134201-8224r-mjgs6sy1r5zba9",
"id-11134201-82251-mjgs6vizl53afa",
"id-11134201-8224z-mjgs6xgnxbls6d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379850,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 37200000000,
"price_min": 37200000000,
"price_max": 37200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"[Curve3Ultra]Perak",
"Logam Hitam",
"Milan Hitam",
"Perak",
"Hitam",
"[Curve3]Perak",
"[New]Pink",
"Biru",
"Magnetik Pink",
"[Curve3Ultra]Hitam",
"Logam Perak",
"[Curve3]Hitam",
"Milan Perak",
"Magnetik Hitam",
"Logam RoseGold",
"[Curve3Ultra]Pink",
"[Curve3]RoseGold",
"Kulit cokelat"
],
"images": [
"id-11134201-8224r-mjgs727p8b9e65",
"id-11134201-8224u-mjgs7399vu9s2a",
"id-11134201-8224x-mjgs757jztoie8",
"id-11134201-8224s-mjgs771vrojlbd",
"id-11134201-82251-mjgs78xwhjba1e",
"id-11134201-8224r-mjgs7a0ooo3k98",
"id-11134201-82252-mjgs7cpy1lac39",
"id-11134201-8224w-mjgs7fbsx9tu6d",
"id-11134201-8224v-mjgs7gfahclc84",
"id-11134201-8224w-mjgs7hjxwpvkc3",
"id-11134201-8224w-mjgs7im13f2a81",
"id-11134201-8224r-mjgs7jordmv703",
"id-11134201-8224x-mjgs7mbr2lfqe0",
"id-11134201-8224q-mjgs7oylgkcj71",
"id-11134201-8224v-mjgs7qtjl91d97",
"id-11134201-8224x-mjgs7souzh8j8a",
"id-11134201-8224z-mjgs7vaieww788",
"id-11134201-8224o-mjgs7xvpylts9a"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 37200000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390432629885,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 37200000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57704657315,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgs6frzvawy01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":978,\"model_id\":390432629885,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mjgs6frzvawy01\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":978,\"model_id\":390432629885,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57704657315",
"debug_info": null
},
{
"item_basic": {
"itemid": 57304647675,
"shopid": 1666692538,
"name": "MURAH Pro 9 SmartWatch Paket 8 Tali Seri 9 Jam Smartwatch Pria Wanita Bisa Buat Olahraga Kesehatan",
"label_ids": [
844931064601283,
700005503,
1049130,
822059908662278,
825465608499232
],
"image": "id-11134201-8224z-mjgs7ova7wufb0",
"images": [
"id-11134201-8224z-mjgs7ova7wufb0",
"id-11134201-82250-mjgs7qkdarr9d2",
"id-11134201-8224t-mjgs7rik21hf77"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379850,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24500000000,
"price_min": 24500000000,
"price_max": 24500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"SILVER",
"ROSE GOLD",
"HITAM"
],
"images": [
"id-11134201-8224v-mjgs7tutnw8wfc",
"id-11134201-8224s-mjgs7vlvofluf5",
"id-11134201-8224q-mjgs7y3vrojn1f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 400432629734,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57304647675,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgs7ova7wufb0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1009,\"model_id\":400432629734,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224z-mjgs7ova7wufb0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1009,\"model_id\":400432629734,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57304647675",
"debug_info": null
},
{
"item_basic": {
"itemid": 56804647704,
"shopid": 1531387649,
"name": "22MM Bracelet WatchStrap For Huawei Watch GT1 GT 2 3 4 46mm Smartwatch Silicone Watchband For Huawei Watch 4 3 2 Pro Belt Strap",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8262g-mjgs7puq76roe2",
"images": [
"sg-11134201-8262g-mjgs7puq76roe2",
"sg-11134201-8262f-mjgs7q5k8939b3",
"sg-11134201-8262l-mjgs7qg9vy861f",
"sg-11134201-825zn-mjgs7qpb56o547",
"sg-11134201-8262g-mjgs7qxywhs325",
"sg-11134201-82607-mjgs7rak7u2q80",
"sg-11134201-8262d-mjgs7rkolzpgf3",
"sg-11134201-8260j-mjgs7rszrjt14a",
"sg-11134201-82632-mjgs7s4t3shs6f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379842,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26570000000,
"price_min": 26570000000,
"price_max": 26570000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"WHITE",
"dark blue",
"Orange",
"Army Blue",
"green",
"GRAY",
"black",
"Red"
],
"images": [
"sg-11134201-8262g-mjgs7qxywhs325",
"sg-11134201-8260j-mjgs7rszrjt14a",
"sg-11134201-82607-mjgs7sdduwar57",
"sg-11134201-82617-mjgs7smv5jb63a",
"sg-11134201-82617-mjgs7svsxr7pf7",
"sg-11134201-8262z-mjgs7t3z3k77dd",
"sg-11134201-8261n-mjgs7tc2ddkwaf",
"sg-11134201-8262g-mjgs7tnillvo19"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26570000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405432636723,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26570000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56804647704,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262g-mjgs7puq76roe2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1046,\"model_id\":405432636723,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262g-mjgs7puq76roe2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1046,\"model_id\":405432636723,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56804647704",
"debug_info": null
},
{
"item_basic": {
"itemid": 56004652728,
"shopid": 1656110262,
"name": "KUALITAS SUPER XIAOMI SMART BAND 9 ACTIVE | REFRESH RATE 60 HZ | TAHAN AIR HINGGA 50 METER | 50+ MODE OLAHRAGA | BATERAI HINGGA 18 HARI [OFFICIAL STORE]",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224o-mjgs9juw8qgy04",
"images": [
"id-11134201-8224o-mjgs9juw8qgy04",
"id-11134201-8224q-mjgs9kvc5r0i19",
"id-11134201-8224p-mjgs9lvloefabc",
"id-11134201-82252-mjgs9muk0utjae",
"id-11134201-8224o-mjgs9om3bnr751"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379942,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 47400000000,
"price_min": 47400000000,
"price_max": 47400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Beige White",
"NEW Purple",
"NEW Green",
"Pink",
"Black"
],
"images": [
"id-11134201-8224p-mjgs9qy7xo93b4",
"id-11134201-8224y-mjgs9spnn8xt56",
"id-11134201-8224y-mjgs9v8v0b9e50",
"id-11134201-8224u-mjgs9w6bpb7q81",
"id-11134201-8224z-mjgs9xwbk1l17d"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 47400000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435432639064,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 47400000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56004652728,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgs9juw8qgy04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1099,\"model_id\":435432639064,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgs9juw8qgy04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1099,\"model_id\":435432639064,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56004652728",
"debug_info": null
},
{
"item_basic": {
"itemid": 52154643397,
"shopid": 1666692538,
"name": "LIMITED Xiaomi Smart Band 9 Active | Refresh rate 60 Hz | Tahan Air Hingga 50 Meter | 50+ Mode Olahraga | Baterai Hingga 18 Hari [Official Store]",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-8224r-mjgs87rra9z6a6",
"images": [
"id-11134201-8224r-mjgs87rra9z6a6",
"id-11134201-8224v-mjgs89gtxon775",
"id-11134201-82252-mjgs8bxndog594",
"id-11134201-8224o-mjgs8dmp651j0c",
"id-11134201-82250-mjgs8ej2c9a832"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379885,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 47600000000,
"price_min": 47600000000,
"price_max": 47600000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Beige White",
"NEW Purple",
"NEW Green",
"Pink",
"Black"
],
"images": [
"id-11134201-8224p-mjgs8h6eio01b2",
"id-11134201-8224u-mjgs8ivuh2bmaf",
"id-11134201-8224s-mjgs8kknu7et54",
"id-11134201-82250-mjgs8n21x9mt29",
"id-11134201-8224w-mjgs8oq8i1hfb9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 47600000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 400432645773,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 47600000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52154643397,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgs87rra9z6a6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1346,\"model_id\":400432645773,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgs87rra9z6a6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1346,\"model_id\":400432645773,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52154643397",
"debug_info": null
},
{
"item_basic": {
"itemid": 47154677520,
"shopid": 1623695925,
"name": "New Arrival Xiaomi Smart Band 9 Active | Refresh Rate 60 Hz | Tahan Air Hingga 50 Meter | 50+ Mode Olahraga | Baterai Hingga 18 Hari [Official Store]",
"label_ids": [
844931064601283,
1049131,
1049130,
822059908662278,
825465608499232
],
"image": "id-11134201-8224t-mjgs9mm154p26f",
"images": [
"id-11134201-8224t-mjgs9mm154p26f",
"id-11134201-8224x-mjgs9nlfeosh0f",
"id-11134201-8224w-mjgs9q2grsaq05",
"id-11134201-8224u-mjgs9rszjv9h1a",
"id-11134201-8224u-mjgs9spmfpc219"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379952,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 47100000000,
"price_min": 47100000000,
"price_max": 47100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Beige White",
"NEW Purple",
"NEW Green",
"Pink",
"Black"
],
"images": [
"id-11134201-8224z-mjgs9vjffsaqfe",
"id-11134201-8224u-mjgs9wh8i0oy22",
"id-11134201-8224z-mjgs9yxd8v0mcf",
"id-11134201-8224t-mjgsa1dn7xfp3e",
"id-11134201-8224u-mjgsa3v8g35tfd"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 47100000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 340432647551,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 47100000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47154677520,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs9mm154p26f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1670,\"model_id\":340432647551,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs9mm154p26f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049131,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1670,\"model_id\":340432647551,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47154677520",
"debug_info": null
},
{
"item_basic": {
"itemid": 47104663289,
"shopid": 60667923,
"name": "HUAWEI WATCH FIT 4",
"label_ids": [
844931064601283,
1059156,
700000521,
1718093079,
822059908662278,
825465608497696,
825465608499232
],
"image": "id-11134207-82251-mjgrwww3kiyrd5",
"images": [
"id-11134207-82251-mjgrwww3kiyrd5",
"id-11134207-82251-mjgrwww3lxj745",
"id-11134207-82251-mjgrwww3nc3na7",
"id-11134207-8224v-mjgrwww3oqo37f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379952,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 160000000000,
"price_min": 160000000000,
"price_max": 160000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Cilacap",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 160000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 320432643086,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 160000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Oeahh",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47104663289,
"shopid": 60667923,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgrwww3kiyrd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000521,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1675,\"model_id\":320432643086,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgrwww3kiyrd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000521,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1675,\"model_id\":320432643086,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47104663289",
"debug_info": null
},
{
"item_basic": {
"itemid": 46554667877,
"shopid": 1666692538,
"name": "TERLARIS COD Terbaru Jam Tangan Ultra 8 Smartwatch Free Headset dan Strap Polos Jam tangan Pria/Wanita",
"label_ids": [
844931064601283,
700005503,
1049130,
822059908662278,
825465608499232
],
"image": "id-11134201-8224r-mjgs9lcetgqt59",
"images": [
"id-11134201-8224r-mjgs9lcetgqt59",
"id-11134201-82251-mjgs9n1j9hj7ba",
"id-11134201-8224x-mj45k8izthc5c7",
"id-11134201-82252-mjgs9rz2d81v6e",
"id-11134201-8224q-mjgs9tnkgbuv2e",
"id-11134201-8224z-mjgs9ukpk54xa6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379964,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 39013400000,
"price_min": 39013400000,
"price_max": 39013400000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"PINK",
"FULL HITAM",
"CREAM",
"HIJAU ARMI",
"PUTIH",
"NAVY",
"ABU ABU",
"ORANGE",
"HITAM SILVER"
],
"images": [
"id-11134201-8224w-mjgs9y3cfpqd96",
"id-11134201-82250-mjgs9z0pt9tx8d",
"id-11134201-8224o-mjgsa0pliozo30",
"id-11134201-8224q-mjgsa3aul4hz58",
"id-11134201-82250-mjgsa4ziu7lt61",
"id-11134201-8224x-mjgsa5x5jj0i4e",
"id-11134201-8224q-mjgsa7m8464g17",
"id-11134201-8224w-mjgsaa3pcyrpac",
"id-11134201-8224r-mjgsaculr56p4e"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 39013400000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370432650882,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 39013400000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46554667877,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgs9lcetgqt59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1702,\"model_id\":370432650882,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224r-mjgs9lcetgqt59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005503,1049130,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1702,\"model_id\":370432650882,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46554667877",
"debug_info": null
},
{
"item_basic": {
"itemid": 46104663266,
"shopid": 1623695925,
"name": "Recommended Pro 9 Smartwatch Paket 8 Tali Seri 9 Jam Smartwatch Pria Wanita Bisa Buat Olahraga Kesehatan",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224t-mjgs91cuihom37",
"images": [
"id-11134201-8224t-mjgs91cuihom37",
"id-11134201-8224p-mjgs92azh5afe2",
"id-11134201-8224s-mjgs94qso93b3b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379916,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 25500000000,
"price_min": 25500000000,
"price_max": 25500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"SILVER",
"ROSE GOLD",
"HITAM"
],
"images": [
"id-11134201-8224s-mjgs98gvdclfee",
"id-11134201-82250-mjgs9ajneqdj29",
"id-11134201-8224q-mjgs9d0f3ima93"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 25500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 400432638247,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 25500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46104663266,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs91cuihom37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1734,\"model_id\":400432638247,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs91cuihom37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1734,\"model_id\":400432638247,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46104663266",
"debug_info": null
},
{
"item_basic": {
"itemid": 45104663371,
"shopid": 1666733759,
"name": "premium xiaomi smart band 9 active | refresh rate 60 hz | tahan air hingga 50 meter | 50+ mode olahraga | baterai hingga 18 hari [official store]",
"label_ids": [
844931064601283,
700005509,
1049138,
1718093079,
822059908662278,
825465608499232
],
"image": "id-11134201-8224s-mjgs892bwop059",
"images": [
"id-11134201-8224s-mjgs892bwop059",
"id-11134201-82252-mjgs8a0jrabp56",
"id-11134201-82251-mjgs8axnf4lhab",
"id-11134201-8224x-mjgs8cn6ul1f07",
"id-11134201-8224v-mjgs8f4yfnr86d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379887,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 46600000000,
"price_min": 46600000000,
"price_max": 46600000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Beige White",
"NEW Purple",
"NEW Green",
"Pink",
"Black"
],
"images": [
"id-11134201-8224r-mjgs8h4n44qtd5",
"id-11134201-8224u-mjgs8itj7k0002",
"id-11134201-8224y-mjgs8l9i53pg64",
"id-11134201-8224p-mjgs8mxt7ev452",
"id-11134201-8224s-mjgs8pdsdcefad"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 46600000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445432645837,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 46600000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45104663371,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgs892bwop059\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1796,\"model_id\":445432645837,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224s-mjgs892bwop059\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1796,\"model_id\":445432645837,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45104663371",
"debug_info": null
},
{
"item_basic": {
"itemid": 56604657254,
"shopid": 1531387649,
"name": "Nylon Loop Strap For Huawei Watch Fit 4/3 Sport Breathable Replacement Bracelet Wristband For Huawei Watch Fit 4 Pro Accessories",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-8261g-mjgs6pxgni8411",
"images": [
"sg-11134201-8261g-mjgs6pxgni8411",
"sg-11134201-8262r-mjgs6q6y0wskf2",
"sg-11134201-8260w-mjgs6qefepky32",
"sg-11134201-82604-mjgs6qlgmz9j28",
"sg-11134201-8261z-mjgs6qusqr5v12",
"sg-11134201-825zv-mjgs6r5m14oyec",
"sg-11134201-8262s-mjgs6rh4r9c510",
"sg-11134201-8262j-mjgs6rogvh1ge5",
"sg-11134201-82633-mjgs6rzg0glc2c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379828,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21740000000,
"price_min": 21740000000,
"price_max": 21740000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Dark olive green",
"Obsidian gray",
"Plum color",
"Deep navy blue",
"Picea crassifolia",
"Charcoal",
"Heart purple",
"Milk white",
"Red blue",
"Lime",
"Dark sea green",
"Sea wave blue",
"Dark indigo",
"Fresh orange",
"Neon powder",
"Bright sun",
"Unity mosaic",
"Black rainbow",
"White rainbow",
"Cherry green",
"Double spell red",
"Pink tan",
"Tornado gray",
"Abyss blue green",
"Maize white",
"Golden orange",
"Bright blue",
"Spruce fog",
"Grape purple",
"Lilac",
"Spearmint",
"Light cyan",
"Clear feather",
"Chinese red",
"Rose pink",
"Cape blue",
"Grey cloud",
"Indigo blue",
"Hibiscus powder",
"Apricot peach",
"Reflective black",
"Reflective white",
"Heart black",
"Ripe berry color",
"Dune color",
"Camel",
"Garnet",
"Khaki",
"Ice Ocean Blue",
"Dark grey",
"Midnight blue black",
"Cornflower blue",
"Pitaya color",
"Faint yellow",
"Rainbow colors",
"Smoke purple",
"Papaya color",
"Olive green",
"Bright pink",
"Bright yellow",
"Midnight Blue",
"Seven colors",
"Deep fog ash",
"Pearl powder",
"Army green",
"Blue sea",
"Acid blue",
"Brilliant pink",
"Light yellow",
"Black white",
"Red black",
"Deep black",
"Deep olive",
"Black sand",
"Seashell",
"Pink sand",
"Orange red"
],
"images": [
"sg-11134201-82604-mjgs6qlgmz9j28",
"sg-11134201-8262s-mjgs6rh4r9c510",
"sg-11134201-825zn-mjgs6s6yx1j479",
"sg-11134201-8261b-mjgs6se06ps379",
"sg-11134201-8261o-mjgs6ski3pxc6c",
"sg-11134201-82625-mjgs6sru287a76",
"sg-11134201-8260a-mjgs6syd3x8lda",
"sg-11134201-8262r-mjgs6t4y9gxw73",
"sg-11134201-82632-mjgs6tc634lj56",
"sg-11134201-8262i-mjgs6tjak0zld6",
"sg-11134201-8261v-mjgs6tp478qt52",
"sg-11134201-8261e-mjgs6tvq7oxt3b",
"sg-11134201-825zn-mjgs6u391gqsae",
"sg-11134201-8260e-mjgs6ual8g0399",
"sg-11134201-8260h-mjgs6ug6dj432f",
"sg-11134201-8260t-mjgs6um7tog67b",
"sg-11134201-825zn-mjgs6usp1csjb5",
"sg-11134201-8261u-mjgs6v1l2gaoec",
"sg-11134201-8260b-mjgs6v97en7rae",
"sg-11134201-8260q-mjgs6vrhoooxeb",
"sg-11134201-82604-mjgs6w30vrb6eb",
"sg-11134201-825zw-mjgs6wdv6kg364",
"sg-11134201-8262j-mjgs6x6tu1hj72",
"sg-11134201-8261g-mjgs6xfqai2pdb",
"sg-11134201-8260h-mjgs6xnk2zgg22",
"sg-11134201-825zl-mjgs6xvk47pjfd",
"sg-11134201-82613-mjgs6y8m7ls2dd",
"sg-11134201-8262x-mjgs375qpn9h5f",
"sg-11134201-8260n-mjgs6ykzc1z6b8",
"sg-11134201-8261w-mjgs6z1toj5s9e",
"sg-11134201-8262a-mjgs6z8ifb40c6",
"sg-11134201-8261g-mjgs6zfqps038f",
"sg-11134201-8262h-mjgs6zn2y7ev95",
"sg-11134201-8262f-mjgs6zt2db7p96",
"sg-11134201-8260m-mjgs70hh0zcy82",
"sg-11134201-8261f-mjgs70oc8xl06c",
"sg-11134201-82613-mjgs70tz0xdu86",
"sg-11134201-8260i-mjgs39fsu77le0",
"sg-11134201-8260y-mjgs717dhn2f60",
"sg-11134201-8261f-mjgs71f5zrpjef",
"sg-11134201-82627-mjgs71macetc9b",
"sg-11134201-82635-mjgs71yobocid3",
"sg-11134201-82616-mjgs72expukn1e",
"sg-11134201-825zl-mjgs72v7gnwhce",
"sg-11134201-8262f-mjgs737oerr83e",
"sg-11134201-825zl-mjgs73osfls74d",
"sg-11134201-8261v-mjgs742zhukl6d",
"sg-11134201-8260x-mjgs74lu6m8400",
"sg-11134201-82616-mjgs74xtj6di02",
"sg-11134201-8262a-mjgs75f8r3sx39",
"sg-11134201-82634-mjgs75sdxgqr90",
"sg-11134201-8261w-mjgs76c76pz7d6",
"sg-11134201-8262l-mjgs76vpk4ck54",
"sg-11134201-8260z-mjgs77drzv9d7d",
"sg-11134201-825zt-mjgs77kt3x8m7a",
"sg-11134201-82618-mjgs785xaznl7b",
"sg-11134201-8260q-mjgs78mg6gar41",
"sg-11134201-8261u-mjgs797o0743ae",
"sg-11134201-8260w-mjgs7a2u953852",
"sg-11134201-8261e-mjgs3eodup6rc8",
"sg-11134201-8261u-mjgs7aykoao1bf",
"sg-11134201-8261g-mjgs7bckr5dy0d",
"sg-11134201-82601-mjgs3fe0vdvp93",
"sg-11134201-82620-mjgs7c90giyqc8",
"sg-11134201-82603-mjgs7cwflwqrec",
"sg-11134201-82612-mjgs3g466why45",
"sg-11134201-8261x-mjgs7e213i8170",
"sg-11134201-8260w-mjgs7ekgketc1b",
"sg-11134201-8262v-mjgs7f3gfwu9af",
"sg-11134201-8260w-mjgs7fio816tc7",
"sg-11134201-825zt-mjgs7foxcxz6da",
"sg-11134201-8262n-mjgs7fva7apy07",
"sg-11134201-8262g-mjgs7gcb9dky8b",
"sg-11134201-8262v-mjgs7gj1n3sz1a",
"sg-11134201-82633-mjgs7gqcv0g15b",
"sg-11134201-8262s-mjgs7h3pc0010c",
"sg-11134201-8262p-mjgs7ht3124h73"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21740000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 315433214603,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21740000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56604657254,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261g-mjgs6pxgni8411\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1053,\"model_id\":315433214603,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261g-mjgs6pxgni8411\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1053,\"model_id\":315433214603,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56604657254",
"debug_info": null
},
{
"item_basic": {
"itemid": 50804652803,
"shopid": 1542929270,
"name": "Mofication Mod Kit For Samsung Galaxy Wat 7 40mm 44mm Band Metal Wat Case Silicone Strap Protective Cover Bezel",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-82632-mjgs7765f7cy29",
"images": [
"sg-11134201-82632-mjgs7765f7cy29",
"sg-11134201-8261g-mjgs77veo35vf5",
"sg-11134201-8262b-mjgs78hph1qb57",
"sg-11134201-82629-mjgs78ychg5jab",
"sg-11134201-8261k-mjgs79ceebk183",
"sg-11134201-82621-mjgs79twnwg427",
"sg-11134201-8261r-mjgs7aazmrk044",
"sg-11134201-8262m-mjgs7aqikkqv5c",
"sg-11134201-8260q-mjgs7bawtjief2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379829,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 333080000000,
"price_min": 333080000000,
"price_max": 333080000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"BP",
"BB",
"BO",
"BTFU",
"BW",
"BGr",
"SB",
"BY",
"S-Steel",
"B-Steel",
"STFU",
"SP",
"SGr",
"SO",
"SY",
"SW"
],
"images": [
"sg-11134201-8262m-mjgs7aqikkqv5c",
"sg-11134201-8260q-mjgs7bawtjief2",
"sg-11134201-8260v-mjgs7bun2olcc5",
"sg-11134201-8261d-mjgs7ccwui9u66",
"sg-11134201-8261b-mjgs7cw5m9s5c5",
"sg-11134201-8261f-mjgs7dfwyp6uf7",
"sg-11134201-8262y-mjgs7e1x5mv656",
"sg-11134201-8261m-mjgs7elgb1fod2",
"sg-11134201-8262m-mjgs7fb272tfa1",
"sg-11134201-8262e-mjgs7fty0jcyf7",
"sg-11134201-8261x-mjgs7gcprwud13",
"sg-11134201-82601-mjgs7gwgkmpt88",
"sg-11134201-8262o-mjgs7hgr8etje6",
"sg-11134201-8260p-mjgs7hz9qvpcf7",
"sg-11134201-8260o-mjgs7imfudqae9",
"sg-11134201-825zy-mjgs7j73vvgj28"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"Galaxy Watch 7 44mm",
"Galaxy Watch 7 40mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 333080000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345432636276,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 333080000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50804652803,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82632-mjgs7765f7cy29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1440,\"model_id\":345432636276,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82632-mjgs7765f7cy29\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1440,\"model_id\":345432636276,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50804652803",
"debug_info": null
},
{
"item_basic": {
"itemid": 50104647705,
"shopid": 1666733759,
"name": "promo [promo special] advan smartwatch s1| ips 2.01 curve display | ai voice | bluetooth calls | bluetooth 5.3 | 100+ sports modes | long-lasting battery",
"label_ids": [
844931064601283,
700005509,
1049138,
1718093079,
822059908662278,
825465608499232
],
"image": "id-11134201-8224t-mjgs4fsu60w35b",
"images": [
"id-11134201-8224t-mjgs4fsu60w35b",
"id-11134201-8224q-mjgs4gs1687857",
"id-11134201-82250-mjgs4ijpwa2t52",
"id-11134201-8224s-mjgs4l2l7ax064",
"id-11134201-8224v-mjgs4mtm8rnk50",
"id-11134201-8224y-mjgs4ntz47wl54",
"id-11134201-8224r-mjgs4otpzfup8d",
"id-11134201-82250-mjgs4prz4fsw02",
"id-11134201-8224t-mjgs4rix2w3k14"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379724,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 29400000000,
"price_min": 29400000000,
"price_max": 29400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Colour",
"options": [
"S1 V2 Silver",
"Black TAQWA",
"S1 V2 Gold",
"S1 Black",
"S1 Silver",
"S1 V2 Black",
"GOLD TAQWA",
"S1 Gold",
"S1 V2 Pink"
],
"images": [
"id-11134201-8224v-mjgs4ukn87pf63",
"id-11134201-8224p-mjgs4wb0z1tv92",
"id-11134201-8224u-mjgs4x8qycxt17",
"id-11134201-8224w-mjgs4y889fr8bd",
"id-11134201-8224o-mjgs4zxq1urp0a",
"id-11134201-82251-mjgs52gyl3pg77",
"id-11134201-8224y-mjgs53f0mgav2a",
"id-11134201-8224u-mjgs554f93b48a",
"id-11134201-8224p-mjgs57patjwkfd"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 29400000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 325432618348,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 29400000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50104647705,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs4fsu60w35b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1480,\"model_id\":325432618348,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mjgs4fsu60w35b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1480,\"model_id\":325432618348,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50104647705",
"debug_info": null
},
{
"item_basic": {
"itemid": 27744022795,
"shopid": 1666692538,
"name": "DISKON [PROMO SPECIAL] ADVAN Smartwatch S1| IPS 2.01 Curve Display | Ai Voice | Bluetooth Calls | Bluetooth 5.3 | 100+ Sports Modes | Long-lasting Battery",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-82250-mjgs4ez32lfp82",
"images": [
"id-11134201-82250-mjgs4ez32lfp82",
"id-11134201-8224q-mjgs4gp4epdt5d",
"id-11134201-8224v-mjgs4j8eyy9s2c",
"id-11134201-82252-mjgs4k69iltt84",
"id-11134201-8224o-mjgs4lvi249281",
"id-11134201-8224w-mjgs4msctp1j54",
"id-11134201-8224q-mjgs4p91tk3rc6",
"id-11134201-8224z-mjgs4qy09b0g0e",
"id-11134201-8224p-mjgs4rvgiupu7f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379720,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 29700000000,
"price_min": 29700000000,
"price_max": 29700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Colour",
"options": [
"S1 V2 Silver",
"Black TAQWA",
"S1 V2 Gold",
"S1 Black",
"S1 Silver",
"S1 V2 Black",
"GOLD TAQWA",
"S1 Gold",
"S1 V2 Pink"
],
"images": [
"id-11134201-82250-mjgs4ue2ql8n3f",
"id-11134201-8224s-mjgs4w2c7b414d",
"id-11134201-8224r-mjgs4wyzbj0gb6",
"id-11134201-8224q-mjgs4zh349hj1d",
"id-11134201-82250-mjgs51yeqtxgef",
"id-11134201-82251-mjgs52vqpwqs16",
"id-11134201-8224w-mjgs53szhptwfc",
"id-11134201-82250-mjgs54q7rb4546",
"id-11134201-8224z-mjgs55n3qfibc4"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 29700000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390432614679,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 29700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 27744022795,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82250-mjgs4ez32lfp82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2209,\"model_id\":390432614679,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82250-mjgs4ez32lfp82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2209,\"model_id\":390432614679,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27744022795",
"debug_info": null
},
{
"item_basic": {
"itemid": 56404643218,
"shopid": 1666733759,
"name": "termurah tesladi smart watch t800 pro max bluetooth smartwatch 1.99 inch hd screen full touch bisa phone call ip68 waterproof heart rate monitor smartwatch",
"label_ids": [
844931064601283,
1718093079,
700005509,
1049138,
822059908662278,
825465608499232
],
"image": "id-11134201-8224x-mjgs2hsxf4zk46",
"images": [
"id-11134201-8224x-mjgs2hsxf4zk46",
"id-11134201-82251-mjgs2k9egg77c2",
"id-11134201-8224o-mjgs2l8aoyrnf5",
"id-11134201-8224s-mjgs2m61vv29da",
"id-11134201-8224z-mjgs2o4on01t95",
"id-11134201-8224v-mjgs2p3v3kzr13",
"id-11134201-8224q-mjgs2rmkmo793e",
"id-11134201-8224x-mjgs2teczcw228",
"id-11134201-8224q-mjgs2vxl35l352"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379632,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 23500000000,
"price_min": 23500000000,
"price_max": 23500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Merah Jambu",
"Biru",
"Putih",
"Hijau",
"Merah"
],
"images": [
"id-11134201-8224q-mjgs2zkoog7645",
"id-11134201-8224z-mjgs32540m4i5d",
"id-11134201-8224o-mjgs34oc2x364a",
"id-11134201-8224z-mjgs36ff9lhja8",
"id-11134201-82251-mjgs38xy8sg36e",
"id-11134201-8224t-mjgs39z788hu03"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 23500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 282333605769,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 23500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56404643218,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs2hsxf4zk46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1068,\"model_id\":282333605769,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs2hsxf4zk46\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005509,1049138,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1068,\"model_id\":282333605769,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56404643218",
"debug_info": null
},
{
"item_basic": {
"itemid": 46504672793,
"shopid": 1656110262,
"name": "OFFICIAL TESLADI SMART WATCH T800 PRO MAX BLUETOOTH SMARTWATCH 1.99 INCH HD SCREEN FULL TOUCH BISA PHONE CALL IP68 WATERPROOF HEART RATE MONITOR SMARTWATCH",
"label_ids": [
844931064601283,
700005505,
1049134,
822059908662278,
825465608499232
],
"image": "id-11134201-8224x-mjgs3gsgk0li22",
"images": [
"id-11134201-8224x-mjgs3gsgk0li22",
"id-11134201-82252-mjgs3hr5f3ev0b",
"id-11134201-8224y-mjgs3k8wqdq98f",
"id-11134201-82252-mjgs3l6qm41u41",
"id-11134201-8224v-mjgs3nr4mh3733",
"id-11134201-8224s-mjgs3ornqps78a",
"id-11134201-8224o-mjgs3rblk3k1f8",
"id-11134201-8224y-mjgs3tw1a9kxf8",
"id-11134201-8224p-mjgs3vod5a8767"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379674,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24300000000,
"price_min": 24300000000,
"price_max": 24300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Merah Jambu",
"Biru",
"Putih",
"Hijau",
"Merah"
],
"images": [
"id-11134201-82251-mjgs3y3evi866e",
"id-11134201-8224v-mjgs3z5nd72cbb",
"id-11134201-82250-mjgs40xqq1hde9",
"id-11134201-8224x-mjgs42pruryfd1",
"id-11134201-8224p-mjgs44ipaj2809",
"id-11134201-8224v-mjgs46bgx2pvc1"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24300000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 365432617098,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46504672793,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs3gsgk0li22\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1706,\"model_id\":365432617098,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs3gsgk0li22\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005505,1049134,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1706,\"model_id\":365432617098,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46504672793",
"debug_info": null
},
{
"item_basic": {
"itemid": 41978007795,
"shopid": 1542929270,
"name": "PAGANI DESIGN V3 Version GMT Wates Men's Luxury Sapphire Automatic Meanical Wat 40MM Stainless Steel Waterproof Wat",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8261p-mjgs49zljfuucd",
"images": [
"sg-11134201-8261p-mjgs49zljfuucd",
"sg-11134201-8262a-mjgs4as772maf6",
"sg-11134201-82606-mjgs4b6a8q2qb7",
"sg-11134201-825zw-mjgs4bk37vuo22",
"sg-11134201-82626-mjgs4bz6o35y22",
"sg-11134201-8262i-mjgs4cbo5tdw5a",
"sg-11134201-82617-mjgs4ct19xqe9b",
"sg-11134201-8260u-mjgs4d25rsw485",
"sg-11134201-8261f-mjgs4d9ttssid4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379686,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 572510000000,
"price_min": 572510000000,
"price_max": 572510000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"black-gray",
"Jubilee black red",
"All Gold",
"Gold Black",
"Jubilee black blue",
"Jubilee black",
"Jubilee blue red",
"black blue",
"black red",
"Mesh black blue",
"Rubber black blue",
"Jubilee black green",
"blue red",
"black",
"Jubilee Black Grey",
"Black gray gold",
"All Gold Black",
"black green",
"Rubber black green",
"Rose gold",
"Rubber blue red"
],
"images": [
"sg-11134201-8260u-mjgs4d25rsw485",
"sg-11134201-8261f-mjgs4d9ttssid4",
"sg-11134201-8262r-mjgs4dgyu9z80f",
"sg-11134201-82603-mjgs4dpbk2ddae",
"sg-11134201-82628-mjgs4dvys0ldd8",
"sg-11134201-82604-mjgs4e2tgcg27a",
"sg-11134201-8261d-mjgs4e929z41c8",
"sg-11134201-8261f-mjgs4ehnjcaq38",
"sg-11134201-82614-mjgs4et5wwzpd5",
"sg-11134201-8260n-mjgs4f09687417",
"sg-11134201-8260l-mjgs4f6ojvuqa1",
"sg-11134201-82631-mjgs4ff7wf7nfc",
"sg-11134201-82612-mjgs4fkp0qo0c5",
"sg-11134201-82635-mjgs4frv4mww66",
"sg-11134201-81zwb-miz78sp6okjre4",
"sg-11134201-8261h-mjgs4g4yl6v4ec",
"sg-11134201-8260a-mjgs4gbk3dohb7",
"sg-11134201-8260w-mjgs4gi3anet0b",
"sg-11134201-82615-mjgs4gqhq77kd6",
"sg-11134201-82607-mjgs4gykaqdee9",
"sg-11134201-8260r-mjgs4h8e8fsx3b"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"Option 2",
"V3"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 572510000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 335432625828,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 572510000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 41978007795,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261p-mjgs49zljfuucd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1976,\"model_id\":335432625828,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261p-mjgs49zljfuucd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1976,\"model_id\":335432625828,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41978007795",
"debug_info": null
},
{
"item_basic": {
"itemid": 55454643206,
"shopid": 1531387649,
"name": "22mm Titanium Strap For HUAWEI WATCH Ultimate 1/2/Buds Metal Luxury Band For Huawei Watch 5 4/GT 6 5 4 Pro 3 2 46mm GT2e GT3 SE",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-825zk-mjgrzjkuadc215",
"images": [
"sg-11134201-825zk-mjgrzjkuadc215",
"sg-11134201-8260o-mjgrzjs7qccgba",
"sg-11134201-825zz-mjgrzjyqcjk423",
"sg-11134201-8261g-mjgrzk6yf6dfc2",
"sg-11134201-8260q-mjgrzkffi77r96",
"sg-11134201-8261q-mjgrzkmww1l2a8",
"sg-11134201-82620-mjgrzkvpiuiqec",
"sg-11134201-8262d-mjgrzlh7hreq1b",
"sg-11134201-82625-mjgrzlnz7c3o60"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379459,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 172620000000,
"price_min": 172620000000,
"price_max": 172620000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black",
"Silver",
"Gray"
],
"images": [
"sg-11134201-8260q-mjgrzkffi77r96",
"sg-11134201-8262d-mjgrzlh7hreq1b",
"sg-11134201-8261x-mjgrzlv97lz9bf"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"22mm",
"Huawei GT3 Pro 46mm",
"Huawei GT2 Pro GT2e",
"Huawei GT4 3 2 46mm",
"Huawei GT5 5Pro 46mm",
"Huawei GT6 6Pro 46mm",
"Huawei Ultimate 1 2"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 172620000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425432596402,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 172620000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55454643206,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zk-mjgrzjkuadc215\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1137,\"model_id\":425432596402,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zk-mjgrzjkuadc215\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1137,\"model_id\":425432596402,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55454643206",
"debug_info": null
},
{
"item_basic": {
"itemid": 51704643112,
"shopid": 219544920,
"name": "Jam Tangan Smartwatch Digitec FITRACK Amoled Screen with Extra Straps",
"label_ids": [
1012729,
1002164,
1014367,
298888358,
700190019,
298938357,
2018618,
1400066568,
844931086908638,
844931064601283,
1718093079,
700005489,
1059152,
822059908662278,
825465608497696,
825465608492064,
825465608499232,
2098629
],
"image": "id-11134207-8224r-mjgrpnz8kwzo7f",
"images": [
"id-11134207-8224r-mjgrpnz8kwzo7f",
"id-11134207-8224y-mjgrpnz6qwapc2",
"id-11134207-82252-mjgrpnz6sav539",
"id-11134207-8224t-mjgrpnz6tpfl2a",
"id-11134207-8224z-mjgrpnz6v4018b",
"id-11134207-8224w-mjgrpnz6wikh30"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379551,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "DIGITEC",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 108247200000,
"price_min": 108247200000,
"price_max": 108247200000,
"price_min_before_discount": 117660000000,
"price_max_before_discount": 117660000000,
"hidden_price_display": null,
"price_before_discount": 117660000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-8%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vemy-mjgrq9n1x43k07.16000081768379038.mp4",
"thumb_url": "id-11110105-6vemy-mjgrq9n1x43k07_cover",
"duration": 30,
"version": 2,
"vid": "id-11110105-6vemy-mjgrq9n1x43k07",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vemy-mjgrq9n1x43k07.16000081768379038.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mjgrq9n1x43k07.16000081768379038.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemy-mjgrq9n1x43k07.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"BK-Hitam"
],
"images": [
"id-11134207-8224u-mjgrpnz6xx4x7e"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp176RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 728126024385536,
"price": 105747200000,
"strikethrough_price": 117660000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1309874180997120,
"discount_text": "-8%",
"model_id": 277333600501,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1309874180997120,
"voucher_code": "TIMESJAN3",
"voucher_discount": 2500000000,
"time_info": {
"start_time": 1767200460,
"end_time": 1769878740,
"valid_duration": null
},
"groups": [],
"min_spend": 30000000000
},
"recommended_platform_voucher_info": null,
"original_price": 117660000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp176RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Time Kingdom Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51704643112,
"shopid": 219544920,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjgrpnz8kwzo7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,1002164,1014367,298888358,700190019,298938357,2018618,1400066568,844931086908638,844931064601283,1718093079,700005489,1059152,822059908662278,825465608497696,825465608492064,825465608499232,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1379,\"model_id\":277333600501,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjgrpnz8kwzo7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1012729,1002164,1014367,298888358,700190019,298938357,2018618,1400066568,844931086908638,844931064601283,1718093079,700005489,1059152,822059908662278,825465608497696,825465608492064,825465608499232,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1379,\"model_id\":277333600501,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51704643112",
"debug_info": null
},
{
"item_basic": {
"itemid": 50654652787,
"shopid": 1666692538,
"name": "100% AMAN Terbaru Smartwatch i8 Ultra Watch 8 Free 2 Tali Plus Earphone TWS Full Layar ADA Kalkulator Support Android Ios",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-82252-mjgs18uiypl212",
"images": [
"id-11134201-82252-mjgs18uiypl212",
"id-11134201-8224y-mjgs1akbg1s18f",
"id-11134201-8224y-mjgs1bhgbe2s38",
"id-11134201-8224s-mjgs1dy4x91jc4",
"id-11134201-82252-mjgs1ge1jx8k1f",
"id-11134201-8224t-mjgs1iwlw8hub2",
"id-11134201-8224y-mjgs1le4z1ts59",
"id-11134201-8224t-mjgs1nusbyma33",
"id-11134201-8224p-mjgs1qbwmepv41"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379583,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21135000000,
"price_min": 21135000000,
"price_max": 21135000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"full hitam",
"orange",
"hitam silver",
"putih",
"abu- abu",
"navy",
"pink",
"ungu",
"hijau army",
"cream"
],
"images": [
"id-11134201-82252-mjgs1szm5atjc2",
"id-11134201-8224t-mjgs1tykj47536",
"id-11134201-8224w-mjgs1uuq8uted0",
"id-11134201-82250-mjgs1xb2emmd5b",
"id-11134201-82252-mjgs1yavuk1z99",
"id-11134201-8224u-mjgs2005el8nd7",
"id-11134201-8224v-mjgs22gqhzia58",
"id-11134201-8224s-mjgs24xcq2o798",
"id-11134201-8224w-mjgs26ljc93a8c",
"id-11134201-8224r-mjgs27hu1vk4e1"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21135000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 335432608007,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21135000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50654652787,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgs18uiypl212\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1452,\"model_id\":335432608007,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgs18uiypl212\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1452,\"model_id\":335432608007,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50654652787",
"debug_info": null
},
{
"item_basic": {
"itemid": 48804663218,
"shopid": 1531387649,
"name": "Sport Silicone Strap For Amazfit Active 2 SmartWatch Bracelet For Amazfit Active/Active 2 Wristband Replacement Belt Accessories",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-82610-mjgrzssovk7b7f",
"images": [
"sg-11134201-82610-mjgrzssovk7b7f",
"sg-11134201-8260f-mjgrzt1lyjgl63",
"sg-11134201-82612-mjgrzt7a0xkw23",
"sg-11134201-8260v-mjgrzth683y99d",
"sg-11134201-8260f-mjgrztmjelmv2b",
"sg-11134201-8260j-mjgrztus7vnn41",
"sg-11134201-825zz-mjgruyta953b77",
"sg-11134201-8260r-mjgrzu7etnuubb",
"sg-11134201-8262f-mjgrzuh1faitbd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379473,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24730000000,
"price_min": 24730000000,
"price_max": 24730000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Pink teal green",
"Black black",
"Gray white",
"Pink white",
"Red black",
"Black red",
"Purple green",
"Black yellow",
"Black white",
"Midnight blue white",
"Gray yellow",
"Black gray",
"White colorful",
"Black colorful",
"Black green",
"White black"
],
"images": [
"sg-11134201-825zz-mjgruyta953b77",
"sg-11134201-8260f-mjgrztmjelmv2b",
"sg-11134201-8262v-mjgrzupgwq2r62",
"sg-11134201-82627-mjgruz8soow1ba",
"sg-11134201-825zv-mjgrzv0cnjsy16",
"sg-11134201-82622-mjgrzv67e51f73",
"sg-11134201-8261d-mjgrzvbj4npd5d",
"sg-11134201-8262b-mjgrv08e4nwj1b",
"sg-11134201-825zz-mjgrv0gm8npj4e",
"sg-11134201-82602-mjgrzvs60w0527",
"sg-11134201-8262j-mjgrzvyhuoefd6",
"sg-11134201-8262f-mjgrzw3ygs1u34",
"sg-11134201-8260v-mjgrzwbvt34523",
"sg-11134201-8261y-mjgrv1pdb8cg42",
"sg-11134201-8261k-mjgrzwpr8s8zc2",
"sg-11134201-8261j-mjgrzwv4marr5d"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"For Amazfit Active 2",
"For Amazfit Active "
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24730000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395432605119,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24730000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48804663218,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82610-mjgrzssovk7b7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1565,\"model_id\":395432605119,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82610-mjgrzssovk7b7f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1565,\"model_id\":395432605119,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48804663218",
"debug_info": null
},
{
"item_basic": {
"itemid": 45904667773,
"shopid": 1656110262,
"name": "PROMO TESLADI SMARTWATCH D18 SMART WATCH OLAHRAGA TAHAN AIR PRIA DAN WANITA BLUETOOTH DIGITAL SMART WATCH",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224x-mjgs1d56s2yr3d",
"images": [
"id-11134201-8224x-mjgs1d56s2yr3d",
"id-11134201-8224z-mjgs1e4pc3ycff",
"id-11134201-8224o-mjgs1gnxtv5x2b",
"id-11134201-8224u-mjgs1ifkpwcgda",
"id-11134201-8224t-mjgs1jj2piiuf0",
"id-11134201-8224o-mjgs1kj1f2m9a9",
"id-11134201-8224x-mjgs1n1l23no68",
"id-11134201-8224t-mjgs1o1wzu9y15",
"id-11134201-8224o-mjgs1prof5z618"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379565,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 20000000000,
"price_min": 20000000000,
"price_max": 20000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Merah",
"Hitam",
"Biru"
],
"images": [
"id-11134201-8224v-mjgs1rkfnnyab6",
"id-11134201-8224s-mjgs1t9nxatc69",
"id-11134201-8224o-mjgs1u6pljpic1"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 20000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 188798893284,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 20000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45904667773,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs1d56s2yr3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1747,\"model_id\":188798893284,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgs1d56s2yr3d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1747,\"model_id\":188798893284,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45904667773",
"debug_info": null
},
{
"item_basic": {
"itemid": 44504682254,
"shopid": 1666733759,
"name": "hemat tesladi smartwatch d18 smart watch olahraga tahan air pria dan wanita bluetooth digital smart watch",
"label_ids": [
844931064601283,
700005509,
1049138,
1718093079,
822059908662278,
825465608499232
],
"image": "id-11134201-82252-mjgs0fi612bm93",
"images": [
"id-11134201-82252-mjgs0fi612bm93",
"id-11134201-8224u-mjgs0ggolzpd9e",
"id-11134201-82250-mjgs0i7rhh51a9",
"id-11134201-8224w-mjgs0jxdhlhhc2",
"id-11134201-8224q-mjgs0kw1gd8ma3",
"id-11134201-8224y-mjgs0mmyh3wkd0",
"id-11134201-8224w-mjgs0odxhhjac5",
"id-11134201-8224p-mjgs0qxezpxi38",
"id-11134201-8224t-mjgs0rvrssuefd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379523,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 20300000000,
"price_min": 20300000000,
"price_max": 20300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Merah",
"Hitam",
"Biru"
],
"images": [
"id-11134201-82252-mjgs0ut57l6rd5",
"id-11134201-8224r-mjgs0whupmgzb4",
"id-11134201-8224v-mjgs0y7bn4zr23"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 20300000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385432602136,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 20300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44504682254,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgs0fi612bm93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1836,\"model_id\":385432602136,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjgs0fi612bm93\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1836,\"model_id\":385432602136,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44504682254",
"debug_info": null
},
{
"item_basic": {
"itemid": 55404652673,
"shopid": 1666733759,
"name": "termurah smarwatch i8 ultra free headset + 2 pasang strap/tali",
"label_ids": [
844931064601283,
1718093079,
1049138,
700005509,
822059908662278,
825465608499232
],
"image": "id-11134201-8224o-mjgrw7n0rw92c5",
"images": [
"id-11134201-8224o-mjgrw7n0rw92c5",
"id-11134201-8224p-mjgrw8lplkhtdc",
"id-11134201-8224q-mjgrw9i4lm9te8",
"id-11134201-8224r-mjgrwb7tq41zd9",
"id-11134201-8224z-mjgrwd0d026f3c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379332,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21449900000,
"price_min": 21449900000,
"price_max": 21449900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"ABU-ABU",
"UNGU",
"NAVY",
"ORANGE",
"PUTIH",
"HITAM SILVER",
"PINK",
"FULL HITAM",
"HIJAU ARMY"
],
"images": [
"id-11134201-8224v-mjgrwg53jkzr5c",
"id-11134201-8224p-mjgrwin0qvwm1d",
"id-11134201-8224p-mjgrwl4shkw6f9",
"id-11134201-8224w-mjgrwmtxvcw405",
"id-11134201-8224x-mjgrwoiq3ocl2b",
"id-11134201-8224x-mjgrwr0dh3bbe8",
"id-11134201-8224q-mjgrws9n73es5a",
"id-11134201-8224w-mjgrwubtf85j77",
"id-11134201-8224w-mjgrwvbj9ywz51"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21449900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 340432586322,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21449900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55404652673,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgrw7n0rw92c5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049138,700005509,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1141,\"model_id\":340432586322,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgrw7n0rw92c5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049138,700005509,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1141,\"model_id\":340432586322,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55404652673",
"debug_info": null
},
{
"item_basic": {
"itemid": 54254643226,
"shopid": 1656110262,
"name": "VALUE PACK SAMSUNG SMARTWATCH 10 PRO MAX 2.3\" AMOLED HD DISPLAY GPS NFC WATERPROOF BLUETOOTH CALL SMARTWATCH PRIA WIRELESS CHARGING DAN GANTI WALLPAPPER JAM TANGAN SMARTWATCH WANITA",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224y-mjgry36hxedf78",
"images": [
"id-11134201-8224y-mjgry36hxedf78",
"id-11134201-8224s-mjgry53kyoeb58",
"id-11134201-8224x-mjgry646ultyaf",
"id-11134201-82251-mjgry74k9rlu69",
"id-11134201-82252-mjgry9pfbythac",
"id-11134201-8224y-mjgrycbflhqb2b",
"id-11134201-8224z-mjgryddoegowfb",
"id-11134201-8224x-mjgryef88ema57"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379421,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27950000000,
"price_min": 27950000000,
"price_max": 27950000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"WHITE",
"PINK",
"Black(2strap)",
"BLACK",
"PINK(2strap)",
"WHITE(2strap)",
"Blue(2strap)",
"BlUE"
],
"images": [
"id-11134201-8224v-mjgrygu5cvlwc6",
"id-11134201-8224u-mjgryilul5af20",
"id-11134201-82252-mjgrykcsffgmf8",
"id-11134201-8224y-mjgryldsbl6r22",
"id-11134201-8224q-mjgrynzfcz5x8b",
"id-11134201-8224t-mjgryoy0pmv7a3",
"id-11134201-8224w-mjgryqo4701vf2",
"id-11134201-8224z-mjgrysfjwmbo03"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27950000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 400432588376,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27950000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54254643226,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgry36hxedf78\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1218,\"model_id\":400432588376,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgry36hxedf78\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1218,\"model_id\":400432588376,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54254643226",
"debug_info": null
},
{
"item_basic": {
"itemid": 53154643215,
"shopid": 1666733759,
"name": "best seller samsung smartwatch 10 pro max 2.3\" amoled hd display gps nfc waterproof bluetooth call smartwatch pria wireless charging dan ganti wallpapper jam tangan smartwatch wanita",
"label_ids": [
844931064601283,
700005509,
1049138,
822059908662278,
825465608499232,
1718093079
],
"image": "id-11134201-8224y-mjgrx4qydc03f6",
"images": [
"id-11134201-8224y-mjgrx4qydc03f6",
"id-11134201-8224x-mjgrx6jrikn7a5",
"id-11134201-8224w-mjgrx7ke58g7d0",
"id-11134201-8224u-mjgrx8ku988x11",
"id-11134201-8224s-mjgrx9k8n01ze6",
"id-11134201-8224x-mjgrxbbuzdaffb",
"id-11134201-8224z-mjgrxca69mh366",
"id-11134201-8224t-mjgrxd93twch34"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379378,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 28250000000,
"price_min": 28250000000,
"price_max": 28250000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"WHITE",
"PINK",
"Black(2strap)",
"BLACK",
"PINK(2strap)",
"WHITE(2strap)",
"Blue(2strap)",
"BlUE"
],
"images": [
"id-11134201-8224w-mjgrxgfu603n58",
"id-11134201-8224q-mjgrxiz04jk633",
"id-11134201-8224p-mjgrxkrbk3yd37",
"id-11134201-8224u-mjgrxms8og79bf",
"id-11134201-82251-mjgrxokqo002d4",
"id-11134201-8224x-mjgrxpj22ih330",
"id-11134201-8224t-mjgrxrzfec5e8a",
"id-11134201-82251-mjgrxtowybr72f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 28250000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 360432583317,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 28250000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 9",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53154643215,
"shopid": 1666733759,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgrx4qydc03f6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1277,\"model_id\":360432583317,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mjgrx4qydc03f6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005509,1049138,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1277,\"model_id\":360432583317,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53154643215",
"debug_info": null
},
{
"item_basic": {
"itemid": 44378012568,
"shopid": 1531387649,
"name": "Silicone watchband new strap for Huami Amazfit Neo smart watch Replacement Wristband Bracelet Accessories",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-8260h-mjgrwsj46gao50",
"images": [
"sg-11134201-8260h-mjgrwsj46gao50",
"sg-11134201-8261i-mjgrr6nz2znqae",
"sg-11134201-82633-mjgrwsvrvh8l49",
"sg-11134201-82628-mjgrwt1xozrb5f",
"sg-11134201-8262s-mjgrwtazhxqe03",
"sg-11134201-8260n-mjgrr4q3wzraad",
"sg-11134201-8260t-mjgrwtn54ow507",
"sg-11134201-82607-mjgrwtv6kg052e",
"sg-11134201-8260k-mjgrwu1dr4e83f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379331,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24270000000,
"price_min": 24270000000,
"price_max": 24270000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"white",
"black",
"orange",
"cyan",
"midnight blue",
"yellow",
"pink",
"gray"
],
"images": [
"sg-11134201-8260k-mjgrwu1dr4e83f",
"sg-11134201-8260t-mjgrwtn54ow507",
"sg-11134201-82625-mjgrr7w5foqoe9",
"sg-11134201-8262g-mjgrwudhh05ib2",
"sg-11134201-82634-mjgrwuip6ubnfa",
"sg-11134201-8262h-mjgrwupkbzeta2",
"sg-11134201-8261j-mjgrwuvmiv4691",
"sg-11134201-8262d-mjgrwv25c4qv8f"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"For Amazfit Neo"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24270000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445432586239,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24270000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44378012568,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260h-mjgrwsj46gao50\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1846,\"model_id\":445432586239,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260h-mjgrwsj46gao50\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1846,\"model_id\":445432586239,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44378012568",
"debug_info": null
},
{
"item_basic": {
"itemid": 26344032728,
"shopid": 1531387649,
"name": "20mm Silicone Band Strap For Amazfit active/amazfit GTS 4 Mini/2 2E 3 Wristband Bracelet for AMAZFIT GTR MINI/Amazfit active",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608499232
],
"image": "sg-11134201-8260t-mjgryom1ob9c8c",
"images": [
"sg-11134201-8260t-mjgryom1ob9c8c",
"sg-11134201-82629-mjgryovim80023",
"sg-11134201-8260w-mjgryp2o3ll119",
"sg-11134201-82625-mjgrypcajlz697",
"sg-11134201-8260c-mjgrypjrozcw58",
"sg-11134201-8262n-mjgrypyitb7nb9",
"sg-11134201-8262l-mjgryq5fwooy49",
"sg-11134201-82604-mjgryqdsnu2q21",
"sg-11134201-8260n-mjgryqllo83mf3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379421,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 25190000000,
"price_min": 25190000000,
"price_max": 25190000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"blue",
"black",
"red",
"pink",
"white",
"mint green",
"green",
"wine red",
"orange",
"light green",
"gray"
],
"images": [
"sg-11134201-82604-mjgryqdsnu2q21",
"sg-11134201-8260w-mjgryp2o3ll119",
"sg-11134201-8262y-mjgryqrkwb2a2a",
"sg-11134201-825zk-mjgryr3u9v5z6a",
"sg-11134201-82613-mjgryrh889vrf9",
"sg-11134201-82635-mjgryrtwa137e4",
"sg-11134201-8260a-mjgrys311q8131",
"sg-11134201-8262k-mjgrys7rk3ycac",
"sg-11134201-8262j-mjgrysejxipzd8",
"sg-11134201-8261q-mjgrysp20o3l3b",
"sg-11134201-8261r-mjgrysvikidja2"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 25190000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 267333810143,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 25190000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 26344032728,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260t-mjgryom1ob9c8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2288,\"model_id\":267333810143,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260t-mjgryom1ob9c8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2288,\"model_id\":267333810143,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26344032728",
"debug_info": null
},
{
"item_basic": {
"itemid": 56904642979,
"shopid": 1531387649,
"name": "Silicone watchband new strap for Huami Amazfit Neo smart watch Replacement Wristband Bracelet Accessories",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8260u-mjgrr4cr39xh1d",
"images": [
"sg-11134201-8260u-mjgrr4cr39xh1d",
"sg-11134201-8260n-mjgrr4q3wzraad",
"sg-11134201-8262n-mjgrr5a9cgleb9",
"sg-11134201-825zt-mjgrr5mwqc5jcb",
"sg-11134201-82625-mjgrr5zmnfgncc",
"sg-11134201-8260i-mjgrr6i1yps1fb",
"sg-11134201-8261i-mjgrr6nz2znqae",
"sg-11134201-8261p-mjgrr71v2cqpd3",
"sg-11134201-8260k-mjgrr7gwzqbm90"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768379069,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24270000000,
"price_min": 24270000000,
"price_max": 24270000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"white",
"black",
"orange",
"cyan",
"midnight blue",
"yellow",
"pink",
"gray"
],
"images": [
"sg-11134201-825zt-mjgrr5mwqc5jcb",
"sg-11134201-8260u-mjgrr4cr39xh1d",
"sg-11134201-82625-mjgrr7w5foqoe9",
"sg-11134201-8261g-mjgrr8956squ44",
"sg-11134201-8261l-mjgrr8pymyv859",
"sg-11134201-81ztg-mie1yy6j6fpg08",
"sg-11134201-8260p-mjgrr9gw1vyce9",
"sg-11134201-8261d-mjgrr9sy8zk2b4"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"For Amazfit Neo"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24270000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425432549951,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24270000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMjUuMTAyX3tiMTFiYTNhZjQ4NTU3ZTZkMDRiZDYwN2NiZTIxYmYwMDowMjAwMDBlMWMxOWJkYzQ3OjAxMDAwMTUyMzJhOWI1OWV9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0MjEyNDY5NDY2",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56904642979,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgrr4cr39xh1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1037,\"model_id\":425432549951,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgrr4cr39xh1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1037,\"model_id\":425432549951,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56904642979",
"debug_info": null
},
{
"item_basic": {
"itemid": 52804642992,
"shopid": 1531387649,
"name": "20mm 22mm Sports Silicone Strap for Amazfit Bip 6 GTR 3/4 Active 2 GTS 4/3 Balance 2 Wristband Huawei Watch GT5-4/GT5 Pro 46mm",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-82607-mjgrpb1bltkw84",
"images": [
"sg-11134201-82607-mjgrpb1bltkw84",
"sg-11134201-8262x-mjgrpbch6mf8a5",
"sg-11134201-82626-mjgrpbnxaolidc",
"sg-11134201-8262b-mjgrpbxq27evb1",
"sg-11134201-8260o-mjgrpc88rvgh52",
"sg-11134201-82626-mjgrpcf0ptzbdc",
"sg-11134201-82610-mjgrpcq3sqgz61",
"sg-11134201-8261y-mjgrpd0nls048c",
"sg-11134201-8261g-mjgrpdefx24nd1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768378994,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 22890000000,
"price_min": 22890000000,
"price_max": 22890000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Red",
"Light Pink",
"Dark grey",
"Black blue",
"Black",
"Orange Grey",
"Orange",
"Army green black",
"Black gray",
"Starlight black",
"Midnight starlight",
"White",
"White Duck Green",
"Dark blue",
"Light pink white",
"Violet",
"Willow green",
"Red black",
"Starlight color",
"Black green"
],
"images": [
"sg-11134201-8261y-mjgrpd0nls048c",
"sg-11134201-8262x-mjgrpbch6mf8a5",
"sg-11134201-82613-mjgrpdpw5dl1d5",
"sg-11134201-8262c-mjgrpemm46isd8",
"sg-11134201-82621-mjgrpf3httkx12",
"sg-11134201-8261x-mjgrpfusffgje1",
"sg-11134201-82615-mjgrpgayz2835b",
"sg-11134201-8260n-mjgrpgrf2vpe6e",
"sg-11134201-8260j-mjgrphb5ombk9b",
"sg-11134201-8260r-mjgrphv5htdwdc",
"sg-11134201-8261e-mjgrpigqpbet3b",
"sg-11134201-8261c-mjgrpiytdhq8f6",
"sg-11134201-8261b-mjgrpjdqb2mfda",
"sg-11134201-8260l-mjgrpjxt1nuv63",
"sg-11134201-8260y-mjgrpke4z4zq42",
"sg-11134201-8260o-mjgrpkwefq4nad",
"sg-11134201-8260k-mjgrplct3klj1f",
"sg-11134201-8260o-mjgrpm6j0tfmfe",
"sg-11134201-82633-mjgrpmmgk0ldcd",
"sg-11134201-8262m-mjgrpnb93nr9cb"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"For Width 22mm",
"Amazfit Bip 6-5",
"For Width 20mm",
"Amazfit Active 2"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 22890000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 440432539775,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 22890000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52804642992,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82607-mjgrpb1bltkw84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":105,\"model_id\":440432539775,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82607-mjgrpb1bltkw84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":105,\"model_id\":440432539775,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52804642992",
"debug_info": null
},
{
"item_basic": {
"itemid": 54954642977,
"shopid": 1531387649,
"name": "Sports Nylon Strap For Huawei Watch Fit 4/4Pro Ocean Band Bracelet Huawei Watch Fit3 2 Correas Replacement Accessories",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-82606-mjgrlzb1uscl73",
"images": [
"sg-11134201-82606-mjgrlzb1uscl73",
"sg-11134201-8260a-mjgrlzo67ls1c0",
"sg-11134201-82623-mjgrm00tr3lz85",
"sg-11134201-8261k-mjgrm09kv4ef14",
"sg-11134201-8262v-mjgrm0k74npd57",
"sg-11134201-82630-mjgrm0wg6xom5e",
"sg-11134201-825zy-mjgrm16cl6h222",
"sg-11134201-82630-mjgrm1ldje9u64",
"sg-11134201-825zn-mjgrm1uytb7pdd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768378829,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24500000000,
"price_min": 24500000000,
"price_max": 24500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"DH silver",
"DH black",
"White black",
"White silver",
"Green black",
"Green silver",
"Orange black",
"Orange silver"
],
"images": [
"sg-11134201-8260a-mjgrlzo67ls1c0",
"sg-11134201-8261k-mjgrm09kv4ef14",
"sg-11134201-8260y-mjgrm289kjcyf1",
"sg-11134201-8262b-mjgrm2mbr8qu4f",
"sg-11134201-825zl-mjgrm2z2oweaad",
"sg-11134201-8260p-mjgrm3aev37ob6",
"sg-11134201-82611-mjgrm3oigd1d11",
"sg-11134201-8261k-mjgrm44ak9okd9"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"for huawei fit",
"for huawei fit 3",
"for huawei fit 2"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310433120861,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54954642977,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82606-mjgrlzb1uscl73\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":107,\"model_id\":310433120861,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82606-mjgrlzb1uscl73\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":107,\"model_id\":310433120861,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54954642977",
"debug_info": null
},
{
"item_basic": {
"itemid": 52654643076,
"shopid": 1531387649,
"name": "20mm Skull Printed Strap for Samsung Galaxy Watch 7/6/5 40mm 44mm Band Replaceable Bracelet for Xiaomi Huawei Amazfit Watchband",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8261x-mjgrjk0gmdxf43",
"images": [
"sg-11134201-8261x-mjgrjk0gmdxf43",
"sg-11134201-82617-mjgrjkbcaeirdf",
"sg-11134201-8260w-mjgrjklc2t51e4",
"sg-11134201-8262y-mjgrjkx52gasdc",
"sg-11134201-8262v-mjgrjlcuu1aa17",
"sg-11134201-82607-mjgrjlpldn9i60",
"sg-11134201-82623-mjgrjm4vnmdfd4",
"sg-11134201-825zs-mjgrjmozzugz9c",
"sg-11134201-8260l-mjgrjn9omgasbc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768378727,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21510000000,
"price_min": 21510000000,
"price_max": 21510000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"20",
"19",
"18",
"17",
"24",
"23",
"22",
"21",
"12",
"11",
"10",
"09",
"16",
"15",
"14",
"13",
"04",
"03",
"02",
"01",
"08",
"07",
"06",
"05"
],
"images": [
"sg-11134201-82623-mjgrjm4vnmdfd4",
"sg-11134201-825zs-mjgrjmozzugz9c",
"sg-11134201-8261a-mjgrjnogk8hxda",
"sg-11134201-825zr-mjgrjoeflloidb",
"sg-11134201-82633-mjgrjov4ya6b78",
"sg-11134201-82607-mjgrjpg6j6yt75",
"sg-11134201-8261s-mjgrjpxyh340af",
"sg-11134201-8261z-mjgrjqdnxipu2c",
"sg-11134201-82601-mjgrjqvfy80477",
"sg-11134201-8261c-mjgrjrairv2c60",
"sg-11134201-82629-mjgrjryufbwl81",
"sg-11134201-825zy-mjgrjsdyyv46a6",
"sg-11134201-82633-mjgrjss4bchwf3",
"sg-11134201-82621-mjgrjt88lgqo90",
"sg-11134201-825zx-mjgrjtsw4qo43f",
"sg-11134201-8261p-mjgrju9r0xdv5a",
"sg-11134201-825zn-mjgrjur73rb872",
"sg-11134201-8260y-mjgrjv937y85ba",
"sg-11134201-825zu-mjgrjvteusxwa2",
"sg-11134201-82633-mjgrjwaorqps76",
"sg-11134201-82628-mjgrjwsvnnya3b",
"sg-11134201-8260n-mjgrjxb46jgm6b",
"sg-11134201-82634-mjgrjxnrvke95a",
"sg-11134201-82608-mjgrjy3xoidd27"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"20MM",
"22MM"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21510000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 277333551684,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21510000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52654643076,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjgrjk0gmdxf43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":109,\"model_id\":277333551684,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjgrjk0gmdxf43\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":109,\"model_id\":277333551684,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52654643076",
"debug_info": null
},
{
"item_basic": {
"itemid": 50404647414,
"shopid": 1531387649,
"name": "Sports Nylon Strap For Huawei Watch Fit 4/4Pro Ocean Band Bracelet Huawei Watch Fit3 2 Correas Replacement Accessories",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-82634-mjgreuhep89179",
"images": [
"sg-11134201-82634-mjgreuhep89179",
"sg-11134201-8261g-mjgreuu9ul8i44",
"sg-11134201-8260b-mjgrev639n2b53",
"sg-11134201-8262w-mjgrevi9pszr3a",
"sg-11134201-8260a-mjgrevx4terq06",
"sg-11134201-82624-mjgrew7qark1b9",
"sg-11134201-8261u-mjgrewpr94w5df",
"sg-11134201-82602-mjgrex1vpr0j34",
"sg-11134201-8262h-mjgrexbmx34273"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768378496,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24500000000,
"price_min": 24500000000,
"price_max": 24500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"DH silver",
"DH black",
"White black",
"White silver",
"Green black",
"Green silver",
"Orange black",
"Orange silver"
],
"images": [
"sg-11134201-8262h-mjgrexbmx34273",
"sg-11134201-82624-mjgrew7qark1b9",
"sg-11134201-8262o-mjgrexntiygy48",
"sg-11134201-825zn-mjgrey2nklc068",
"sg-11134201-82604-mjgreyh2msjl5d",
"sg-11134201-82621-mjgreyziyn7r40",
"sg-11134201-82614-mjgrezkffl6t46",
"sg-11134201-8262v-mjgrezzaexoheb"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"for huawei fit",
"for huawei fit 3",
"for huawei fit 2"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310433091149,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50404647414,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82634-mjgreuhep89179\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":116,\"model_id\":310433091149,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82634-mjgreuhep89179\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":116,\"model_id\":310433091149,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50404647414",
"debug_info": null
},
{
"item_basic": {
"itemid": 47404672388,
"shopid": 1531387649,
"name": "20MM 22MM Loop Strap For Samsung Galaxy Watch 6 5 Pro/4/Classic/Gear S3 Frontier/Active Silicone Sport Band For Huawei GT2 3",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-82618-mjgre8umfdhf4c",
"images": [
"sg-11134201-82618-mjgre8umfdhf4c",
"sg-11134201-8262k-mjgre95vwooz5a",
"sg-11134201-82617-mjgre9ecrbpe6c",
"sg-11134201-8261o-mjgre9tb22gz9c",
"sg-11134201-8261h-mjgrea3m30nb43",
"sg-11134201-82635-mjgreaeh0cg09c",
"sg-11134201-8262v-mjgreap7eosm64",
"sg-11134201-82602-mjgreavx613642",
"sg-11134201-82609-mjgrebd1uqrre7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768378466,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24270000000,
"price_min": 24270000000,
"price_max": 24270000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black Blue",
"White Red",
"Black Green",
"Black Red",
"Blue White",
"Black Gray",
"Black White"
],
"images": [
"sg-11134201-82635-mjgreaeh0cg09c",
"sg-11134201-8261o-mjgre9tb22gz9c",
"sg-11134201-8262b-mjgrebkyq70k81",
"sg-11134201-8262j-mjgrebvfhmo0d5",
"sg-11134201-825zt-mjgrecbwyiv5e4",
"sg-11134201-82631-mjgreco4m9z607",
"sg-11134201-82634-mjgrecxlzojmc3"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24270000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 365432505629,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24270000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47404672388,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82618-mjgre8umfdhf4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":117,\"model_id\":365432505629,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82618-mjgre8umfdhf4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":117,\"model_id\":365432505629,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47404672388",
"debug_info": null
},
{
"item_basic": {
"itemid": 53954657017,
"shopid": 1531387649,
"name": "20mm Skull Printed Strap for Samsung Galaxy Watch 7/6/5 40mm 44mm Band Replaceable Bracelet for Xiaomi Huawei Amazfit Watchband",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8262j-mjgrbrad2tqc77",
"images": [
"sg-11134201-8262j-mjgrbrad2tqc77",
"sg-11134201-8261k-mjgrbrvwkirk54",
"sg-11134201-8260v-mjgrbscsfqiv02",
"sg-11134201-8260r-mjgrbtqfej9h04",
"sg-11134201-8260z-mjgrbuh9w26c41",
"sg-11134201-8262i-mjgrbversnb858",
"sg-11134201-8261g-mjgrbw0lwetiac",
"sg-11134201-8260r-mjgrbwmxy9z6b8",
"sg-11134201-8262o-mjgrbx4sny0x38"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768378373,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21510000000,
"price_min": 21510000000,
"price_max": 21510000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"20",
"19",
"18",
"17",
"24",
"23",
"22",
"21",
"12",
"11",
"10",
"09",
"16",
"15",
"14",
"13",
"04",
"03",
"02",
"01",
"08",
"07",
"06",
"05"
],
"images": [
"sg-11134201-8260z-mjgrbuh9w26c41",
"sg-11134201-8260r-mjgrbwmxy9z6b8",
"sg-11134201-8260k-mjgrbxov8wzl41",
"sg-11134201-82623-mjgrbyjsej2cae",
"sg-11134201-8261k-mjgrbzcmg7ieba",
"sg-11134201-82607-mjgrc0hldwqt25",
"sg-11134201-8261t-mjgrc1b8b30jf1",
"sg-11134201-82617-mjgrc240bpxh39",
"sg-11134201-8262t-mjgrc2oi8q2p45",
"sg-11134201-82613-mjgrc480dipvba",
"sg-11134201-82622-mjgrc568t8g49d",
"sg-11134201-8260h-mjgrc5n281kw29",
"sg-11134201-8262m-mjgrc67yuk91a4",
"sg-11134201-825zm-mjgrc6yhfny8b9",
"sg-11134201-8262a-mjgrc7ixk3k225",
"sg-11134201-8262y-mjgrc7yufdhh51",
"sg-11134201-8262o-mjgrc8nihix321",
"sg-11134201-82613-mjgrc92w01l0a8",
"sg-11134201-8262r-mjgrc9m4xgxvd6",
"sg-11134201-825zy-mjgrca5ikv0gfa",
"sg-11134201-825zq-mjgrcavkjmdc6f",
"sg-11134201-8260j-mjgrcbhp9gci18",
"sg-11134201-8262n-mjgrcbxeslxf34",
"sg-11134201-8262d-mjgrccldapdvef"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"20MM",
"22MM"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21510000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420432483801,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21510000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53954657017,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjgrbrad2tqc77\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":118,\"model_id\":420432483801,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjgrbrad2tqc77\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":118,\"model_id\":420432483801,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53954657017",
"debug_info": null
},
{
"item_basic": {
"itemid": 46404676944,
"shopid": 898467586,
"name": "Eggel Tempo 4 Active Amoled Smart Watch Smartwatch Smartband",
"label_ids": [
2018618,
2153644,
844931086908638,
844931064601283,
298463379,
1059152,
1049122,
1718093079,
822059908662278,
2048661,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
2048660,
1400066568,
1718088045,
298468389
],
"image": "sg-11134201-825zu-mjgrbxcd8xdu54",
"images": [
"sg-11134201-825zu-mjgrbxcd8xdu54",
"sg-11134201-8261f-mjgrbxji2dq82b",
"sg-11134201-8260p-mjgrbxpzij29d1",
"sg-11134201-82606-mjgraezzwkqr82",
"sg-11134201-825zm-mjgrby9a8kjmb6",
"sg-11134201-82622-mjgrafeuvyth59",
"sg-11134201-82604-mjgrbyo6b7cw3b",
"sg-11134201-82620-mjgrbysg5u6844",
"sg-11134201-8260c-mjgrbyykytxd55"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768378355,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 35700000000,
"price_min": 35700000000,
"price_max": 35700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35343000000,
"strikethrough_price": 35700000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1330707549536256,
"discount_text": null,
"model_id": 350432490576,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1330707549536256,
"voucher_code": "ZTHOVTFAQ",
"voucher_discount": 357000000,
"time_info": {
"start_time": 1768092001,
"end_time": 1773794280,
"valid_duration": null
},
"groups": [],
"min_spend": 5000000000
},
"recommended_platform_voucher_info": null,
"original_price": 35700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ZTH Official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46404676944,
"shopid": 898467586,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjgrbxcd8xdu54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,1400066568,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":119,\"model_id\":350432490576,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjgrbxcd8xdu54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,844931086908638,844931064601283,298463379,1059152,1049122,1718093079,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,1400066568,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":119,\"model_id\":350432490576,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46404676944",
"debug_info": null
},
{
"item_basic": {
"itemid": 55754642953,
"shopid": 1194454428,
"name": "Jam tangan pintar T200/T210 mendukung koneksi Bluetooth dengan layar sentuh penuh HD 1,99 inci, tahan air IP68 dengan pemantauan detak jantung",
"label_ids": [
700700063,
2018619,
2023641,
1718087960,
1428713,
844931064601283,
844931086908638,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-825zp-mjgr99wrovep3e",
"images": [
"sg-11134201-825zp-mjgr99wrovep3e",
"sg-11134201-82608-mjgr9a9z65fq59",
"sg-11134201-82628-mjgr9ahepvy8b7",
"sg-11134201-8262x-mjgr9aoggf0n72",
"sg-11134201-8260y-mjgr9ay9105c6d",
"sg-11134201-8260b-mjgr9b67ru2pd4",
"sg-11134201-82621-mjgr9bda0miv86",
"sg-11134201-8261h-mjgr9biscj5ydb",
"sg-11134201-8262e-mjgr9bv43thj12"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768378234,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Gionee",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 23983300000,
"price_min": 23983300000,
"price_max": 23983300000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Model",
"options": [
"T200-Olahraga",
"T210-Klasik"
],
"images": [
"sg-11134201-82609-mjgr9c8yvldt3c",
"sg-11134201-82618-mjgr9d3eczd3d0"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 23483300000,
"strikethrough_price": 23983300000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1313424056270848,
"discount_text": null,
"model_id": 430432469144,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1313424056270848,
"voucher_code": "GIONGFSDO",
"voucher_discount": 500000000,
"time_info": {
"start_time": 1766032080,
"end_time": 1774070880,
"valid_duration": null
},
"groups": [],
"min_spend": 10000000000
},
"recommended_platform_voucher_info": null,
"original_price": 23983300000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Gionee Center",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55754642953,
"shopid": 1194454428,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zp-mjgr99wrovep3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":122,\"model_id\":430432469144,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zp-mjgr99wrovep3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":122,\"model_id\":430432469144,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55754642953",
"debug_info": null
},
{
"item_basic": {
"itemid": 52154642940,
"shopid": 54674133,
"name": "garmin instinct 3 amoled murah bisa tt fenix",
"label_ids": [
2018619,
2023641,
844931064601283,
298463379,
1400066568,
700005487,
1059152,
1718093079,
822059908662278,
825465608497696,
825465608493600,
825465608494624,
825465608499232,
1718088045,
298468389
],
"image": "id-11134207-8224s-mjgr390azpxc18",
"images": [
"id-11134207-8224s-mjgr390azpxc18",
"id-11134207-8224y-mjgr3910e5mqa5",
"id-11134207-8224v-mjgr390lerk0d2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768378103,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 659000000000,
"price_min": 659000000000,
"price_max": 659000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 659000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 365432465660,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 659000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "armywatch.id",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52154642940,
"shopid": 54674133,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgr390azpxc18\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1400066568,700005487,1059152,1718093079,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":124,\"model_id\":365432465660,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgr390azpxc18\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1400066568,700005487,1059152,1718093079,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":124,\"model_id\":365432465660,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52154642940",
"debug_info": null
},
{
"item_basic": {
"itemid": 45754677078,
"shopid": 1531387649,
"name": "22mm 20mm Silicone Band for Amazfit Active 2/GTS 4 Mini 3 2e Bracelet for Amazfit GTR/4 3 Pro 47mm/Amazfit Bip 6/Balance 2 Strap",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8261e-mjgr6t0qhddv80",
"images": [
"sg-11134201-8261e-mjgr6t0qhddv80",
"sg-11134201-825zm-mjgr6tee2qdd74",
"sg-11134201-82617-mjgr6tn0tfk74d",
"sg-11134201-8262a-mjgr6u1wcg016f",
"sg-11134201-82617-mjgr6ubqy2o4de",
"sg-11134201-82621-mjgr6ujvl1xfaf",
"sg-11134201-8261r-mjgr6usew6pzd8",
"sg-11134201-8261f-mjgr6v1dcbusec",
"sg-11134201-8262z-mjgr6vd3ej9d28"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768378127,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21280000000,
"price_min": 21280000000,
"price_max": 21280000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Green black",
"Blue",
"Army green black",
"Black wine Red",
"Dark blue white",
"Official orange",
"Black",
"Black yellow",
"White black",
"Black gray",
"Red wine black",
"White",
"Pink",
"Green",
"Purple",
"Teal Green Blue",
"Orange",
"Midnight blue",
"Dark green"
],
"images": [
"sg-11134201-82617-mjgr6tn0tfk74d",
"sg-11134201-8261f-mjgr6v1dcbusec",
"sg-11134201-825zs-mjgr6w3t7jlw74",
"sg-11134201-8261f-mjgr6wd4hs0360",
"sg-11134201-8260q-mjgr6wou0d1fd1",
"sg-11134201-8260k-mjgr6wzaytj9e8",
"sg-11134201-825zp-mjgr6xgp6bd160",
"sg-11134201-8262t-mjgr6xuuadc370",
"sg-11134201-825zn-mjgr6y6o91jbb9",
"sg-11134201-8262t-mjgr6ymlgykh59",
"sg-11134201-8261h-mjgr6ywfg2kj31",
"sg-11134201-8261t-mjgr6zbrehohf8",
"sg-11134201-825zx-mjgr6zrnri8118",
"sg-11134201-8261e-mjgr70dujsaqb2",
"sg-11134201-8262e-mjgr70vv43y8fe",
"sg-11134201-82624-mjgr71f4e4uf4d",
"sg-11134201-82611-mjgr71xpmxhh33",
"sg-11134201-8261b-mjgr72dfpsljec",
"sg-11134201-8262m-mjgr72szv6yt51"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm Universal",
"22mm Universal"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21280000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 375432457954,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21280000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45754677078,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjgr6t0qhddv80\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":123,\"model_id\":375432457954,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjgr6t0qhddv80\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":123,\"model_id\":375432457954,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45754677078",
"debug_info": null
},
{
"item_basic": {
"itemid": 44654667419,
"shopid": 1531387649,
"name": "18mm 20mm 22mm hole Silicone Band for Samsung Galaxy Watch 6 5 4 for Huawei GT4 3 GT2 pro bracelet for Garmin Vivoactive 4 strap",
"label_ids": [
844931064601283,
1718093079,
1059154,
1059152,
822059908662278,
825465608499232
],
"image": "sg-11134201-8260m-mjgr6b7uwydh44",
"images": [
"sg-11134201-8260m-mjgr6b7uwydh44",
"sg-11134201-8262x-mjgr6bqgmneq6b",
"sg-11134201-8260i-mjgr6c206bk34b",
"sg-11134201-8260d-mjgr6cfd6z288e",
"sg-11134201-8261p-mjgr6cmfikn7c8",
"sg-11134201-8262b-mjgr6ct4rlz82c",
"sg-11134201-8262v-mjgr6d68cf7q78",
"sg-11134201-8260c-mjgr6dre0v7k8b",
"sg-11134201-8262b-mjgr6eawfkzma9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768378098,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21740000000,
"price_min": 21740000000,
"price_max": 21740000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"11",
"12",
"9",
"10",
"6",
"7",
"8",
"3",
"4",
"5",
"1",
"2"
],
"images": [
"sg-11134201-8261p-mjgr6cmfikn7c8",
"sg-11134201-8262b-mjgr6ct4rlz82c",
"sg-11134201-825zv-mjgr6ehwaqdi76",
"sg-11134201-8262i-mjgr6etciyo0d3",
"sg-11134201-82633-mjgr6f4ysykm62",
"sg-11134201-825zl-mjgr6ffivshvfd",
"sg-11134201-82601-mjgr6fo6iubna9",
"sg-11134201-8260d-mjgr6fxl7bph54",
"sg-11134201-8261f-mjgr6g48w6bke3",
"sg-11134201-82631-mjgr6ggxpzb8d7",
"sg-11134201-8262i-mjgr6gpnb9ja3a",
"sg-11134201-8261e-mjgr6h0h3uv72f"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"18mm",
"20mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21740000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 365432461392,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21740000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44654667419,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260m-mjgr6b7uwydh44\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":125,\"model_id\":365432461392,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260m-mjgr6b7uwydh44\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":125,\"model_id\":365432461392,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44654667419",
"debug_info": null
},
{
"item_basic": {
"itemid": 48554667325,
"shopid": 95906098,
"name": "Jam Tangan All Gender Garmin Forerunner 165 Black/Slate Grey 100% Original",
"label_ids": [
700700063,
2018619,
700190019,
1718087960,
1428713,
844931086908638,
844931064601283,
298463379,
1718093079,
1059150,
700005498,
822059908662278,
825465608494624,
825465608499232,
2048660,
2048661,
1718088045,
298468389
],
"image": "id-11134207-82251-mjgqrqnwks9033",
"images": [
"id-11134207-82251-mjgqrqnwks9033",
"id-11134207-8224u-mjgqrqnvvi0y23",
"id-11134207-82252-mjgqrqny3ked20"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768377585,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 289900000000,
"price_min": 289900000000,
"price_max": 289900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Medan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 288400000000,
"strikethrough_price": 289900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1303212167938052,
"discount_text": null,
"model_id": 287333485327,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1303212167938052,
"voucher_code": "JAMOD1225",
"voucher_discount": 1500000000,
"time_info": {
"start_time": 1764815400,
"end_time": 1769878740,
"valid_duration": null
},
"groups": [],
"min_spend": 50000000000
},
"recommended_platform_voucher_info": null,
"original_price": 289900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Jam Original by RADATIME",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48554667325,
"shopid": 95906098,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgqrqnwks9033\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,700190019,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059150,700005498,822059908662278,825465608494624,825465608499232,2048660,2048661,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":140,\"model_id\":287333485327,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgqrqnwks9033\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,700190019,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059150,700005498,822059908662278,825465608494624,825465608499232,2048660,2048661,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":140,\"model_id\":287333485327,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48554667325",
"debug_info": null
},
{
"item_basic": {
"itemid": 52854642788,
"shopid": 1542929270,
"name": "22mm Soft Breathable Sport Strap for Xiaomi Redmi Wat 5 Active/5 Lite Nylon Loop Bracelet for Redmi Wat 3 Active/3 Lite Band",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-8261y-mjgqtynt7zerd2",
"images": [
"sg-11134201-8261y-mjgqtynt7zerd2",
"sg-11134201-8260q-mjgqtzer7vuu75",
"sg-11134201-8262y-mjgqtzxyv01z34",
"sg-11134201-82614-mjgqu0ixy22s3b",
"sg-11134201-8261y-mjgqu0wrfitce9",
"sg-11134201-8261c-mjgqu180ehhc1e",
"sg-11134201-8261x-mjgqu23bzv9ea9",
"sg-11134201-8261q-mjgqu2f2esxu4c",
"sg-11134201-8260i-mjgqu2rku77m5f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768377520,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 54780000000,
"price_min": 54780000000,
"price_max": 54780000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Green",
"Black",
"Grey",
"Orange",
"Blue"
],
"images": [
"sg-11134201-8261q-mjgqu2f2esxu4c",
"sg-11134201-8260i-mjgqu2rku77m5f",
"sg-11134201-8261g-mjgqu2z7aner94",
"sg-11134201-8262o-mjgqu3bjiqyp2d",
"sg-11134201-8261b-mjgqu3m2b85f6d"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Redmi Watch 3 Active",
"Redmi Watch 5 Lite",
"Redmi Watch 5 Active",
"22mm",
"Redmi Watch 3 Lite"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 54780000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 365432401238,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 54780000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52854642788,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261y-mjgqtynt7zerd2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":143,\"model_id\":365432401238,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261y-mjgqtynt7zerd2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":143,\"model_id\":365432401238,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52854642788",
"debug_info": null
},
{
"item_basic": {
"itemid": 41478022082,
"shopid": 1542929270,
"name": "20/22mm Stylish Nylon Velcro Strap Suitable for Samsung Wat Series Straps Mountaineering Nylon Loop Straps",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-82628-mjgqsv39olj877",
"images": [
"sg-11134201-82628-mjgqsv39olj877",
"sg-11134201-82620-mjgqsv9elszo9a",
"sg-11134201-8260g-mjgqsvj4hfcz85",
"sg-11134201-82606-mjgqsvvdwcg5a4",
"sg-11134201-8261n-mjgqsw6bpnuv30",
"sg-11134201-82609-mjgqswfzvfnrd3",
"sg-11134201-825zm-mjgqswoqh8na60",
"sg-11134201-82608-mjgqswvgcsn6fd",
"sg-11134201-8261v-mjgqsx1wsc1s30"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768377465,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 43970000000,
"price_min": 43970000000,
"price_max": 43970000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"black",
"orange",
"green",
"grey",
"blue"
],
"images": [
"sg-11134201-82608-mjgqswvgcsn6fd",
"sg-11134201-8261v-mjgqsx1wsc1s30",
"sg-11134201-8260y-mjgqsx97ysjoc3",
"sg-11134201-81zuj-mik5myjqch6pf4",
"sg-11134201-8260e-mjgqsxlc44jn3a"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 43970000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345432389676,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 43970000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 41478022082,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82628-mjgqsv39olj877\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":145,\"model_id\":345432389676,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82628-mjgqsv39olj877\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":145,\"model_id\":345432389676,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41478022082",
"debug_info": null
},
{
"item_basic": {
"itemid": 56004642536,
"shopid": 1542929270,
"name": "Handmade Italian MBOX top layer cowhide strap, 18 19 20 22MM quick release Watband, compatible For smart wat straps",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8261e-mjgqmtkel7nrd8",
"images": [
"sg-11134201-8261e-mjgqmtkel7nrd8",
"sg-11134201-8262c-mjgqmu5lik8zc9",
"sg-11134201-825zp-mjgqmukfk7415f",
"sg-11134201-825zz-mjgqmuwublkw63",
"sg-11134201-8261s-mjgqmvahzrpc28",
"sg-11134201-8262z-mjgqmvodfgud0b",
"sg-11134201-8261z-mjgqmw3tis5jc9",
"sg-11134201-82631-mjgqmwektfk50b",
"sg-11134201-825zu-mjgqmwx84oas24"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768377188,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 106300000000,
"price_min": 106300000000,
"price_max": 106300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"B Brack buckle",
"B silver buckle",
"A Brack buckle",
"A silver buckle",
"B rose gold",
"A rose gold",
"C Brack buckle",
"C silver buckle",
"C rose gold"
],
"images": [
"sg-11134201-82631-mjgqmwektfk50b",
"sg-11134201-825zu-mjgqmwx84oas24",
"sg-11134201-8260z-mjgqmxellhc1a6",
"sg-11134201-8260r-mjgqmxuo06boaf",
"sg-11134201-82622-mjgqmyejdbsx2e",
"sg-11134201-8261h-mjgqmyykz6kk06",
"sg-11134201-82627-mjgqmzghwverd2",
"sg-11134201-8261e-mjgqmtkel7nrd8",
"sg-11134201-8260k-mjgqmzwtrhtyed"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"18mm",
"22mm",
"20mm",
"19mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 106300000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 340432367755,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 106300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56004642536,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjgqmtkel7nrd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":150,\"model_id\":340432367755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjgqmtkel7nrd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":150,\"model_id\":340432367755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56004642536",
"debug_info": null
},
{
"item_basic": {
"itemid": 49454667134,
"shopid": 242931987,
"name": "garmin foruner 55",
"label_ids": [
700700063,
2018619,
1428713,
1718087960,
844931064601283,
844931086908638,
1718093079,
1049112,
700005512,
822059908662278,
825465608499232,
2048660,
2048661
],
"image": "id-11134207-82251-mjgqco747rpc48",
"images": [
"id-11134207-82251-mjgqco747rpc48",
"id-11134207-8224o-mjgqco74969se8",
"id-11134207-8224r-mjgqco74aku81e",
"id-11134207-8224z-mjgqco74bzeobb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768376965,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 150000000000,
"price_min": 150000000000,
"price_max": 150000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 150000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310432931409,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 150000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Second_Explorer",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49454667134,
"shopid": 242931987,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgqco747rpc48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,1428713,1718087960,844931064601283,844931086908638,1718093079,1049112,700005512,822059908662278,825465608499232,2048660,2048661],\"matched_keywords\":[\"\"],\"merge_rank\":154,\"model_id\":310432931409,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjgqco747rpc48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,1428713,1718087960,844931064601283,844931086908638,1718093079,1049112,700005512,822059908662278,825465608499232,2048660,2048661],\"matched_keywords\":[\"\"],\"merge_rank\":154,\"model_id\":310432931409,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49454667134",
"debug_info": null
},
{
"item_basic": {
"itemid": 45504676626,
"shopid": 1542929270,
"name": "20mm 22mm 18mm Bling Metal Bracelet Strap band For Samsung Galaxy Wat 7 FE 5 Pro 4 6 classic 44mm 40mm sport correa",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8262t-mjgq8d0br2f79d",
"images": [
"sg-11134201-8262t-mjgq8d0br2f79d",
"sg-11134201-8261m-mjgq8fr2al8i86",
"sg-11134201-825zs-mjgq8g9y87wn67",
"sg-11134201-8260z-mjgq8grv7bb970",
"sg-11134201-82604-mjgq8h9mpsslc0",
"sg-11134201-8262q-mjgq8hqz38cje3",
"sg-11134201-8262m-mjgq8i8dq39hf6",
"sg-11134201-825zx-mjgq8ii2tm9w4f",
"sg-11134201-82617-mjgq8j0wq8zlc3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768376514,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 30170000000,
"price_min": 30170000000,
"price_max": 30170000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"rose gold",
"gold",
"silver",
"black",
"starlight"
],
"images": [
"sg-11134201-825zx-mjgq8ii2tm9w4f",
"sg-11134201-82617-mjgq8j0wq8zlc3",
"sg-11134201-8262t-mjgq8d0br2f79d",
"sg-11134201-8260n-mjgq8jiyxkhzb9",
"sg-11134201-825zt-mjgq8jttnvgkc0"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"universal 20mm",
"universal 22mm",
"universal 18mm",
"Watch 6 40mm 44mm",
"6 classic 43mm 47mm",
"Galaxy Watch FE 40mm",
"Watch 7 40mm 44mm",
"watch 4 classic 46mm",
"Galaxy Watch 4 44mm",
"watch 4 classic 42mm",
"Watch 5 pro 45mm",
"Galaxy Watch 4 40mm",
"Galaxy Watch5 40mm",
"Galaxy Watch5 44mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 30170000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 325432284700,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 30170000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45504676626,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjgq8d0br2f79d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":160,\"model_id\":325432284700,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjgq8d0br2f79d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":160,\"model_id\":325432284700,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45504676626",
"debug_info": null
},
{
"item_basic": {
"itemid": 50104642395,
"shopid": 1542929270,
"name": "20mm Nylon Strap for Garmin S50/S42/S40/S12 Band, for Garmin 165/245/Vivoactive 6 5 3, Venu Sq 2 4 Sq 2 sport nylon starp",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-82602-mjgq72yoy29u08",
"images": [
"sg-11134201-82602-mjgq72yoy29u08",
"sg-11134201-82624-mjgq73s336rq0e",
"sg-11134201-8260y-mjgq74c90ykl02",
"sg-11134201-8261y-mjgq74mnybya41",
"sg-11134201-82618-mjgq75dbdm2t9e",
"sg-11134201-8262y-mjgq75p8kwzn51",
"sg-11134201-8260v-mjgq7642gz5v1d",
"sg-11134201-8262e-mjgq76kxfxfl61",
"sg-11134201-8260d-mjgq77akkttx20"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768376452,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 51560000000,
"price_min": 51560000000,
"price_max": 51560000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Water Duck",
"Orange",
"green",
"Black gray"
],
"images": [
"sg-11134201-8262e-mjgq76kxfxfl61",
"sg-11134201-82602-mjgq72yoy29u08",
"sg-11134201-8260d-mjgq77akkttx20",
"sg-11134201-8261t-mjgq78agvaptd3"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm-L",
"20mm-S"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 51560000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 430432287659,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 51560000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50104642395,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82602-mjgq72yoy29u08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":163,\"model_id\":430432287659,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82602-mjgq72yoy29u08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":163,\"model_id\":430432287659,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50104642395",
"debug_info": null
},
{
"item_basic": {
"itemid": 45004676650,
"shopid": 1542929270,
"name": "24mm Quick Fit Nylon Loop Strap For Suunto7/9/Spartan Sport Easy Fit Wat Band 9Baro Replaceable Wristband Belt",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608497696,
825465608499232,
1718093079
],
"image": "sg-11134201-82633-mjgq7mvfgb9i0d",
"images": [
"sg-11134201-82633-mjgq7mvfgb9i0d",
"sg-11134201-825zw-mjgq7ojyxzice4",
"sg-11134201-8261a-mjgq7ox4tmo5bb",
"sg-11134201-82617-mjgq7plp24g317",
"sg-11134201-8260q-mjgq7q02k6ip3e",
"sg-11134201-8260d-mjgq7qcoi32f68",
"sg-11134201-8262a-mjgq7r0vgy6993",
"sg-11134201-8260y-mjgq7s1ctxqa25",
"sg-11134201-8260y-mjgq7u628t8n5d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768376495,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 46500000000,
"price_min": 46500000000,
"price_max": 46500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black",
"White",
"Sky blue",
"Green",
"Brown",
"Red",
"Gray",
"Navy blue",
"Orange"
],
"images": [
"sg-11134201-8260y-mjgq7s1ctxqa25",
"sg-11134201-8260y-mjgq7u628t8n5d",
"sg-11134201-825zm-mjgq7w2v7oqseb",
"sg-11134201-8260g-mjgq7xszo9ae98",
"sg-11134201-82623-mjgq7zlcbbpg81",
"sg-11134201-8262s-mjgq819slwjmd4",
"sg-11134201-825zp-mjgq830f0j5x8f",
"sg-11134201-82620-mjgq84xhs0sh7e",
"sg-11134201-82633-mjgq7mvfgb9i0d"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"SUUNTO 7",
"Spartan Sport",
"SUUNTO D5",
"SUUNTO 9 Baro",
"SUUNTO 9",
"24mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 46500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385432289291,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 46500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45004676650,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82633-mjgq7mvfgb9i0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":161,\"model_id\":385432289291,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82633-mjgq7mvfgb9i0d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":161,\"model_id\":385432289291,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45004676650",
"debug_info": null
},
{
"item_basic": {
"itemid": 54454642424,
"shopid": 1542929270,
"name": "Leather Band For Samsung Galaxy Wat Ultra 2025 2024 horse leather strap For SAMSUNG GALAXY ULTRA 47MM watband",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8261u-mjgq55s2mux1a5",
"images": [
"sg-11134201-8261u-mjgq55s2mux1a5",
"sg-11134201-8261y-mjgq5636562pf2",
"sg-11134201-8261s-mjgq56fgqbd1dc",
"sg-11134201-82618-mjgq56r89wck56",
"sg-11134201-8260i-mjgq572eldz8fa",
"sg-11134201-82616-mjgq57fb864h36",
"sg-11134201-82630-mjgq57qbnif501",
"sg-11134201-8262v-mjgq580yurd000",
"sg-11134201-8262e-mjgq589uncavcc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768376359,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 58690000000,
"price_min": 58690000000,
"price_max": 58690000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Gray",
"silver black",
"silver brown",
"Black",
"Brown"
],
"images": [
"sg-11134201-8262v-mjgq580yurd000",
"sg-11134201-8262e-mjgq589uncavcc",
"sg-11134201-8260e-mjgq58jqyqdf10",
"sg-11134201-8262n-mjgq58wvoa2o9d",
"sg-11134201-8260r-mjgq59a23l6u83"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 58690000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 262333626777,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 58690000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54454642424,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261u-mjgq55s2mux1a5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":165,\"model_id\":262333626777,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261u-mjgq55s2mux1a5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":165,\"model_id\":262333626777,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54454642424",
"debug_info": null
},
{
"item_basic": {
"itemid": 51104651804,
"shopid": 1542929270,
"name": "Top Leather Wat Band, Quick Release 22mm Wat Straps, Fits Garmin fenix 8 7 6 6Pro epix Pro 47 mm watband",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-825zn-mjgq32nm7sw26f",
"images": [
"sg-11134201-825zn-mjgq32nm7sw26f",
"sg-11134201-8261t-mjgq332h76yq65",
"sg-11134201-8260h-mjgq33dmxm2q85",
"sg-11134201-8260v-mjgq33q6ez9j86",
"sg-11134201-82631-mjgq345kbl6r78",
"sg-11134201-82600-mjgq34odhj411f",
"sg-11134201-8260i-mjgq3590foxxb4",
"sg-11134201-8262q-mjgq35pbz4ea51",
"sg-11134201-825zo-mjgq364fp43r82"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768376262,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 141260000000,
"price_min": 141260000000,
"price_max": 141260000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Brown-Silver buckle",
"Brown-Black buckle"
],
"images": [
"sg-11134201-825zn-mjgq32nm7sw26f",
"sg-11134201-8262q-mjgq35pbz4ea51"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 141260000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 440432267647,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 141260000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51104651804,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zn-mjgq32nm7sw26f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":166,\"model_id\":440432267647,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zn-mjgq32nm7sw26f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":166,\"model_id\":440432267647,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51104651804",
"debug_info": null
},
{
"item_basic": {
"itemid": 40128021932,
"shopid": 1542929270,
"name": "20mm 22mm Nylon Wat Band For Omega X S-wat Joint MoonSwat Strap Quick Release Sport Watband Bracelet for Men Women",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8262j-mjgq5la8nx8hfa",
"images": [
"sg-11134201-8262j-mjgq5la8nx8hfa",
"sg-11134201-8262k-mjgq5lzw1am99e",
"sg-11134201-8261x-mjgq5mppotfma2",
"sg-11134201-8262t-mjgq5nf5x4w300",
"sg-11134201-825zu-mjgq5o1sxpmv7b",
"sg-11134201-8260c-mjgq5ofb2gp31a",
"sg-11134201-825zz-mjgq5ouf53i82c",
"sg-11134201-8261i-mjgq5p4gga9s34",
"sg-11134201-8262t-mjgq5pdbi80414"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768376381,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 42590000000,
"price_min": 42590000000,
"price_max": 42590000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"khaki",
"red khaki",
"oilve khaki",
"navy black khaki"
],
"images": [
"sg-11134201-8261i-mjgq5p4gga9s34",
"sg-11134201-8262t-mjgq5pdbi80414",
"sg-11134201-8262c-mjgq5pmwtgcjc6",
"sg-11134201-82608-mjgq5punn85ce1"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 42590000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435432280890,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 42590000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40128021932,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjgq5la8nx8hfa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":164,\"model_id\":435432280890,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjgq5la8nx8hfa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":164,\"model_id\":435432280890,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40128021932",
"debug_info": null
},
{
"item_basic": {
"itemid": 51954651890,
"shopid": 1321479308,
"name": "Samsung galaxy Watch 4 42mm werOs by google",
"label_ids": [
1400066568,
844931064601283,
1059152,
1059154,
822059908662278,
825465608494624,
825465608499232,
1718093079
],
"image": "id-11134207-8224w-mjgpttm14k5cd9",
"images": [
"id-11134207-8224w-mjgpttm14k5cd9",
"id-11134207-8224r-mjgpt97up3ia26",
"id-11134207-82250-mjgpt97uqi2qd5",
"id-11134207-8224v-mjgpt98wl0xz42"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768376035,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Samsung",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 70000000000,
"price_min": 70000000000,
"price_max": 70000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ven8-mjgptipdg3r9ae.16000081768375814.mp4",
"thumb_url": "id-11110107-6ven8-mjgptipdg3r9ae_cover",
"duration": 39,
"version": 2,
"vid": "id-11110107-6ven8-mjgptipdg3r9ae",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ven8-mjgptipdg3r9ae.16000081768375814.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven8-mjgptipdg3r9ae.16000081768375814.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven8-mjgptipdg3r9ae.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 70000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370432241481,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 70000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Jam second",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51954651890,
"shopid": 1321479308,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjgpttm14k5cd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608494624,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":170,\"model_id\":370432241481,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjgpttm14k5cd9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608494624,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":170,\"model_id\":370432241481,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51954651890",
"debug_info": null
},
{
"item_basic": {
"itemid": 46104671842,
"shopid": 1542929270,
"name": "QuickFit 20mm 22mm 26mm Woven Nylon Band For Garmin Fenix 8 47mm 51mm 7 7X 6 6X 5 5X Plus/Enduro 3/Epix Pro Gen 2 Strap Bracelet",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-8260u-mjgpywl6vbwm28",
"images": [
"sg-11134201-8260u-mjgpywl6vbwm28",
"sg-11134201-8260j-mjgpyxp33ls744",
"sg-11134201-825zx-mjgpyy55s4qt0f",
"sg-11134201-825zk-mjgpyz4hqtc027",
"sg-11134201-8260p-mjgpyzy1xm9tcc",
"sg-11134201-8260d-mjgpz0dlko3r1a",
"sg-11134201-8261o-mjgpz0t0c83qab",
"sg-11134201-8261q-mjgpz1bq86br1b",
"sg-11134201-82607-mjgpz29c2l8hdc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768376085,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 80770000000,
"price_min": 80770000000,
"price_max": 80770000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Orange",
"Black",
"Gray",
"Wine Red",
"Starlight",
"Smoke purple",
"green",
"dark Gray",
"Dark Blue",
"Stone lotus color"
],
"images": [
"sg-11134201-8260u-mjgpywl6vbwm28",
"sg-11134201-82635-mjgpzbq5cb2d61",
"sg-11134201-8262a-mjgpzcr8biti38",
"sg-11134201-8260f-mjgpz3qux2boee",
"sg-11134201-8261q-mjgpz1bq86br1b",
"sg-11134201-82607-mjgpz29c2l8hdc",
"sg-11134201-82621-mjgpz6newtmva5",
"sg-11134201-8261w-mjgpz7kxzi85e6",
"sg-11134201-8260e-mjgpz8vnu3gh9d",
"sg-11134201-825zk-mjgpzao67oxt8e"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"QuickFit 20mm",
"QuickFit 22mm",
"QuickFit 26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 80770000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445432247562,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 80770000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46104671842,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgpywl6vbwm28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":169,\"model_id\":445432247562,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgpywl6vbwm28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":169,\"model_id\":445432247562,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46104671842",
"debug_info": null
},
{
"item_basic": {
"itemid": 44478017096,
"shopid": 1542929270,
"name": "Stainless Steel Strap For Samsung Galaxy Wat 8/8 classic 46mm 40 44mm Metal Watband Bracelet Correa For Samsung Ultra 2 band",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-82629-mjgpv12xe9dz15",
"images": [
"sg-11134201-82629-mjgpv12xe9dz15",
"sg-11134201-8260h-mjgpv1bw8g74f3",
"sg-11134201-82630-mjgpv22x8lja20",
"sg-11134201-8262g-mjgpv2b8l4w755",
"sg-11134201-825zo-mjgpv2u3s5xf67",
"sg-11134201-825zm-mj9npvoz7nyf85",
"sg-11134201-8260o-mjgpv3for8jp66",
"sg-11134201-825zu-mjgpv3p64lj6d4",
"sg-11134201-82616-mjgpv4295p8ha2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768375887,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 46270000000,
"price_min": 46270000000,
"price_max": 46270000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"starlight",
"black",
"rose gold",
"Gold",
"Silver"
],
"images": [
"sg-11134201-825zu-mjgpv3p64lj6d4",
"sg-11134201-82616-mjgpv4295p8ha2",
"sg-11134201-8261k-mjgpv4dhnw8w68",
"sg-11134201-8260y-mjgpv4ro3pj556",
"sg-11134201-8260c-mjgpv56ahzidbb"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"Watch 8 Classic 46mm",
"Galaxy Watch 8 44mm",
"Galaxy Watch 8 40mm",
"Galaxy Ultra 47mm",
"Galaxy Ultra (2025)"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 46270000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 320432221770,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 46270000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44478017096,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82629-mjgpv12xe9dz15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":171,\"model_id\":320432221770,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82629-mjgpv12xe9dz15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":171,\"model_id\":320432221770,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44478017096",
"debug_info": null
},
{
"item_basic": {
"itemid": 47204662374,
"shopid": 1542929270,
"name": "No Gap Stainless Steel Band for Samsung Galaxy Wat 8/8Classic 40mm 44mm 46mm Metal Correa Bracelet for GALAXY Ultra 47mm Strap",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608497696,
825465608499232,
1718093079
],
"image": "sg-11134201-82635-mjgpt2avkq2s2a",
"images": [
"sg-11134201-82635-mjgpt2avkq2s2a",
"sg-11134201-825zw-mjgpt2q6a3uq08",
"sg-11134201-8261w-mjgpt36d0rgic0",
"sg-11134201-8261d-mjgpt3o37g1sc0",
"sg-11134201-82613-mjgpt45e7rb704",
"sg-11134201-8262d-mjgpt4ykjwn663",
"sg-11134201-8260q-mjgpt5pd0e1155",
"sg-11134201-8261p-mjgpt5why22t17",
"sg-11134201-82609-mjgpt64cpp8k13"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768375795,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 76630000000,
"price_min": 76630000000,
"price_max": 76630000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"silver",
"black"
],
"images": [
"sg-11134201-8261p-mjgpt5why22t17",
"sg-11134201-82609-mjgpt64cpp8k13"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 76630000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 330432212109,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 76630000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47204662374,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82635-mjgpt2avkq2s2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":173,\"model_id\":330432212109,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82635-mjgpt2avkq2s2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":173,\"model_id\":330432212109,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47204662374",
"debug_info": null
},
{
"item_basic": {
"itemid": 29844037553,
"shopid": 1542929270,
"name": "Leather Wat Strap for Samsung Galaxy Wat 8 40mm 44mm Magnetic Band Classic Bracelet for Galaxy Wat8 Classic 46mm Watband",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-82616-mjgptofd0p396d",
"images": [
"sg-11134201-82616-mjgptofd0p396d",
"sg-11134201-8262n-mjgptoty39c0de",
"sg-11134201-825zy-mjgptp51bqis3a",
"sg-11134201-82610-mjgptpf5g3r884",
"sg-11134201-8261x-mjgptponabk3e6",
"sg-11134201-82635-mjgptq0n6l8nea",
"sg-11134201-8261g-mjgptqbn29ky06",
"sg-11134201-8260u-mjgptqn63pxh1b",
"sg-11134201-8260t-mjgptr8vwxdvd5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768375824,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 36840000000,
"price_min": 36840000000,
"price_max": 36840000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Brown",
"Black",
"Gray",
"Green"
],
"images": [
"sg-11134201-8260u-mjgptqn63pxh1b",
"sg-11134201-8260t-mjgptr8vwxdvd5",
"sg-11134201-825zo-mjgptrmchhqd32",
"sg-11134201-82600-mjgpts29s7wl7a"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"Galaxy Watch 8 40mm",
"Watch 8 Classic 46mm",
"Galaxy Watch 8 44mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 36840000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445432204881,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 36840000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 29844037553,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgptofd0p396d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":172,\"model_id\":445432204881,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgptofd0p396d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":172,\"model_id\":445432204881,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29844037553",
"debug_info": null
},
{
"item_basic": {
"itemid": 55154651696,
"shopid": 49856158,
"name": "apple watch ultra 2",
"label_ids": [
1400066568,
844931086908638,
844931064601283,
1059152,
700005487,
822059908662278,
825465608492064,
825465608493600,
825465608499232,
1718093079
],
"image": "id-11134207-8224z-mjgpki0grtvnf4",
"images": [
"id-11134207-8224z-mjgpki0grtvnf4",
"id-11134207-8224p-mjgpki7lmqde52",
"id-11134207-8224w-mjgpki9k4yki48",
"id-11134207-8224r-mjgpki7m26ma78",
"id-11134207-8224s-mjgpkhplxb7qff"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768375645,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 904800000000,
"price_min": 904800000000,
"price_max": 904800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 904800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 330432183329,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 904800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GRauto",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55154651696,
"shopid": 49856158,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgpki0grtvnf4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931086908638,844931064601283,1059152,700005487,822059908662278,825465608492064,825465608493600,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":176,\"model_id\":330432183329,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgpki0grtvnf4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931086908638,844931064601283,1059152,700005487,822059908662278,825465608492064,825465608493600,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":176,\"model_id\":330432183329,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55154651696",
"debug_info": null
},
{
"item_basic": {
"itemid": 43128007303,
"shopid": 1542929270,
"name": "Premium Leather Band For Samsung Galaxy Wat Ultra 2025 47mm Comfortable Bracelet Samsung Galaxy Wat 8 40/44mm 8 Classic 46mm",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-8262v-mjgpqr8b5amcda",
"images": [
"sg-11134201-8262v-mjgpqr8b5amcda",
"sg-11134201-8262c-mjgpqry166mfaf",
"sg-11134201-82625-mjgpqsr75qfb51",
"sg-11134201-8261t-mjgpqtex47if28",
"sg-11134201-8260d-mjgpqtoosg07b3",
"sg-11134201-8260l-mjgpqu947jsx04",
"sg-11134201-8262c-mjgpquivylfq87",
"sg-11134201-8261z-mjgpquy62wow2c",
"sg-11134201-82619-mjgpqvhcmozk98"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768375693,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 87670000000,
"price_min": 87670000000,
"price_max": 87670000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Taupe",
"Orange",
"White",
"Dark blue",
"Malachite green",
"Brown",
"Red",
"Black",
"Lndigo blue"
],
"images": [
"sg-11134201-82621-mjgpqw5lqtc2e9",
"sg-11134201-8261o-mjgpqwouo8ox9e",
"sg-11134201-82632-mjgpqvpsl0xva3",
"sg-11134201-8262m-mjgpqx6rvt345d",
"sg-11134201-82633-mjgpqxzlkuf5c9",
"sg-11134201-82608-mjgpqyj5bd3524",
"sg-11134201-82612-mjgpqzdwxiio2a",
"sg-11134201-82619-mjgpqvhcmozk98",
"sg-11134201-8261z-mjgpquy62wow2c"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Watch Ultra 2025",
"Galaxy Watch 8 40mm",
"Galaxy Watch Ultra",
"Watch 8 Classic 46mm",
"Galaxy Watch 8 44mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 87670000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 307333354405,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 87670000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43128007303,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262v-mjgpqr8b5amcda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":175,\"model_id\":307333354405,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262v-mjgpqr8b5amcda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":175,\"model_id\":307333354405,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43128007303",
"debug_info": null
},
{
"item_basic": {
"itemid": 50154642220,
"shopid": 1714905707,
"name": "Coros Pace 4 Baru Sebulan",
"label_ids": [
844931064601283,
844931086908638,
1049112,
1059151,
822059908662278,
825465608494624,
825465608499232,
825465608493600
],
"image": "id-11134207-8224z-mjgil709eyo7ff",
"images": [
"id-11134207-8224z-mjgil709eyo7ff",
"id-11134207-8224q-mjgil709dk3r07",
"id-11134207-8224s-mjgil709gd8n77",
"id-11134207-8224z-mjgil709hrt33f",
"id-11134207-8224o-mjgil70prim8c4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768375259,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "COROS",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 385400000000,
"price_min": 385400000000,
"price_max": 385400000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 385400000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 262333543184,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 385400000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "darisfauzannurhidayat",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTMwLjE3X3tiMTFiYTNhZjQ4NTU3ZTgzM2RmNmQ3YTEyY2IwMjMwMDowMjAwMDAzNjA3Nzg5ODI0OjAxMDAwMWM3NzM1YTYzYmN9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyMDQ3NDY5NzYw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50154642220,
"shopid": 1714905707,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgil709eyo7ff\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1059151,822059908662278,825465608494624,825465608499232,825465608493600],\"matched_keywords\":[\"\"],\"merge_rank\":186,\"model_id\":262333543184,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgil709eyo7ff\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049112,1059151,822059908662278,825465608494624,825465608499232,825465608493600],\"matched_keywords\":[\"\"],\"merge_rank\":186,\"model_id\":262333543184,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50154642220",
"debug_info": null
},
{
"item_basic": {
"itemid": 26344027593,
"shopid": 240497449,
"name": "Huawei Band 9 second",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608493600,
825465608499232
],
"image": "id-11134207-8224p-mjgpbbrurais39",
"images": [
"id-11134207-8224p-mjgpbbrurais39",
"id-11134207-8224z-mjgpbbt32znnb4",
"id-11134207-8224o-mjgpbbs91edc3e",
"id-11134207-8224x-mjgpbbsytvr894",
"id-11134207-8224w-mjgpbbsx8ah353",
"id-11134207-8224w-mjgpbxjxd0ch3a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768375266,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 28000000000,
"price_min": 28000000000,
"price_max": 28000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 28000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 350432146016,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 28000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "rewi.dahmawati",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 26344027593,
"shopid": 240497449,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgpbbrurais39\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608493600,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2289,\"model_id\":350432146016,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgpbbrurais39\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608493600,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2289,\"model_id\":350432146016,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26344027593",
"debug_info": null
},
{
"item_basic": {
"itemid": 55904655929,
"shopid": 204082562,
"name": "Garmin Fenix 5s Plus",
"label_ids": [
298463379,
844931064601283,
1049143,
1049142,
1718093079,
822059908662278,
2048660,
2048661,
825465608499232,
1718088045,
298468389
],
"image": "id-11134207-8224s-mjgp1dyutwjo4c",
"images": [
"id-11134207-8224s-mjgp1dyutwjo4c",
"id-11134207-8224w-mjgp1dyphgquf4",
"id-11134207-8224w-mjgp1dyzigoxa2",
"id-11134207-8224y-mjgp1dyp0lxfe5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768374791,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 320000000000,
"price_min": 320000000000,
"price_max": 320000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pekanbaru",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 320000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435432080155,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 320000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "krismauca",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55904655929,
"shopid": 204082562,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgp1dyutwjo4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049143,1049142,1718093079,822059908662278,2048660,2048661,825465608499232,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1104,\"model_id\":435432080155,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgp1dyutwjo4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049143,1049142,1718093079,822059908662278,2048660,2048661,825465608499232,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1104,\"model_id\":435432080155,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55904655929",
"debug_info": null
},
{
"item_basic": {
"itemid": 52904655803,
"shopid": 1549406,
"name": "WIRELESS TAG FINDER PENCARI PELACAK WORKS TRACKER DENGAN APPLE FIND MY KECIL DAN BULAT BATERAI BERTAHAN 1 TAHUN",
"label_ids": [
1000016,
2018619,
844931064601283,
298463379,
1059156,
700005499,
1718093079,
822059908662278,
2048660,
2048661,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
298468389,
1718088045
],
"image": "id-11134207-8224p-mjgny8tbompz2e",
"images": [
"id-11134207-8224p-mjgny8tbompz2e",
"id-11134207-82250-mjgokejezdae41",
"id-11134207-8224x-mjgokejcn37n5b",
"id-11134207-8224q-mjgokejc0m4ibb",
"id-11134207-82252-mjgokejbmkg45c",
"id-11134207-8224p-mjgokeihmdqbc0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768374271,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 23875000000,
"price_min": 23875000000,
"price_max": 23875000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6venc-mjgouus5j2f4f2.16000081768374210.mp4",
"thumb_url": "id-11110105-6venc-mjgouus5j2f4f2_cover",
"duration": 12,
"version": 2,
"vid": "id-11110105-6venc-mjgouus5j2f4f2",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6venc-mjgouus5j2f4f2.16000081768374210.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mjgouus5j2f4f2.16000081768374210.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mjgouus5j2f4f2.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": true,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 23875000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380432025547,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 23875000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "erwindeepblue",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52904655803,
"shopid": 1549406,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgny8tbompz2e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,2018619,844931064601283,298463379,1059156,700005499,1718093079,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1291,\"model_id\":380432025547,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgny8tbompz2e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000016,2018619,844931064601283,298463379,1059156,700005499,1718093079,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,825465608497696,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":1291,\"model_id\":380432025547,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52904655803",
"debug_info": null
},
{
"item_basic": {
"itemid": 50704646356,
"shopid": 1536174829,
"name": "MiLI SMART ANTI LOST CARD Pelacak NFC, Alarm 100dB, Tahan Air IP67 - Bisa Lacak via Google Maps",
"label_ids": [
298463379,
844931064601283,
1049126,
700005496,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1718088045,
298468389
],
"image": "id-11134207-8224p-mjgor5o2iqdi84",
"images": [
"id-11134207-8224p-mjgor5o2iqdi84",
"id-11134207-82250-mjgor5nzbjsx71",
"id-11134207-8224p-mjgor5nzcyddb3"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768374138,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 55000000000,
"price_min": 55000000000,
"price_max": 55000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Gianyar",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 55000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390431999131,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 55000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "chatuponmid",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50704646356,
"shopid": 1536174829,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgor5o2iqdi84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049126,700005496,822059908662278,825465608499232,825465608497696,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1446,\"model_id\":390431999131,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgor5o2iqdi84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298463379,844931064601283,1049126,700005496,822059908662278,825465608499232,825465608497696,1718093079,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1446,\"model_id\":390431999131,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50704646356",
"debug_info": null
},
{
"item_basic": {
"itemid": 52554646076,
"shopid": 1582266054,
"name": "Xiaomi Redmi 15C (8GB/256GB) | Baterai besar 6000mAh dengan pengisian daya 33W | Desain ramping dan elegan |",
"label_ids": [
1400066568,
2018619,
1718087960,
1428713,
844931064601283,
844931086908638,
1059152,
1059154,
822059908662278,
825465608499232,
1718093079
],
"image": "id-11134207-8224o-mjgn89vrdix1e4",
"images": [
"id-11134207-8224o-mjgn89vrdix1e4",
"id-11134207-8224t-mjgn89vrexhh08",
"id-11134207-82250-mjgn89vrgc1x32",
"id-11134207-8224t-mjgn89vr6i2t53",
"id-11134207-8224r-mjgn89vraps550",
"id-11134207-8224q-mjgn89vr53idbc",
"id-11134207-82251-mjgn89vr7wn99a",
"id-11134207-8224x-mjgn89vrc4cl5b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768373330,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 169900000000,
"price_min": 169900000000,
"price_max": 169900000000,
"price_min_before_discount": 339800000000,
"price_max_before_discount": 339800000000,
"hidden_price_display": null,
"price_before_discount": 339800000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-50%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvi-mjgnz9k4ejusaa.16000101768372719.mp4",
"thumb_url": "id-11110105-6vdvi-mjgnz9k4ejusaa_cover",
"duration": 37,
"version": 2,
"vid": "id-11110105-6vdvi-mjgnz9k4ejusaa",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvi-mjgnz9k4ejusaa.16000101768372719.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mjgnz9k4ejusaa.16000101768372719.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mjgnz9k4ejusaa.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Black",
"Blue",
"Green"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 740438504424448,
"price": 168900000000,
"strikethrough_price": 339800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1317914335395872,
"discount_text": "-50%",
"model_id": 287333210586,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1317914335395872,
"voucher_code": "HARDSV001",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1766567340,
"end_time": 1774606140,
"valid_duration": null
},
"groups": [],
"min_spend": 20000000000
},
"recommended_platform_voucher_info": null,
"original_price": 339800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Hardware Market",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52554646076,
"shopid": 1582266054,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgn89vrdix1e4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1718087960,1428713,844931064601283,844931086908638,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1320,\"model_id\":287333210586,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgn89vrdix1e4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1718087960,1428713,844931064601283,844931086908638,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1320,\"model_id\":287333210586,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52554646076",
"debug_info": null
},
{
"item_basic": {
"itemid": 51204651053,
"shopid": 284175299,
"name": "[NEW ARRIVAL] UltraWatch Series 11 Mini 42mm Smartwatch Jam Tangan Pria & Wanita Bluetooth 5.4 Amoled Display IP 68 Water Resistant with Sport & Health Mode Dynamic Island ChatGPT - by PodsIndonesia",
"label_ids": [
700700063,
2018619,
298938357,
298888358,
2023641,
700025016,
1718072935,
1718087960,
1428713,
844931064601283,
1049112,
1049133,
822059908662278,
825465608497696,
825465608499232,
298463379,
1718093079,
298938368,
2098628,
2098629,
1718088045,
298468389
],
"image": "sg-11134201-8261e-mjfhpn0ehkhue3",
"images": [
"sg-11134201-8261e-mjfhpn0ehkhue3",
"sg-11134201-8260r-mjgo96tq91xfed",
"sg-11134201-8261j-mjgo97cjug3od7",
"sg-11134201-82628-mjgo97mfdsefac",
"sg-11134201-8261p-mjgo97vj6br5ae",
"sg-11134201-8260w-mjgo981vtnnoc5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768373183,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 59900000000,
"price_min": 59900000000,
"price_max": 59900000000,
"price_min_before_discount": 299900000000,
"price_max_before_discount": 299900000000,
"hidden_price_display": null,
"price_before_discount": 299900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-80%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Black",
"Silver",
"Rose Gold"
],
"images": [
"sg-11134201-8262v-mjgo988gz8xzcb",
"sg-11134201-8262b-mjgo98f0c6isfb",
"sg-11134201-82604-mjgo98kw4p3793"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Kab. Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp99RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 809482544791552,
"price": 59400000000,
"strikethrough_price": 299900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1312033836646404,
"discount_text": "-80%",
"model_id": 325431913510,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1312033836646404,
"voucher_code": "PODS5K",
"voucher_discount": 500000000,
"time_info": {
"start_time": 1765866360,
"end_time": 1772297940,
"valid_duration": null
},
"groups": [],
"min_spend": 45000000000
},
"recommended_platform_voucher_info": null,
"original_price": 299900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp99RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Pods Indonesia Official Mall",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51204651053,
"shopid": 284175299,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjfhpn0ehkhue3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,298938357,298888358,2023641,700025016,1718072935,1718087960,1428713,844931064601283,1049112,1049133,822059908662278,825465608497696,825465608499232,298463379,1718093079,298938368,2098628,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1416,\"model_id\":325431913510,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261e-mjfhpn0ehkhue3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,298938357,298888358,2023641,700025016,1718072935,1718087960,1428713,844931064601283,1049112,1049133,822059908662278,825465608497696,825465608499232,298463379,1718093079,298938368,2098628,2098629,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1416,\"model_id\":325431913510,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51204651053",
"debug_info": null
},
{
"item_basic": {
"itemid": 50954655161,
"shopid": 1656110262,
"name": "FAVORIT [NEW 2026] ILV ELEKTRONIK SERIES S10 MAX SMARTWATCH 2.3 INCI HD AMOLED DISPLAY GPS NFC BLUETOOTH IPHONE CALL WATERPROOF SMARTWATCH WANITA PRIA DAN GANTI WALLPAPER JAM TANGAN PRIA JAM TANGAN WANITA JAM TANGAN SMARTWATCH COUPLE",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224u-mjgmvhzgxam942",
"images": [
"id-11134201-8224u-mjgmvhzgxam942",
"id-11134201-8224s-mjgmvj1u991eda",
"id-11134201-8224u-mjgmvlo96xhj58",
"id-11134201-8224y-mjgmvmpr89a914",
"id-11134201-8224u-mjgmvpb62mf601",
"id-11134201-8224x-mjgmvs0yfm6823",
"id-11134201-8224y-mjgmvt3iebk410",
"id-11134201-8224u-mjgmvu8naxojf5",
"id-11134201-8224z-mjgmvw2f981t83"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768370904,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26000000000,
"price_min": 26000000000,
"price_max": 26000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"S9-Black",
"S10-Black",
"S10-White",
"S11-White",
"S11-Pink",
"S9-Silver",
"S11-Black",
"S11-Blue",
"S9-Pink",
"S10-Pink"
],
"images": [
"id-11134201-8224r-mjgmvzfkw6bm21",
"id-11134201-82251-mjgmw15gge85cf",
"id-11134201-8224r-mjgmw3p4shkx85",
"id-11134201-8224q-mjgmw66h1j465a",
"id-11134201-82252-mjgmw75wfs3oc1",
"id-11134201-8224x-mjgmw9olb2tc1d",
"id-11134201-8224r-mjgmwbej4t8n85",
"id-11134201-8224q-mjgmwdx8cphcef",
"id-11134201-82252-mjgmweugb0nb62",
"id-11134201-8224o-mjgmwfrw9ddxc2"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345431708938,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50954655161,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgmvhzgxam942\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1428,\"model_id\":345431708938,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224u-mjgmvhzgxam942\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1428,\"model_id\":345431708938,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50954655161",
"debug_info": null
},
{
"item_basic": {
"itemid": 48654670593,
"shopid": 1656110262,
"name": "ORIGINAL COD TERBARU JAM TANGAN ULTRA 8 SMARTWATCH FREE HEADSET DAN STRAP POLOS JAM TANGAN PRIA/WANITA",
"label_ids": [
844931064601283,
1049134,
700005505,
822059908662278,
825465608499232
],
"image": "id-11134201-8224x-mjgmxppd2sxs17",
"images": [
"id-11134201-8224x-mjgmxppd2sxs17",
"id-11134201-8224y-mjgmxqty7apw45",
"id-11134201-8224t-mjgmxsokcr2f4c",
"id-11134201-8224y-mjgmxtmjdxxg9e",
"id-11134201-8224r-mjgmxut861a881",
"id-11134201-8224s-mjgmxvvlysxz20"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768370999,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 35513400000,
"price_min": 35513400000,
"price_max": 35513400000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"PINK",
"FULL HITAM",
"CREAM",
"HIJAU ARMI",
"PUTIH",
"NAVY",
"ABU ABU",
"ORANGE",
"HITAM SILVER"
],
"images": [
"id-11134201-8224s-mjgmxz34ihac3a",
"id-11134201-82252-mjgmy06hfeh222",
"id-11134201-8224y-mjgmy2uhhiboa8",
"id-11134201-82252-mjgmy4p6kb9ib4",
"id-11134201-82252-mjgmy5si5kaua6",
"id-11134201-8224r-mjgmy7p2t79d51",
"id-11134201-82252-mjgmyabf8zd350",
"id-11134201-82252-mjgmycwcj8xy75",
"id-11134201-82251-mjgmyfcso93945"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pontianak",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35513400000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 292333082821,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35513400000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 8",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48654670593,
"shopid": 1656110262,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgmxppd2sxs17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1572,\"model_id\":292333082821,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224x-mjgmxppd2sxs17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049134,700005505,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1572,\"model_id\":292333082821,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48654670593",
"debug_info": null
},
{
"item_basic": {
"itemid": 53554640946,
"shopid": 1666692538,
"name": "HOT [NEW 2026] iLV Elektronik Series S10 MAX SmartWatch 2.3 inci HD AMOLED Display GPS NFC Bluetooth iphone Call Waterproof Smartwatch Wanita Pria Dan Ganti Wallpaper Jam tangan Pria Jam Tangan Wanita Jam Tangan Smartwatch Couple",
"label_ids": [
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232
],
"image": "id-11134201-8224o-mjgmtfndz0ua75",
"images": [
"id-11134201-8224o-mjgmtfndz0ua75",
"id-11134201-8224y-mjgmtgof46blf4",
"id-11134201-82252-mjgmthnit0xx55",
"id-11134201-8224o-mjgmtiq9li4m15",
"id-11134201-8224y-mjgmtjqh7bpi6d",
"id-11134201-8224z-mjgmtm9852it8a",
"id-11134201-8224y-mjgmtot8ey2ucd",
"id-11134201-8224t-mjgmtrb70v0j2a",
"id-11134201-8224p-mjgmttw3yhhdc9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768370805,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26100000000,
"price_min": 26100000000,
"price_max": 26100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"S9-Black",
"S10-Black",
"S10-White",
"S11-White",
"S11-Pink",
"S9-Silver",
"S11-Black",
"S11-Blue",
"S9-Pink",
"S10-Pink"
],
"images": [
"id-11134201-8224u-mjgmtxj62honcc",
"id-11134201-82252-mjgmtygbpyx20a",
"id-11134201-8224o-mjgmtzejndom33",
"id-11134201-82251-mjgmu146xwck71",
"id-11134201-8224q-mjgmu22804qu5f",
"id-11134201-8224z-mjgmu2yet8u98f",
"id-11134201-8224v-mjgmu5ecm22rcc",
"id-11134201-8224w-mjgmu6bxsjr971",
"id-11134201-82251-mjgmu804byme58",
"id-11134201-8224q-mjgmu9o86epw5a"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26100000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395431706983,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26100000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 6",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53554640946,
"shopid": 1666692538,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgmtfndz0ua75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1256,\"model_id\":395431706983,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgmtfndz0ua75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,700005503,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1256,\"model_id\":395431706983,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53554640946",
"debug_info": null
},
{
"item_basic": {
"itemid": 49954675069,
"shopid": 1623695925,
"name": "Fast Delivery [New 2026] Ilv Elektronik Series S10 Max Smartwatch 2.3 Inci Hd Amoled Display Gps Nfc Bluetooth Iphone Call Waterproof Smartwatch Wanita Pria Dan Ganti Wallpaper Jam Tangan Pria Jam Tangan Wanita Jam Tangan Smartwatch Couple",
"label_ids": [
844931064601283,
1049130,
1049131,
822059908662278,
825465608499232
],
"image": "id-11134201-8224o-mjgmuuzed8ud8c",
"images": [
"id-11134201-8224o-mjgmuuzed8ud8c",
"id-11134201-82251-mjgmuvxbvlz8c6",
"id-11134201-82252-mjgmuydk7ojp1a",
"id-11134201-8224s-mjgmuza019tub1",
"id-11134201-8224z-mjgmv1qm3tvm0e",
"id-11134201-8224o-mivar88fsemdc4",
"id-11134201-8224w-mjgmv54rlmh012",
"id-11134201-8224p-mjgmv6u4eadj90",
"id-11134201-82250-mjgmv8iy5fk1ec"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768370875,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26800000000,
"price_min": 26800000000,
"price_max": 26800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Variasi",
"options": [
"S9-Black",
"S10-Black",
"S10-White",
"S11-White",
"S11-Pink",
"S9-Silver",
"S11-Black",
"S11-Blue",
"S9-Pink",
"S10-Pink"
],
"images": [
"id-11134201-8224v-mjgmvbjx3pc697",
"id-11134201-8224o-mjgmvd7uwgzme8",
"id-11134201-8224z-mjgmvewpih3786",
"id-11134201-8224t-mjgmvgm7m4n95a",
"id-11134201-8224r-mjgmvj2r5ds5ae",
"id-11134201-8224s-mjgmvljqk8w3a8",
"id-11134201-8224y-mjgmvo0up5vpfc",
"id-11134201-8224x-mjgmvppgaosn4d",
"id-11134201-8224y-mj411x3xibk088",
"id-11134201-8224t-mjgmvt4hpjiaf2"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Samarinda",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 330431715652,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Levia Store 7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49954675069,
"shopid": 1623695925,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgmuuzed8ud8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1496,\"model_id\":330431715652,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgmuuzed8ud8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049130,1049131,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1496,\"model_id\":330431715652,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49954675069",
"debug_info": null
},
{
"item_basic": {
"itemid": 50004650361,
"shopid": 475189058,
"name": "Samsung Galaxy Watch Ultra 47mm Inter",
"label_ids": [
844931064601283,
1049116,
1049123,
1718093079,
822059908662278,
2048661,
825465608499232,
2048660
],
"image": "id-11134207-82250-mjgmp6w8cgsndb",
"images": [
"id-11134207-82250-mjgmp6w8cgsndb",
"id-11134207-8224u-mjgmp6wegzy8a0",
"id-11134207-8224q-mjgmp6w8b287a9",
"id-11134207-8224y-mjgmp6vzzv9h6d",
"id-11134207-8224s-mjgmp6we2y9w62",
"id-11134207-8224v-mjgmp6widgqv31",
"id-11134207-8224v-mjgmp6wu1gjp17"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768370667,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 345000000000,
"price_min": 345000000000,
"price_max": 345000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Malang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 345000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 292333059306,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 345000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "dapsgadget",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50004650361,
"shopid": 475189058,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mjgmp6w8cgsndb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049123,1718093079,822059908662278,2048661,825465608499232,2048660],\"matched_keywords\":[\"\"],\"merge_rank\":1491,\"model_id\":292333059306,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mjgmp6w8cgsndb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049123,1718093079,822059908662278,2048661,825465608499232,2048660],\"matched_keywords\":[\"\"],\"merge_rank\":1491,\"model_id\":292333059306,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50004650361",
"debug_info": null
},
{
"item_basic": {
"itemid": 41528011454,
"shopid": 204825196,
"name": "Redmi Watch 5 Lite - Tahan Air 5ATM, 150+ Mode Olahraga, Baterai Tahan 18 Hari",
"label_ids": [
2143597,
2018619,
2143613,
1428713,
1718087960,
2103651,
844931064601283,
298463379,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
825465608493600,
1718088045,
298468389
],
"image": "id-11134207-8224w-mjgmq450qsqt4c",
"images": [
"id-11134207-8224w-mjgmq450qsqt4c",
"id-11134207-8224q-mjgmq45er2m934",
"id-11134207-8224z-mjgmq45i2gw0cc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768370691,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Xiaomi",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 69000000000,
"price_min": 69000000000,
"price_max": 69000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "color",
"options": [
"black"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 69000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 375431700467,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 69000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "mayaulfahh",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 41528011454,
"shopid": 204825196,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjgmq450qsqt4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,2018619,2143613,1428713,1718087960,2103651,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2004,\"model_id\":375431700467,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjgmq450qsqt4c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,2018619,2143613,1428713,1718087960,2103651,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":2004,\"model_id\":375431700467,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41528011454",
"debug_info": null
},
{
"item_basic": {
"itemid": 45304670465,
"shopid": 132240270,
"name": "HUAWEI WATCH GT 5 Pro Smartwatch second",
"label_ids": [
1428713,
1718087960,
844931064601283,
1400066568,
1049116,
700000488,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "id-11134207-82252-mjgmgkmq0fevbe",
"images": [
"id-11134207-82252-mjgmgkmq0fevbe"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768370493,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 275000000000,
"price_min": 275000000000,
"price_max": 275000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Mojokerto",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 275000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380431685639,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 275000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Juraganmediaku",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45304670465,
"shopid": 132240270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjgmgkmq0fevbe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1400066568,1049116,700000488,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1782,\"model_id\":380431685639,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjgmgkmq0fevbe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1400066568,1049116,700000488,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1782,\"model_id\":380431685639,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45304670465",
"debug_info": null
},
{
"item_basic": {
"itemid": 46404675008,
"shopid": 262670100,
"name": "Apple Watch Series 3 GPS (2021) Second Orginal, 38mm, Space Gray Aluminum Black Sport",
"label_ids": [
844931064601283,
1049112,
1049133,
822059908662278,
825465608494624,
825465608499232
],
"image": "id-11134207-8224x-mjgln6v0cnwk75",
"images": [
"id-11134207-8224x-mjgln6v0cnwk75",
"id-11134207-82250-mjgln6v000sh21",
"id-11134207-8224t-mjgln6uwltdu47",
"id-11134207-8224w-mjgln6v01fcx2e",
"id-11134207-8224q-mjgln6veik1y6b",
"id-11134207-8224u-mjgln6va58g12e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768370348,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 59900000000,
"price_min": 59900000000,
"price_max": 59900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 59900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 244143672248,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 59900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Soura",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46404675008,
"shopid": 262670100,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjgln6v0cnwk75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1049133,822059908662278,825465608494624,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1716,\"model_id\":244143672248,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjgln6v0cnwk75\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1049133,822059908662278,825465608494624,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1716,\"model_id\":244143672248,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46404675008",
"debug_info": null
},
{
"item_basic": {
"itemid": 54654640836,
"shopid": 1710460748,
"name": "Watch Series 10 38mm Jam Tangan Pintar Olahraga DIY Wallpaper Bluetooth Fitness Blood Pressure Blood Oxygen Sleep Monitoring Sport Wanita Pria Garansi Resmi IOS Android Jam Tangan Alumunium Case",
"label_ids": [
844931064601283,
700005495,
700005490,
822059908662278,
825465608499232
],
"image": "id-11134207-8224o-mjgm9plmgpokac",
"images": [
"id-11134207-8224o-mjgm9plmgpokac",
"id-11134207-8224x-mjgm9plfvbph27",
"id-11134207-82252-mjgm9pmnj56q04",
"id-11134207-8224q-mjgm9pli7ls198",
"id-11134207-8224z-mjgm9plmfb4483",
"id-11134207-82251-mjgm9plj13pef6",
"id-11134207-82250-mjgm9pmj1lvk86",
"id-11134207-8224t-mjgm9plftx5125",
"id-11134207-8224o-mjgm9plefcowe5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768370137,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 29700000000,
"price_min": 29700000000,
"price_max": 29700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "warna",
"options": [
"white",
"pink",
"black"
],
"images": [
"id-11134207-8224y-mjgm9pmq598m2a",
"id-11134207-8224q-mjgm9pmq6nt213",
"id-11134207-82250-mjgm9pmq82dife"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 29700000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435431651071,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 29700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "watch 143",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54654640836,
"shopid": 1710460748,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgm9plmgpokac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005495,700005490,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1190,\"model_id\":435431651071,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgm9plmgpokac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005495,700005490,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1190,\"model_id\":435431651071,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54654640836",
"debug_info": null
},
{
"item_basic": {
"itemid": 47204665450,
"shopid": 1437319556,
"name": "iWatch Seri 10 45MM",
"label_ids": [
1049126,
700005567,
822059908662278,
825465608499232,
1400066568
],
"image": "id-11134207-8224o-mjgme1vdog0543",
"images": [
"id-11134207-8224o-mjgme1vdog0543",
"id-11134207-82252-mjgme1wpy0huc5",
"id-11134207-8224t-mjgme1vg4xs1fe",
"id-11134207-8224q-mjgme1vg6cchdc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768370188,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "new",
"price": 450000000000,
"price_min": 450000000000,
"price_max": 450000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tabanan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 450000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 315432245731,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 450000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "agushofira",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47204665450,
"shopid": 1437319556,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgme1vdog0543\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049126,700005567,822059908662278,825465608499232,1400066568],\"matched_keywords\":[\"\"],\"merge_rank\":1668,\"model_id\":315432245731,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgme1vdog0543\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049126,700005567,822059908662278,825465608499232,1400066568],\"matched_keywords\":[\"\"],\"merge_rank\":1668,\"model_id\":315432245731,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47204665450",
"debug_info": null
},
{
"item_basic": {
"itemid": 44504670453,
"shopid": 280628135,
"name": "Aolon Curve 3 Ultra Smartwatch 45mm Layar AMOLED 60Hz Tombol Kustom Bluetooth Pemantauan Tidur Tahan Air 1ATM Olahraga",
"label_ids": [
700700063,
1000314,
1000653,
1002164,
1016119,
1011692,
2153644,
1518617,
2018618,
298888358,
298938357,
844931064601283,
844931086908638,
298463379,
700005490,
700005495,
1718093079,
822059908662278,
2048661,
825465608494624,
825465608499232,
825465608497696,
2048660,
1718088045,
298468389,
2098629,
2098628,
298938368
],
"image": "id-11134207-8224z-mjgi7710wlc030",
"images": [
"id-11134207-8224z-mjgi7710wlc030",
"id-11134207-8224r-mjgi7710jy8021",
"id-11134207-82250-mjgi7710mrcwf6",
"id-11134207-8224v-mjgi7710lcsg00",
"id-11134207-82251-mjgi7710ts746c",
"id-11134207-8224t-mjgi7710o5xcbb",
"id-11134207-8224s-mjgi7710pkhs36",
"id-11134207-8224o-mjgi7710qz2883",
"id-11134207-8224y-mjgi7710sdmo84"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768370064,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Aolon",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 62900000000,
"price_min": 62900000000,
"price_max": 62900000000,
"price_min_before_discount": 199900000000,
"price_max_before_discount": 199900000000,
"hidden_price_display": null,
"price_before_discount": 199900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-69%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"RoseGold",
"Perak",
"Hitam",
"Logam RoseGold",
"Logam Perak",
"Milan Perak"
],
"images": [
"id-11134207-7ra0p-mb805ca3jba1a8",
"id-11134207-7ra0o-mb805ca3kpuhaf",
"id-11134207-7ra0k-mb805ca3hwpl54",
"id-11134207-7ra0h-mcbfijapjz5xed",
"id-11134207-7ra0i-mcbfijaph611c4",
"id-11134207-7ra0s-mcbfijapiklhd3"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp103RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 798665325723648,
"price": 61900000000,
"strikethrough_price": 199900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1332891314700288,
"discount_text": "-69%",
"model_id": 335431648261,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1332891314700288,
"voucher_code": "SVC-1332891314700288",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1768323600,
"end_time": 1768409999,
"valid_duration": null
},
"groups": [],
"min_spend": 50000000000
},
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp103RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Aolon Indonesia Official Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44504670453,
"shopid": 280628135,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgi7710wlc030\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1000314,1000653,1002164,1016119,1011692,2153644,1518617,2018618,298888358,298938357,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,2048661,825465608494624,825465608499232,825465608497696,2048660,1718088045,298468389,2098629,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1838,\"model_id\":335431648261,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgi7710wlc030\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,1000314,1000653,1002164,1016119,1011692,2153644,1518617,2018618,298888358,298938357,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,2048661,825465608494624,825465608499232,825465608497696,2048660,1718088045,298468389,2098629,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1838,\"model_id\":335431648261,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44504670453",
"debug_info": null
},
{
"item_basic": {
"itemid": 44604670264,
"shopid": 1531387649,
"name": "Nylon Strap for Fitbit Versa 3 4 Band Smart Watch Replacment Soft Breathable Sport Loop Belt Correa Bracelet Fitbit Sense 2 Band",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-8262m-mjgm6td66fwl6c",
"images": [
"sg-11134201-8262m-mjgm6td66fwl6c",
"sg-11134201-82617-mjgm6tmxm8zn53",
"sg-11134201-8262l-mjgm6tx8hkw4d6",
"sg-11134201-8260k-mjgm6u7psq2uda",
"sg-11134201-8261f-mjgm6unufhfmce",
"sg-11134201-82617-mjgm6v3t6876a9",
"sg-11134201-8262g-mjgm6vb8lslgeb",
"sg-11134201-825zn-mjgm6vnbjkzl1a",
"sg-11134201-8260s-mjgm6w3z981z18"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369714,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21510000000,
"price_min": 21510000000,
"price_max": 21510000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Marine Green",
"red black",
"Cargo Khaki",
"flash light",
"Dark Black",
"Indigo",
"Storm gray",
"Cape Cod Blue",
"Neon Lime",
"Red",
"NEW Pride Edition",
"Anchor Gray",
"Rainbow",
"Hyper Grape",
"Sunshine",
"Alaskan Blue",
"Pink sand",
"Pearl",
"Black",
"Flash"
],
"images": [
"sg-11134201-82612-mjgm6zdwnq4n21",
"sg-11134201-8262o-mjgm6z74fxms3c",
"sg-11134201-82634-mjgm6wguk8w72f",
"sg-11134201-82605-mjgm6yuvufbaff",
"sg-11134201-82616-mjgm6zlq0r9j42",
"sg-11134201-8262g-mjgm6vb8lslgeb",
"sg-11134201-8262l-mjgm6tx8hkw4d6",
"sg-11134201-8261r-mjgm6waoi9dx83",
"sg-11134201-82605-mjgm6wo9vll040",
"sg-11134201-82607-mjgm6wu4ay9w16",
"sg-11134201-8260m-mjgm6x0bsv7q58",
"sg-11134201-825zk-mjgm6x677aioe3",
"sg-11134201-8260e-mjgm6xdfuhom64",
"sg-11134201-8260v-mjgm6xkrhreqd5",
"sg-11134201-8261u-mjgm6xsdk4cn58",
"sg-11134201-8261i-mjgm6y0al8g625",
"sg-11134201-825zn-mjgm6y8c0zk687",
"sg-11134201-8261n-mjgm6yggie4n3a",
"sg-11134201-8261v-mjgm6ynqmxadff",
"sg-11134201-8260g-mjgm6z0th05ja6"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland",
"United States"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21510000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 360431626440,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21510000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44604670264,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjgm6td66fwl6c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1830,\"model_id\":360431626440,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjgm6td66fwl6c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1830,\"model_id\":360431626440,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44604670264",
"debug_info": null
},
{
"item_basic": {
"itemid": 57154645263,
"shopid": 203077727,
"name": "Apple watch ultra 2 49mm fullset garansi on",
"label_ids": [
844931064601283,
1049122,
1059152,
1718093079,
822059908662278,
2048660,
2048661,
825465608494624,
825465608499232
],
"image": "id-11134207-8224x-mjgm0ue4otmpdf",
"images": [
"id-11134207-8224x-mjgm0ue4otmpdf",
"id-11134207-8224u-mjgm0ue4rmrpc3",
"id-11134207-8224q-mjgm0udzkt8kee",
"id-11134207-82252-mjgm0uf4e39icd",
"id-11134207-82250-mjgm0uig505cc8",
"id-11134207-8224u-mjgm0ujfg83p9b",
"id-11134207-8224t-mjgm0ujhd1xf27",
"id-11134207-8224w-mjgm0ujz5kw116"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369527,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 860000000000,
"price_min": 860000000000,
"price_max": 860000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 860000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 315432184146,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 860000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Aril_kisara",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57154645263,
"shopid": 203077727,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjgm0ue4otmpdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049122,1059152,1718093079,822059908662278,2048660,2048661,825465608494624,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1025,\"model_id\":315432184146,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjgm0ue4otmpdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049122,1059152,1718093079,822059908662278,2048660,2048661,825465608494624,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1025,\"model_id\":315432184146,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57154645263",
"debug_info": null
},
{
"item_basic": {
"itemid": 52054639760,
"shopid": 1531387649,
"name": "20mm 22mm Magnetic Strap for Huawei Watch GT5 GT4 5Pro 3 46mm Silicone Band for Samsung Galaxy 7 6 5 4 40mm 44mm Sport Bracelet",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-825zo-mjgm2b97ueivfb",
"images": [
"sg-11134201-825zo-mjgm2b97ueivfb",
"sg-11134201-82601-mjgm2bwbpvr81d",
"sg-11134201-82630-mjgm2cija7ltd1",
"sg-11134201-8260b-mjgm2ctv57gm20",
"sg-11134201-8260r-mjgm2dggisckb6",
"sg-11134201-82606-mjgm2dsbp1qea6",
"sg-11134201-8260x-mjgm2dz9ucjrc2",
"sg-11134201-8260e-mjgm2ec0xo1wca",
"sg-11134201-8261x-mjgm2f1feqdj71"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369506,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26340000000,
"price_min": 26340000000,
"price_max": 26340000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"grey orange",
"wine red",
"navy blue",
"pink",
"starlight",
"starlight pink",
"mint",
"midnight",
"black",
"black orange",
"mint starlight",
"starlight orange"
],
"images": [
"sg-11134201-8262o-mjgm2inejh8ie0",
"sg-11134201-82615-mjgm2j3jspokaf",
"sg-11134201-8260e-mjgm2ec0xo1wca",
"sg-11134201-82606-mjgm2dsbp1qea6",
"sg-11134201-8261p-mjgm2fe91b7ra4",
"sg-11134201-82627-mjgm2ft3bdhha1",
"sg-11134201-8262m-mjgm2g8c5dl34c",
"sg-11134201-8261r-mjgm2gldxj4150",
"sg-11134201-825zs-mjgm2gxbu5tz80",
"sg-11134201-82613-mjgm2havu8zpaf",
"sg-11134201-825zp-mjgm2hq553wg60",
"sg-11134201-8260e-mjgm2ia0qn7oc7"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26340000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310432179124,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26340000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52054639760,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjgm2b97ueivfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1353,\"model_id\":310432179124,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjgm2b97ueivfb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1353,\"model_id\":310432179124,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52054639760",
"debug_info": null
},
{
"item_basic": {
"itemid": 56604650167,
"shopid": 1531387649,
"name": "20mm 22mm WatchBand For Amazfit Active/Bip 5/GTS 2/3/4 Mini Strap GTR 2/3/4 42 47mm Milanese Bracelet For Amazfit Bip 3 Pro Band",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608499232
],
"image": "sg-11134201-82635-mjglz5u6qnly6d",
"images": [
"sg-11134201-82635-mjglz5u6qnly6d",
"sg-11134201-8261s-mjglz633gzr8ef",
"sg-11134201-82628-mjglz6bjdx4xa5",
"sg-11134201-82617-mjglz8fxogsnf4",
"sg-11134201-82625-mjglz8ocp340da",
"sg-11134201-82606-mjglz8yij7r9a2",
"sg-11134201-8260a-mjglz95uj4li29",
"sg-11134201-8262d-mjglz9escsn7c1",
"sg-11134201-8262f-mjglz9mmxeyr84"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369354,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27030000000,
"price_min": 27030000000,
"price_max": 27030000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"GOLD",
"black",
"Silver",
"rose gold"
],
"images": [
"sg-11134201-82628-mjglz6bjdx4xa5",
"sg-11134201-82617-mjglz8fxogsnf4",
"sg-11134201-82612-mjglz9smqm0x07",
"sg-11134201-8261u-mjglz9zfp3b43a"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"20mm",
"For Amazfit GTRmini",
"For Amazfit GTS 2e",
"For Amazfit GTS 2",
"For Amazfit GTS 4",
"For Amazfit GTS4mini",
"For Amazfit GTS2mini",
"For Amazfit GTS",
"For Amazfit GTR 42",
"For Amazfit Active",
"For Amazfit Bip",
"For Amazfit Bip3Pro",
"For Amazfit Bip 3",
"22mm",
"For Amazfit GTR 2",
"For Amazfit Bip 5",
"For Amazfit GTR 47",
"For Amazfit GTR3pro",
"For Amazfit GTR 4",
"For Amazfit GTR 3"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27030000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 430431589716,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27030000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56604650167,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82635-mjglz5u6qnly6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1054,\"model_id\":430431589716,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82635-mjglz5u6qnly6d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1054,\"model_id\":430431589716,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56604650167",
"debug_info": null
},
{
"item_basic": {
"itemid": 42128021117,
"shopid": 1531387649,
"name": "Silicone Strap For Samsung Galaxy Watch 8 Watch8 Classic accessories Magnetic Buckle Sports Bracelet 40mm 44mm 46mm No Gaps Band",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-8261x-mjglzwsrd5hi98",
"images": [
"sg-11134201-8261x-mjglzwsrd5hi98",
"sg-11134201-8260j-mjglzwzucmpz8d",
"sg-11134201-8260z-mjglzxavy5muef",
"sg-11134201-8261r-mjglzxo132f782",
"sg-11134201-82622-mjglzy88464m62",
"sg-11134201-8261l-mjglzys4ov7q01",
"sg-11134201-82632-mjglzz8idjwg2a",
"sg-11134201-8261c-mjglzzp002dh00",
"sg-11134201-8260d-mjgm0048g0sh63"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369394,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21970000000,
"price_min": 21970000000,
"price_max": 21970000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"StarlightB",
"GrayB",
"LimeB",
"BlackB",
"Midnight BlueB",
"Dark GreenB",
"Space GreyB",
"WhiteB",
"OrangeB",
"PurpleB"
],
"images": [
"sg-11134201-82622-mjglzy88464m62",
"sg-11134201-8261r-mjglzxo132f782",
"sg-11134201-8262t-mjgm00jw2e4gb3",
"sg-11134201-8260y-mjgm013nx2wwfc",
"sg-11134201-8260b-mjgm01r2k7b772",
"sg-11134201-8262z-mjgm027ug6pwd1",
"sg-11134201-8260u-mjgm02t87e9v50",
"sg-11134201-8261g-mjgm03afqnev8c",
"sg-11134201-8262p-mjgm03suz66fb8",
"sg-11134201-8260x-mjgm0494okxyd7"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Watch 8 44mm",
"Watch 8classic 46mm",
"Watch 8 40mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21970000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 282333011500,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21970000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 42128021117,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjglzwsrd5hi98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1969,\"model_id\":282333011500,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjglzwsrd5hi98\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1969,\"model_id\":282333011500,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42128021117",
"debug_info": null
},
{
"item_basic": {
"itemid": 51954640773,
"shopid": 1531387649,
"name": "22mm 20mm Leather Strap for Huawei Watch GT6/5/GT 4 3 Pro 46mm Silicone Wristband for Amazfit Active 2/Bip 6 5/Galaxy 7 6 5 Belt",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8262t-mjglwdwjuj9h71",
"images": [
"sg-11134201-8262t-mjglwdwjuj9h71",
"sg-11134201-8261o-mjglwe622ubob3",
"sg-11134201-82616-mjglwegjgr2b0d",
"sg-11134201-81zvw-mj2s4d6mdcsi20",
"sg-11134201-8261l-mjglwfnriqyscd",
"sg-11134201-8262s-mjglwfush89056",
"sg-11134201-8262p-mjglwg7k2pzad8",
"sg-11134201-82617-mjglwggbupl3c9",
"sg-11134201-825zq-mjglwgw07rph79"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369224,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21740000000,
"price_min": 21740000000,
"price_max": 21740000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black strap",
"Green strap",
"Midnight blue strap",
"Gray strap",
"Brown strap",
"Beige strap"
],
"images": [
"sg-11134201-8262s-mjglwfush89056",
"sg-11134201-8262t-mjglwdwjuj9h71",
"sg-11134201-82602-mjglwh664phf37",
"sg-11134201-8260t-mjglwhdo7shw7b",
"sg-11134201-8262n-mjglwhmivmyobe",
"sg-11134201-8260a-mjglwhuugnba6c"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Width 20mm",
"Huawei GT5 Pro 46mm",
"Width 22mm",
"Huawei Watch 4 3 Pro",
"Huawei GT3 GT2 Pro",
"Huawei GT6 GT5 46mm",
"Huawei GT4 46mm",
"Samsung 7 6 5 4 40mm",
"Amazfit Active 2",
"Amazfit Bip 6-5",
"Samsung 7 6 5 4 44mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21740000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 400431587457,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21740000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51954640773,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglwdwjuj9h71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1360,\"model_id\":400431587457,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglwdwjuj9h71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1360,\"model_id\":400431587457,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51954640773",
"debug_info": null
},
{
"item_basic": {
"itemid": 45554659803,
"shopid": 1531387649,
"name": "20 22mm Garmin Easy Fit Nylon Strap For Forerunner 255/265/965 Wristband For Active /Vivoactive 4 Bracelet Venu Universal Band",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-8260r-mjglx347udq864",
"images": [
"sg-11134201-8260r-mjglx347udq864",
"sg-11134201-825zu-mjglx3jk16o23e",
"sg-11134201-8261w-mjglx4bl35ky73",
"sg-11134201-82605-mjglx4z309on1e",
"sg-11134201-8262o-mjglx5ikfyf63e",
"sg-11134201-825zn-mjglx6ae1og478",
"sg-11134201-8260u-mjglx6ohvc3nfa",
"sg-11134201-82634-mjglx6yu81l130",
"sg-11134201-8261c-mjglx7lqg7ic8f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369267,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26570000000,
"price_min": 26570000000,
"price_max": 26570000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"black",
"black camouflage",
"deep blue",
"black army green",
"army green",
"black orange",
"orange",
"black brown",
"Beige",
"brown",
"grey blue",
"sky blue"
],
"images": [
"sg-11134201-8261w-mjglx4bl35ky73",
"sg-11134201-825zu-mjglx3jk16o23e",
"sg-11134201-82624-mjglx8awvyf781",
"sg-11134201-8260s-mjglx8uwkzcyc4",
"sg-11134201-8261n-mjglx99q8kjn02",
"sg-11134201-82634-mjglx9xcx1xc76",
"sg-11134201-82606-mjglxavvhzb60a",
"sg-11134201-8260w-mjglxbf2v7yd10",
"sg-11134201-82633-mjglxc67gidf0d",
"sg-11134201-825zw-mjglxd1xoop35d",
"sg-11134201-8260z-mjglxdvpsmx391",
"sg-11134201-8260c-mjglxepgf7k0a9"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26570000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 335431588323,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26570000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45554659803,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260r-mjglx347udq864\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1764,\"model_id\":335431588323,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260r-mjglx347udq864\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1764,\"model_id\":335431588323,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45554659803",
"debug_info": null
},
{
"item_basic": {
"itemid": 29744037342,
"shopid": 1531387649,
"name": "No Gaps Nylon Woven Silicone Strap for Huawei Watch GT6 Pro Smartwatch Quick Fit Band Wristband for Watch GT6 Pro 46mm Bracelet",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8261f-mjgly379h4w24b",
"images": [
"sg-11134201-8261f-mjgly379h4w24b",
"sg-11134201-8261p-mjgly3jw5on48b",
"sg-11134201-8262f-mjgly3y3hszk72",
"sg-11134201-8260c-mjgly4h1do1wc2",
"sg-11134201-82610-mjgly4qiin7o81",
"sg-11134201-82622-mjgly50hg6x0b5",
"sg-11134201-82607-mjgly5f1gs90b3",
"sg-11134201-81ztt-mj0p4ku7wj5s90",
"sg-11134201-82624-mjgly5w0nhfpba"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369303,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 42440000000,
"price_min": 42440000000,
"price_max": 42440000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"red",
"khaki",
"Official Green",
"starlight",
"black",
"dark blue"
],
"images": [
"sg-11134201-82617-mjgly6bvyj2901",
"sg-11134201-8262t-mjgly6lcwhdtee",
"sg-11134201-8261w-mjgly6u0urr76a",
"sg-11134201-81ztt-mj0p4ku7wj5s90",
"sg-11134201-82610-mjgly4qiin7o81",
"sg-11134201-8262s-mjgly644cphj06"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Watch GT6 Pro 46mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 42440000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410431590491,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 42440000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 29744037342,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261f-mjgly379h4w24b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2119,\"model_id\":410431590491,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261f-mjgly379h4w24b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2119,\"model_id\":410431590491,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29744037342",
"debug_info": null
},
{
"item_basic": {
"itemid": 42378021126,
"shopid": 1531387649,
"name": "Ocean Silicone Band for Samsung Galaxy Watch 6 Classic 43mm 47mm/7 FE 6 5 4 40mm 44mm No Gaps Wristband Galaxy 5 Pro 45mm Strap",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-8262x-mjglvs118sn7e2",
"images": [
"sg-11134201-8262x-mjglvs118sn7e2",
"sg-11134201-8260n-mjglvsfs7gn672",
"sg-11134201-8261f-mjglvt0jg6it02",
"sg-11134201-8260f-mjglvtpuanlz9b",
"sg-11134201-82618-mjglvu1nsgzlef",
"sg-11134201-825zw-mjglvucurvup3e",
"sg-11134201-8262r-mjglvurijbpge4",
"sg-11134201-8261f-mjglvvc2d5oj2a",
"sg-11134201-8260m-mjglvvwf65fr65"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369208,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21280000000,
"price_min": 21280000000,
"price_max": 21280000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black black",
"Midnight blue black",
"Orange black",
"Space gray orange",
"Starlight orange",
"Llime Grey",
"Army green Black",
"Black orange",
"Black Red",
"Black Grey",
"White black",
"Black White"
],
"images": [
"sg-11134201-8261r-mjglvzuf3dvp30",
"sg-11134201-82627-mjglw0tl0cg61e",
"sg-11134201-82608-mjglw1fhaq6ccd",
"sg-11134201-8262l-mjglw2i4jf9hb0",
"sg-11134201-825zv-mjglw3miwv7o28",
"sg-11134201-8260g-mjglw4oiqt50b7",
"sg-11134201-825zw-mjglw5ku9vycb9",
"sg-11134201-8261f-mjglvvc2d5oj2a",
"sg-11134201-8260n-mjglvsfs7gn672",
"sg-11134201-8262z-mjglvwsgv94y31",
"sg-11134201-8262w-mjglvxutqcqq62",
"sg-11134201-8261u-mjglvyskvrb87e"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"4 Classic 46mm 42mm",
"Galaxy 4 44mm 40mm",
"6 Classic 47mm 43mm",
"Galaxy 6 44mm 40mm",
"Watch 5 Pro 45mm",
"Galaxy 5 44mm 40mm",
"Galaxy Watch FE",
"Galaxy 7 44mm 40mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21280000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390431582307,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21280000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 42378021126,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262x-mjglvs118sn7e2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1950,\"model_id\":390431582307,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262x-mjglvs118sn7e2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1950,\"model_id\":390431582307,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42378021126",
"debug_info": null
},
{
"item_basic": {
"itemid": 40178026143,
"shopid": 1531387649,
"name": "Silicone Strap for Samsung Galaxy Watch 8/8 Classic Official Bracelet Wristband Correa for Galaxy Watch 8 44mm 40mm Accessories",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8261k-mjglv8wzr2f95e",
"images": [
"sg-11134201-8261k-mjglv8wzr2f95e",
"sg-11134201-8261l-mjglv9ar8umb26",
"sg-11134201-8262f-mjglv9mdn3t353",
"sg-11134201-825zt-mjglv9wrv8jk99",
"sg-11134201-82615-mjglva6yg0ea05",
"sg-11134201-825zm-mjglvafzib5s82",
"sg-11134201-8262h-mjglvanf92is46",
"sg-11134201-8262m-mjglvatbtog738",
"sg-11134201-8262b-mjglvb06p15293"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369181,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 20820000000,
"price_min": 20820000000,
"price_max": 20820000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Fluorescent green",
"Starlight A",
"Light blue",
"Pink sand ",
"Official grey",
"Official grey A",
"Official blue",
"Pink ",
"Yellow",
"Official purple",
"Official black",
"Grey",
"Official black A",
"Dark green",
"Teal",
"White A",
"Orange",
"Royal blue",
"Starlight",
"White",
"Space ash",
"Midnight blue"
],
"images": [
"sg-11134201-8262h-mjglvanf92is46",
"sg-11134201-8261k-mjglv8wzr2f95e",
"sg-11134201-82604-mjglvbbjq4g254",
"sg-11134201-82608-mjglvbrvw0zk62",
"sg-11134201-825zq-mjglvc6liw3q87",
"sg-11134201-8260w-mjglvcmsw0sh9c",
"sg-11134201-8261l-mjglvd4h0av63e",
"sg-11134201-8261l-mjglvdkfsd1g0b",
"sg-11134201-8262c-mjglve08wu0y14",
"sg-11134201-8261f-mjglvei6v1mueb",
"sg-11134201-82624-mjglvezqlwxxac",
"sg-11134201-82607-mjglvfgd2ozm7e",
"sg-11134201-8261y-mjglvg2k90qo51",
"sg-11134201-825zr-mjglvgj08kxsbe",
"sg-11134201-8261q-mjglvh1jnbb765",
"sg-11134201-82635-mjglvhmhenlz36",
"sg-11134201-825zq-mjglvi3pwzcze0",
"sg-11134201-825zz-mjglvimqc8hzd3",
"sg-11134201-8260l-mjglvj6u4r2e25",
"sg-11134201-8261v-mjglvjmb4a9sfe",
"sg-11134201-8260u-mjglvk55asjpdf",
"sg-11134201-8261a-mjglvkp5yxom95"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"ML",
"SM"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 20820000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420431578546,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 20820000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40178026143,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261k-mjglv8wzr2f95e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2089,\"model_id\":420431578546,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261k-mjglv8wzr2f95e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2089,\"model_id\":420431578546,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40178026143",
"debug_info": null
},
{
"item_basic": {
"itemid": 53904639676,
"shopid": 1531387649,
"name": "Quick Fit For Garmin 20mm22mm 26mm Band Weaves Nylon Loop Magnetic Correa For Garmin Fenix 5 tinct 2X Fenix 3 Strap Watchband",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-82619-mjglshu6z30j74",
"images": [
"sg-11134201-82619-mjglshu6z30j74",
"sg-11134201-8260f-mjglsi1r4m4nac",
"sg-11134201-8260l-mjglsib2988xc3",
"sg-11134201-82634-mjglsihtavpjee",
"sg-11134201-8261h-mjglsiu0c5q943",
"sg-11134201-8261u-mjglsizy74ea96",
"sg-11134201-825zs-mjglsj8kzbb78b",
"sg-11134201-82624-mjglsjfw8kxyd7",
"sg-11134201-825zs-mjglsjo4fdvke8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369041,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 84300000000,
"price_min": 84300000000,
"price_max": 84300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Light new rainbow",
"Black",
"Interblack graphite",
"Dark olive green",
"Space grey",
"Black color",
"Camouflage rainbow",
"Official rainbow"
],
"images": [
"sg-11134201-82634-mjglsihtavpjee",
"sg-11134201-82624-mjglsjfw8kxyd7",
"sg-11134201-82634-mjglsjuvzapw13",
"sg-11134201-8262a-mjglsk3qg4cnc8",
"sg-11134201-82612-mjglska9ggef2c",
"sg-11134201-8260x-mjglskhxh05j4b",
"sg-11134201-8262q-mjglskpstptwa7",
"sg-11134201-8262s-mjglskx8eux3e6"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm",
"22mm",
"26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 84300000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380431564868,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 84300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53904639676,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82619-mjglshu6z30j74\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1237,\"model_id\":380431564868,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82619-mjglshu6z30j74\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1237,\"model_id\":380431564868,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53904639676",
"debug_info": null
},
{
"item_basic": {
"itemid": 49204670052,
"shopid": 1722003388,
"name": "Fitbit Versa 2 Health and Fitness Smartwatch with Heart Rate, Music, Alexa Built-In, Sleep and Swim Tracking, Black/Carbon",
"label_ids": [
844931064601283,
1059151,
1049112,
822059908662278,
825465608499232
],
"image": "sg-11134201-825zk-mjgltbd0vxmta6",
"images": [
"sg-11134201-825zk-mjgltbd0vxmta6",
"sg-11134201-825zv-mjgltcadhhj674",
"sg-11134201-8261q-mjgltcrldc7a2a",
"sg-11134201-8262j-mjgltdb2neo14a",
"sg-11134201-8261a-mjgltdzekphe26",
"sg-11134201-8260c-mjglteqkaryd8e",
"sg-11134201-82630-mjgltf7w7cp08c",
"sg-11134201-8262r-mjgltfue2k1x7e",
"sg-11134201-8260p-mjgltgxl91c790"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369085,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 172816600000,
"price_min": 172816600000,
"price_max": 172816600000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Versa2-Black",
"Versa2 SE-Rose",
"Versa2 SE-Black",
"Versa2-Rose",
"Versa2-Grey"
],
"images": [
"sg-11134201-8262r-mjgltfue2k1x7e",
"sg-11134201-8260p-mjgltgxl91c790",
"sg-11134201-8260k-mjglthncvh1i18",
"sg-11134201-825zm-mjglti3vcxkyf9",
"sg-11134201-82602-mjgltijghg5cc6"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 172816600000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445431580538,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 172816600000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "hi1wxh52jz",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49204670052,
"shopid": 1722003388,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zk-mjgltbd0vxmta6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059151,1049112,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1536,\"model_id\":445431580538,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zk-mjgltbd0vxmta6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059151,1049112,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1536,\"model_id\":445431580538,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49204670052",
"debug_info": null
},
{
"item_basic": {
"itemid": 40528006556,
"shopid": 1722003388,
"name": "NEW Zeblaze Stratos 4 GPS Smart Watch 1.43 AMOLED Display Built-in Compass Barometric Altimeter Flashlight Voice Call Smartwatch",
"label_ids": [
844931064601283,
1059151,
1049112,
822059908662278,
825465608499232
],
"image": "sg-11134201-8262t-mjglse2jyyvbb3",
"images": [
"sg-11134201-8262t-mjglse2jyyvbb3",
"sg-11134201-8261p-mjglsebxlkhsbf",
"sg-11134201-82633-mjglsenor3t0da",
"sg-11134201-8260b-mjglsexix8n706",
"sg-11134201-8261c-mjglsfckum83e3",
"sg-11134201-8262k-mjglsfnp7vgi02",
"sg-11134201-82606-mjglsfzyd05eb8",
"sg-11134201-8262a-mjglsg7gsq9u9e",
"sg-11134201-8261s-mjglsghx1wjled"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768369036,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 178513300000,
"price_min": 178513300000,
"price_max": 178513300000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Abyss Black",
"Electric Orange"
],
"images": [
"sg-11134201-8262a-mjglsg7gsq9u9e",
"sg-11134201-8261s-mjglsghx1wjled"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 178513300000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310432154784,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 178513300000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "hi1wxh52jz",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzAuMTRfe2IxMWJhM2FmNDg1NTdlOWFiNzliZjFkNTE0NzU4YzAwOjAyMDAwMDVjOWI3YmMyZTc6MDEwMDAxOTU1NGY1YzBlZX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjQ5MDI0NzI1MTc=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40528006556,
"shopid": 1722003388,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglse2jyyvbb3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059151,1049112,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2066,\"model_id\":310432154784,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglse2jyyvbb3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059151,1049112,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":2066,\"model_id\":310432154784,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40528006556",
"debug_info": null
},
{
"item_basic": {
"itemid": 58004640585,
"shopid": 1531387649,
"name": "Official Silicone Strap for Samsung Galaxy Watch 8 44mm 40mm/8 Classic 46mm Band Breathable Wristband Sport Bracelet Accessories",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8260o-mjglof224y69a8",
"images": [
"sg-11134201-8260o-mjglof224y69a8",
"sg-11134201-82603-mjglof9dv479b0",
"sg-11134201-8260v-mjglofk5l7urda",
"sg-11134201-8260r-mjglofv9u9dt86",
"sg-11134201-8262y-mjglog4mexon68",
"sg-11134201-82611-mjglogcj64n506",
"sg-11134201-82625-mjglognq9r7odc",
"sg-11134201-8262l-mjgloh0vydj429",
"sg-11134201-8261k-mjglohfl4feqbd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768368857,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 20360000000,
"price_min": 20360000000,
"price_max": 20360000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Light blue",
"Royal blue",
"Space ash",
"Dark green",
"Midnight blue",
"Yellow",
"Official grey A",
"Official grey",
"Starlight A",
"Fluorescent green",
"Pink sand ",
"Grey",
"Orange",
"Official black A",
"Teal",
"Pink ",
"Official black",
"Official purple",
"White",
"White A",
"Starlight",
"Official blue"
],
"images": [
"sg-11134201-82603-mjglof9dv479b0",
"sg-11134201-82611-mjglogcj64n506",
"sg-11134201-825zs-mjgloho0g8p343",
"sg-11134201-8260k-mjglohxodmo25c",
"sg-11134201-8261j-mjgloi827pqfc2",
"sg-11134201-8262g-mjgloirj6jnl51",
"sg-11134201-82619-mjgloj10bh8n70",
"sg-11134201-8261p-mjgloja78flz67",
"sg-11134201-825zw-mjglojksyayrcd",
"sg-11134201-82626-mjglojunbf2b6c",
"sg-11134201-8260q-mjglok549vk763",
"sg-11134201-8260q-mjglokfbplhice",
"sg-11134201-82627-mjgloko5h6gw3f",
"sg-11134201-82617-mjglokxwhjb763",
"sg-11134201-8261m-mjglol6i6ebp54",
"sg-11134201-82627-mjglolfnq6tfc6",
"sg-11134201-8262t-mjglolpzyolg4a",
"sg-11134201-8262d-mjglolyix4p343",
"sg-11134201-8260g-mjglom9u47bab2",
"sg-11134201-82606-mjglomhk78qr0f",
"sg-11134201-82630-mjglomqh7ev5f5",
"sg-11134201-8261l-mjglomyc1v5z99"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"ML",
"SM"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 20360000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 138454964054,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 20360000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 58004640585,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260o-mjglof224y69a8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":966,\"model_id\":138454964054,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260o-mjglof224y69a8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":966,\"model_id\":138454964054,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_58004640585",
"debug_info": null
},
{
"item_basic": {
"itemid": 49804659645,
"shopid": 1531387649,
"name": "sney 20mm Halloween Series Printed Strap for Samsung Galaxy Watch 7/6/5 40mm 44mm Band Replaceable Bracelet for Xiaomi Amazfit",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8260a-mjglp0mwyi2o14",
"images": [
"sg-11134201-8260a-mjglp0mwyi2o14",
"sg-11134201-8262w-mjglp1z1hslfcd",
"sg-11134201-825zp-mjglp2u4i5fq13",
"sg-11134201-8262e-mjglp486q682e2",
"sg-11134201-82608-mjglp5632ebqfd",
"sg-11134201-8260z-mjglp6794kxvb0",
"sg-11134201-82600-mjglp7flhlhe1e",
"sg-11134201-82619-mjglp8mbbm6ea4",
"sg-11134201-825zy-mjglp9jsem81d6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768368896,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26570000000,
"price_min": 26570000000,
"price_max": 26570000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"021",
"024",
"025",
"023",
"022",
"028",
"029",
"027",
"026",
"032",
"031",
"030"
],
"images": [
"sg-11134201-825zy-mjglp9jsem81d6",
"sg-11134201-8260a-mjglp0mwyi2o14",
"sg-11134201-8262w-mjglp1z1hslfcd",
"sg-11134201-82613-mjglpaf1p62o99",
"sg-11134201-82605-mjglpb4tfthi6a",
"sg-11134201-8262e-mjglpciytnuqf1",
"sg-11134201-82617-mjglpd5t6cxvb4",
"sg-11134201-825zr-mjglpdux8f7q5c",
"sg-11134201-825zv-mjglpenqytj800",
"sg-11134201-825zk-mjglpfb9bfgj97",
"sg-11134201-8261q-mjglpfyuqx34ef",
"sg-11134201-82610-mjglpgy01czlc7"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"20MM",
"22MM"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26570000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410431567273,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26570000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49804659645,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260a-mjglp0mwyi2o14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1503,\"model_id\":410431567273,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260a-mjglp0mwyi2o14\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1503,\"model_id\":410431567273,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49804659645",
"debug_info": null
},
{
"item_basic": {
"itemid": 45104670104,
"shopid": 1531387649,
"name": "New Zeblaze Btalk 3 GPS Smartwatch 1.43\" AMOLED Screen Dual Straps Make/Answer Phone Calls Heart Rate SpO2 Stress Tracking Watch",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-8260a-mjglou22q5fkf8",
"images": [
"sg-11134201-8260a-mjglou22q5fkf8",
"sg-11134201-8262h-mjgloudfpu6d5c",
"sg-11134201-8262i-mjglouo3xipyfb",
"sg-11134201-8260l-mjglov1tlbsyaa",
"sg-11134201-82628-mjglovc7wb9d26",
"sg-11134201-82611-mjglovre1e6f7d",
"sg-11134201-825zv-mjglow2qwtmu4f",
"sg-11134201-8261f-mjglowenki6b3b",
"sg-11134201-8262m-mjglowv3fuo34f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768368870,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 384450000000,
"price_min": 384450000000,
"price_max": 384450000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 384450000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 272332995584,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 384450000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45104670104,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260a-mjglou22q5fkf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1795,\"model_id\":272332995584,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260a-mjglou22q5fkf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1795,\"model_id\":272332995584,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45104670104",
"debug_info": null
},
{
"item_basic": {
"itemid": 56304640487,
"shopid": 1531387649,
"name": "Crazy Horse Leather band for Samsung Galaxy Watch 7/6/5/4/FE 18mm 20mm 22mm straps retro Bracelet for Huawei watch GT 5-4-3-pro",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8261x-mjglnihi44xw30",
"images": [
"sg-11134201-8261x-mjglnihi44xw30",
"sg-11134201-82604-mjglnispssg33d",
"sg-11134201-8262t-mjglniz0ov7ke6",
"sg-11134201-8261p-mjglnj6tqnsw27",
"sg-11134201-82617-mjglnjf6yo0455",
"sg-11134201-8260f-mjghy3rnsv7rb2",
"sg-11134201-8261v-mjglnju2dibmfd",
"sg-11134201-8260d-mjglnk538cg570",
"sg-11134201-825zo-mjglnkcwbjlx3f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768368808,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27260000000,
"price_min": 27260000000,
"price_max": 27260000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"01 black",
"07 green",
"04 gray",
"05 blue",
"06 red",
"03 brown",
"02 deep brown"
],
"images": [
"sg-11134201-825zo-mjglnkcwbjlx3f",
"sg-11134201-8260f-mjghy3rnsv7rb2",
"sg-11134201-8260f-mjghy41qa70jdf",
"sg-11134201-8260c-mjglnkpnvmrk82",
"sg-11134201-825zl-mjglnkwitr0ha2",
"sg-11134201-825zn-mjglnl3q800739",
"sg-11134201-8261o-mjglnlag94oycb"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm watch band",
"22mm watch band",
"18mm watch band"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27260000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 350431558048,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27260000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56304640487,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjglnihi44xw30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1079,\"model_id\":350431558048,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjglnihi44xw30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1079,\"model_id\":350431558048,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56304640487",
"debug_info": null
},
{
"item_basic": {
"itemid": 53204645165,
"shopid": 1531387649,
"name": "Silicone Strap For Samsung Galaxy Watch 7 Ultra 47mm Band Accessories Correa Sport Bracelet For Galaxy Watch 7 Ultra Watchband",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-82608-mjglmltucbno8a",
"images": [
"sg-11134201-82608-mjglmltucbno8a",
"sg-11134201-8262r-mjglmmekkh6vfe",
"sg-11134201-825zs-mjglmmwo3k0500",
"sg-11134201-8262b-mjglmn6dz6di33",
"sg-11134201-8262p-mjglmnfmhq1379",
"sg-11134201-8261j-mjglmnz20kxt67",
"sg-11134201-8261a-mjglmoj3qnev41",
"sg-11134201-82626-mjglmossiwase6",
"sg-11134201-8260k-mjglmpai8q2ob9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768368777,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26110000000,
"price_min": 26110000000,
"price_max": 26110000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Red",
"SkyUS",
"Black",
"OrangeS",
"WhiteS",
"Orange Red",
"Royal blue",
"Green",
"MGreen",
"Midnight blue",
"Yellow",
"BarbiePS",
"Light blue",
"Emma Orange",
"Grey",
"AGreen",
"Pink",
"Brown",
"Purple"
],
"images": [
"sg-11134201-825zz-mjglmslp0umfc6",
"sg-11134201-82601-mjglmsz8oc8w19",
"sg-11134201-82615-mjglmtectqmdd4",
"sg-11134201-8262k-mjglmtrjohz5d3",
"sg-11134201-825zn-mjglmu4i9gxu7a",
"sg-11134201-8262t-mjglmugkum8357",
"sg-11134201-8262y-mjglmutg2scmbe",
"sg-11134201-8262l-mjglmv4kwxz5d5",
"sg-11134201-82602-mjglmvh4ihac3e",
"sg-11134201-8261h-mjglmvvqptl1c9",
"sg-11134201-8262h-mjglmw9pgveoe0",
"sg-11134201-82616-mjglmwqy94at81",
"sg-11134201-825zs-mjglmx1rcdtu1f",
"sg-11134201-8261v-mjglmxc9o1s309",
"sg-11134201-8262p-mjglmnfmhq1379",
"sg-11134201-82608-mjglmltucbno8a",
"sg-11134201-8261f-mjglmppdhwjlb7",
"sg-11134201-8262t-mjglmrwru0at64",
"sg-11134201-82621-mjglms9e79xh9f"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Watch Ultra 47mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26110000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395431565609,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26110000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53204645165,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82608-mjglmltucbno8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1273,\"model_id\":395431565609,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82608-mjglmltucbno8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1273,\"model_id\":395431565609,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53204645165",
"debug_info": null
},
{
"item_basic": {
"itemid": 52304640530,
"shopid": 1531387649,
"name": "Candy Strap For Apple Watch band 44mm 40mm 41mm 45mm 38/42mm emovable link bracelet iwatch series 9/8/7/SE 6 5 4 3 ultra 2 49mm",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8262y-mjgllfmdg9a8d4",
"images": [
"sg-11134201-8262y-mjgllfmdg9a8d4",
"sg-11134201-82613-mjgllg6xh2ipa2",
"sg-11134201-825zr-mjgllgtim9l274",
"sg-11134201-82623-mjglli2tmmf8c3",
"sg-11134201-8262s-mjgllis3gmbk95",
"sg-11134201-8260j-mjglljarmpz705",
"sg-11134201-8262q-mjglljqqg8av54",
"sg-11134201-8261u-mjgllkevwcuc5b",
"sg-11134201-8261e-mjgllkyj3xmv5b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768368722,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27950000000,
"price_min": 27950000000,
"price_max": 27950000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Pine green 09",
"Black 12",
"Midnight 11",
"Yellow 06",
"turquoise 05",
"Orange 08",
"Lalic 07",
"Blue 02",
"White 01",
"Pink sand 04",
"light cyan 03",
"transparent",
"dark green 10"
],
"images": [
"sg-11134201-8262q-mjglljqqg8av54",
"sg-11134201-8260j-mjglljarmpz705",
"sg-11134201-825zx-mjgllle1gmpxfa",
"sg-11134201-8262y-mjglllvwpypxbc",
"sg-11134201-8262g-mjgllmh7be9wd9",
"sg-11134201-8262n-mjgllmxk7zls3c",
"sg-11134201-8262w-mjgllngkn5kz8b",
"sg-11134201-82620-mjgllo14fmki52",
"sg-11134201-8260y-mjgllokg0kjo95",
"sg-11134201-8260j-mjgllp3bfzeq3a",
"sg-11134201-82607-mjgllpk1f3er9e",
"sg-11134201-825zs-mjgllq0b0c1w09",
"sg-11134201-8261t-mjgllql1l4p0fe"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"49mm-45mm-44mm-42mm",
"41mm-40mm-38 mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27950000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 262333210403,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27950000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52304640530,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgllfmdg9a8d4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1331,\"model_id\":262333210403,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgllfmdg9a8d4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1331,\"model_id\":262333210403,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52304640530",
"debug_info": null
},
{
"item_basic": {
"itemid": 51854639654,
"shopid": 1531387649,
"name": "Nylon Watchband For Samsung Galaxy Watch 8 40/44mm Strap Adjustable Elasticity Bracelet For Galaxy Watch 8 classic Accessories",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232
],
"image": "sg-11134201-8261r-mjglk4eeclxfd0",
"images": [
"sg-11134201-8261r-mjglk4eeclxfd0",
"sg-11134201-8262u-mjglk4pjulmr6e",
"sg-11134201-8262u-mjglk58tei2sdc",
"sg-11134201-8262i-mjglk5nk0iyv6d",
"sg-11134201-8260y-mjglk67ljm6b2a",
"sg-11134201-8260i-mjglk6q9wqo6da",
"sg-11134201-8260g-mjglk79mntoi7f",
"sg-11134201-8261c-mjglk7nc4ni83b",
"sg-11134201-8262s-mjglk83l651i4c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768368654,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 22200000000,
"price_min": 22200000000,
"price_max": 22200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"22-Black1",
"09-Pink-Sand",
"01-Green-Arrow",
"02-Bohemia-purple",
"35-Bohemia-balck",
"11-Black",
"12-Army-Green",
"05-White",
"36-brown-cheetah",
"21-pink-sand1"
],
"images": [
"sg-11134201-8260y-mjglk67ljm6b2a",
"sg-11134201-8262u-mjglk4pjulmr6e",
"sg-11134201-825zt-mjglk8cfln9d0f",
"sg-11134201-8260e-mjglk8idw26c00",
"sg-11134201-8260q-mjglk8pn8gedbd",
"sg-11134201-8262n-mjglk93uuepxc2",
"sg-11134201-8261v-mjglk9gqw4cm1c",
"sg-11134201-8261p-mjglk9nvy1oife",
"sg-11134201-825zs-mjglk9xfxipu6f",
"sg-11134201-82607-mjglka8cf2tj9d"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Watch 8 40 44mm",
"Watch 8 Classic"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 22200000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385431555356,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 22200000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51854639654,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261r-mjglk4eeclxfd0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1372,\"model_id\":385431555356,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261r-mjglk4eeclxfd0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1372,\"model_id\":385431555356,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51854639654",
"debug_info": null
},
{
"item_basic": {
"itemid": 50654639677,
"shopid": 1531387649,
"name": "22mm 20mm Engraved strap For Samsung Galaxy Watch 6 43mm/4/5/pro/Active2 Leopard silicone Bracelet Huawei gt2 2e 20mm watch Band",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608499232
],
"image": "sg-11134201-82621-mjglj37s2t5185",
"images": [
"sg-11134201-82621-mjglj37s2t5185",
"sg-11134201-8260v-mjglj3evuc5he5",
"sg-11134201-8261n-mjglj3p7t1j5cb",
"sg-11134201-82620-mjglj42awyddeb",
"sg-11134201-8261d-mjglj4ikz08w68",
"sg-11134201-8261l-mjglj4y951j7cb",
"sg-11134201-8260s-mjglj58xmlms98",
"sg-11134201-8260r-mjglj5utkdtzdc",
"sg-11134201-82609-mjglj69nrmyq49"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768368605,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21970000000,
"price_min": 21970000000,
"price_max": 21970000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Light blue",
"Starlight",
"Midnight blue",
"Milk tea",
"Black",
"wine red",
"Gray",
"Pine green",
"Brown",
"Lavender"
],
"images": [
"sg-11134201-8260s-mjglj58xmlms98",
"sg-11134201-8261d-mjglj4ikz08w68",
"sg-11134201-8260g-mjglj6hswu0x5b",
"sg-11134201-8260b-mjglj6u5iz9ce1",
"sg-11134201-8262h-mjglj778oao28f",
"sg-11134201-82628-mjglj7hvwy6fbb",
"sg-11134201-825zo-mjglj7up9ngj66",
"sg-11134201-8260q-mjglj85xjf298b",
"sg-11134201-8260h-mjglj8hn90xt54",
"sg-11134201-82608-mjglj8t7ukub06"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21970000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310432128378,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21970000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50654639677,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82621-mjglj37s2t5185\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1453,\"model_id\":310432128378,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82621-mjglj37s2t5185\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1453,\"model_id\":310432128378,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50654639677",
"debug_info": null
},
{
"item_basic": {
"itemid": 45204659730,
"shopid": 1531387649,
"name": "20/22mm Milanese Strap For Samsung Galaxy Watch 7 6 5 4 40 44mm Gear S3 Magnetic Steel Bracelet For Huawei GT5 4 3 Band",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-8261u-mjglkhwacum850",
"images": [
"sg-11134201-8261u-mjglkhwacum850",
"sg-11134201-82608-mjglki5kpeysf4",
"sg-11134201-8262i-mjglkib06tqffc",
"sg-11134201-82622-mjglkimyg1za19",
"sg-11134201-8262w-mjglkiwymi9s8a",
"sg-11134201-8260n-mjglkjeo6o785a",
"sg-11134201-825zy-mjglkk1dp8g179",
"sg-11134201-82607-mjglkk9oyyo598",
"sg-11134201-82623-mjglkkpyir5u99"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768368672,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26340000000,
"price_min": 26340000000,
"price_max": 26340000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"14-Gary",
"02-Black",
"08-Red",
"04-Rose Gold",
"07-Blue",
"03-Rose Pink",
"01-Silver",
"05-Gold",
"24-Starlight"
],
"images": [
"sg-11134201-8260n-mjglkjeo6o785a",
"sg-11134201-8262w-mjglkiwymi9s8a",
"sg-11134201-82612-mjglkkzmrf9dcb",
"sg-11134201-82617-mjglkllzv9c7b9",
"sg-11134201-8262w-mjglkltqnkzk31",
"sg-11134201-825zv-mjglkm5t5x5062",
"sg-11134201-8260k-mjglkmskz9qaa1",
"sg-11134201-825zk-mjglkn2zegw2a9",
"sg-11134201-8261b-mjglknf8kykn61"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm Watchband",
"22mm Watchband"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26340000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435431550819,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26340000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45204659730,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261u-mjglkhwacum850\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1790,\"model_id\":435431550819,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261u-mjglkhwacum850\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1790,\"model_id\":435431550819,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45204659730",
"debug_info": null
},
{
"item_basic": {
"itemid": 48204660529,
"shopid": 1531387649,
"name": "Silicone Charging Bracket for Galaxy Watch Ultra 2025 47mm Samsung Galaxy Watch 8 7 6 5 40/44mm 8 Classic 46mm 5Pro Storage Seat",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
1718093079
],
"image": "sg-11134201-8262t-mjglhdhowa9z8c",
"images": [
"sg-11134201-8262t-mjglhdhowa9z8c",
"sg-11134201-82616-mjglhds8s3cw5b",
"sg-11134201-8260e-mjglhef2e3nkf8",
"sg-11134201-8261m-mjglhenope6b95",
"sg-11134201-825zk-mjglhezqpfd1ba",
"sg-11134201-8261v-mjglhfacmbk498",
"sg-11134201-82618-mjglhfkgfeo1d0",
"sg-11134201-8261y-mjglhftuitj87e",
"sg-11134201-8262x-mjglhgelx5oj04"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768368522,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26340000000,
"price_min": 26340000000,
"price_max": 26340000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Red",
"Black",
"White"
],
"images": [
"sg-11134201-8261y-mjglhftuitj87e",
"sg-11134201-82616-mjglhds8s3cw5b",
"sg-11134201-82627-mjglhgwg8ow49c"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Watch 6 40mm 44mm",
"Watch 5 40mm 44mm",
"Watch 8 40mm 44mm",
"Watch 7 40mm 44mm",
"Watch 6 Classic 43mm",
"Watch 6 Classic 47mm",
"Watch Ultra 47mm",
"Watch 5 Pro 45mm",
"Watch 8 Classic 46mm",
"Watch Ultra 2025"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26340000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425431546778,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26340000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48204660529,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglhdhowa9z8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1595,\"model_id\":425431546778,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjglhdhowa9z8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1595,\"model_id\":425431546778,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48204660529",
"debug_info": null
},
{
"item_basic": {
"itemid": 43278016100,
"shopid": 1531387649,
"name": "Silicone Correa for Samsung Galaxy Watch Ultra Strap 47mm Bracelet Galaxy Watch 7/6 44mm 40mm",
"label_ids": [
844931064601283,
1718093079,
1059154,
1059152,
822059908662278,
825465608499232
],
"image": "sg-11134201-82629-mjgkjycxj9j9b7",
"images": [
"sg-11134201-82629-mjgkjycxj9j9b7",
"sg-11134201-825zm-mjgkjz1cgq2scd",
"sg-11134201-82630-mjgkk08cveo63c",
"sg-11134201-8261q-mjgkk10niyv561",
"sg-11134201-8261n-mjgkk2d1p62o3a",
"sg-11134201-82602-mjgkk3x4h2pt30",
"sg-11134201-82609-mjgkk512ytj417",
"sg-11134201-8260g-mjgkk5f0nzlsa8",
"sg-11134201-825zt-mjgkk6614feo09"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366972,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24960000000,
"price_min": 24960000000,
"price_max": 24960000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Blue",
"black",
"starlight",
"white",
"Orange"
],
"images": [
"sg-11134201-8261n-mjgkk2d1p62o3a",
"sg-11134201-82602-mjgkk3x4h2pt30",
"sg-11134201-825zk-mjgkk79vpr0g6d",
"sg-11134201-825zt-mjgkk8gfnnya4a",
"sg-11134201-8260p-mjgkk9omseth69"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"galaxy watch ultra",
"Galaxy 6 40mm",
"Galaxy 7 40mm",
"Galaxy 6 44mm",
"Galaxy 7 44mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24960000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410431452439,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24960000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Almakkah Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43278016100,
"shopid": 1531387649,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82629-mjgkjycxj9j9b7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1908,\"model_id\":410431452439,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82629-mjgkjycxj9j9b7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1908,\"model_id\":410431452439,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43278016100",
"debug_info": null
},
{
"item_basic": {
"itemid": 44554654814,
"shopid": 1542929270,
"name": "22 26mm Sport Nylon Strap for Garmin Fenxi 8 47/51mm Enduro 3 2 Quick Fit Replacement Wristband for Garmin Fenix E/7X/6X/5X Band",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8262d-mjgk8kzvt9fma0",
"images": [
"sg-11134201-8262d-mjgk8kzvt9fma0",
"sg-11134201-82614-mjgk8ljr6ex013",
"sg-11134201-8261p-mjgk8m0nxxq9e7",
"sg-11134201-8260z-mjgk8mg99fk29b",
"sg-11134201-8262r-mjgk8mopg8hw29",
"sg-11134201-8260r-mjgk8nahg3r43a",
"sg-11134201-8260j-mjgk8nima5fp5b",
"sg-11134201-825zl-mjgk8o1psbusbd",
"sg-11134201-8262a-mjgk8oslslc26d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366432,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 77550000000,
"price_min": 77550000000,
"price_max": 77550000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"BlackOrange",
"BlackRed",
"BlackOrange-A",
"OrangeBlack"
],
"images": [
"sg-11134201-825zl-mjgk8o1psbusbd",
"sg-11134201-8262a-mjgk8oslslc26d",
"sg-11134201-8260i-mjgk8pbtmosi94",
"sg-11134201-8262l-mjgk8ppi2zuv7c"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"26mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 77550000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405431428617,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 77550000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44554654814,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262d-mjgk8kzvt9fma0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1833,\"model_id\":405431428617,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262d-mjgk8kzvt9fma0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1833,\"model_id\":405431428617,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44554654814",
"debug_info": null
},
{
"item_basic": {
"itemid": 56204640142,
"shopid": 1542929270,
"name": "18mm 20mm 22mm Silicone Magnetic Loop Strap For Samsung Galaxy Wat 7/6/5/4 Active 2 Amazfit Bracelet HUAWEI Wat GT 2e 3 Band",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-82612-mjgk5o26v7yfd7",
"images": [
"sg-11134201-82612-mjgk5o26v7yfd7",
"sg-11134201-8261j-mjgk5oiui1vp17",
"sg-11134201-8260r-mjgk5p18olqd59",
"sg-11134201-8262k-mjgk5pd8kveo13",
"sg-11134201-8262k-mjgk5pz554p047",
"sg-11134201-8262q-mjgk5qclil1dca",
"sg-11134201-8260r-mjgk5qq72whv26",
"sg-11134201-8262o-mjgk5r5i0r9cff",
"sg-11134201-8260c-mjgk5rjy7s3lc5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366300,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 33160000000,
"price_min": 33160000000,
"price_max": 33160000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"B",
"StarH",
"W",
"Stone",
"Pu",
"O",
"MidU",
"Gr",
"Y",
"Star"
],
"images": [
"sg-11134201-8262o-mjgk5r5i0r9cff",
"sg-11134201-8260c-mjgk5rjy7s3lc5",
"sg-11134201-8261h-mjgk5s39oide0b",
"sg-11134201-8261n-mjgk5smegzyef0",
"sg-11134201-8260e-mjgk5t4vxl3468",
"sg-11134201-8260k-mjgk5u0me58i64",
"sg-11134201-825zr-mjgk5uvgth52e3",
"sg-11134201-825zk-mjgk5v8td9tzc9",
"sg-11134201-82607-mjgk5vov9r0h91",
"sg-11134201-8262q-mjgk5w6uxt6tcf"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"18mm watch band",
"22mm watch band",
"20mm watch band"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 33160000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395431414072,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 33160000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56204640142,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82612-mjgk5o26v7yfd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1086,\"model_id\":395431414072,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82612-mjgk5o26v7yfd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1086,\"model_id\":395431414072,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56204640142",
"debug_info": null
},
{
"item_basic": {
"itemid": 44804654725,
"shopid": 1542929270,
"name": "Tempered Glass+Case For Amazfit T REX 3 Screen Protector Hard PC Bumper Protective Cover for Huami Amazfit T-REX3 Accessories",
"label_ids": [
844931064601283,
1718093079,
1059154,
1059152,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-82604-mjgk75d0ndhicf",
"images": [
"sg-11134201-82604-mjgk75d0ndhicf",
"sg-11134201-8260m-mjgk75xfoe0w9f",
"sg-11134201-8260i-mjgk76gn09oh90",
"sg-11134201-8260l-mjgk76yhlmvba3",
"sg-11134201-82617-mjgk77h40m4g68",
"sg-11134201-825zz-mjgk780yiryfcb",
"sg-11134201-8262b-mjgk78fx3cp1df",
"sg-11134201-825zk-mjgk78uet5ok86",
"sg-11134201-82612-mjgk798dvg1yb8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366364,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 20510000000,
"price_min": 20510000000,
"price_max": 20510000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Clean",
"Black"
],
"images": [
"sg-11134201-825zk-mjgk78uet5ok86",
"sg-11134201-82612-mjgk798dvg1yb8"
],
"properties": [],
"type": 0
},
{
"name": "Dial Diameter",
"options": [
"For Amazfit T REX 3"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 20510000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 315432004821,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 20510000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44804654725,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82604-mjgk75d0ndhicf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1815,\"model_id\":315432004821,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82604-mjgk75d0ndhicf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059154,1059152,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1815,\"model_id\":315432004821,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44804654725",
"debug_info": null
},
{
"item_basic": {
"itemid": 43628016025,
"shopid": 181707083,
"name": "Redmi watch 5 active",
"label_ids": [
844931086908638,
700005500,
1059156,
822059908662278,
825465608499232,
825465608493600
],
"image": "id-11134207-8224q-mjgjnrfzkzk65f",
"images": [
"id-11134207-8224q-mjgjnrfzkzk65f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366312,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Xiaomi Youpin",
"cmt_count": 0,
"flag": 65536,
"cb_option": 0,
"item_status": "new",
"price": 33000000000,
"price_min": 33000000000,
"price_max": 33000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surakarta (Solo)",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 33000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 325431427204,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 33000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Dawam Abdillah",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43628016025,
"shopid": 181707083,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjgjnrfzkzk65f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,700005500,1059156,822059908662278,825465608499232,825465608493600],\"matched_keywords\":[\"\"],\"merge_rank\":1893,\"model_id\":325431427204,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjgjnrfzkzk65f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,700005500,1059156,822059908662278,825465608499232,825465608493600],\"matched_keywords\":[\"\"],\"merge_rank\":1893,\"model_id\":325431427204,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43628016025",
"debug_info": null
},
{
"item_basic": {
"itemid": 54004640135,
"shopid": 1542929270,
"name": "Nylon+Silicone 22mm 26mm Sports Watband For Garmin Fenix 8 Pro E 7X 6 Tactix 8 Forerunner 970 Epix Gen2 G2 Quick Release Strap",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-8261k-mjgk4idg3j7l4f",
"images": [
"sg-11134201-8261k-mjgk4idg3j7l4f",
"sg-11134201-825zw-mjgk4jptonwkd4",
"sg-11134201-8261q-mjgk4kjieeps92",
"sg-11134201-8261a-mjgk4m3gos1s66",
"sg-11134201-82624-mjgk4mxqxwcha4",
"sg-11134201-8261x-mjgk4oafc5xfa4",
"sg-11134201-8260g-mjgk4pd89zie9f",
"sg-11134201-8260e-mjgk4q674ft208",
"sg-11134201-8260g-mjgk4qliyk1wff"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366252,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 28560000000,
"price_min": 28560000000,
"price_max": 28560000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Rock Green",
"Army Green",
"Yellow",
"Black",
"Green Black",
"Grey Black",
"Orange",
"Army Green Black",
"Midnight Blue Black",
"Orange Black"
],
"images": [
"sg-11134201-8260e-mjgk4q674ft208",
"sg-11134201-8260g-mjgk4qliyk1wff",
"sg-11134201-8261z-mjgk4qyzaneu0e",
"sg-11134201-8262q-mjgk4rocofeq26",
"sg-11134201-82618-mjgk4s3risjq17",
"sg-11134201-8260a-mjgk4ss7p79j13",
"sg-11134201-8261d-mjgk4t9j3h1gf9",
"sg-11134201-8260b-mjgk4ttrklc7eb",
"sg-11134201-8262u-mjgk4ubngcue3a",
"sg-11134201-82610-mjgk4uuhbkzm1f"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"1Pcs QuickFit 22mm",
"1Pcs QuickFit 26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 28560000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435431426254,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 28560000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54004640135,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261k-mjgk4idg3j7l4f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1230,\"model_id\":435431426254,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261k-mjgk4idg3j7l4f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1230,\"model_id\":435431426254,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54004640135",
"debug_info": null
},
{
"item_basic": {
"itemid": 52804640177,
"shopid": 1542929270,
"name": "Quick Release Band 22mm 26mm For Garmin Fenix 8 Pro E 7 7X 6 6X Forerunner 970 965 955 Solar 945 Enduro 3 2 Nylon Velcro Strap",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-825zw-mjgk3uxcaubr91",
"images": [
"sg-11134201-825zw-mjgk3uxcaubr91",
"sg-11134201-8261b-mjgk3vxpg2yu56",
"sg-11134201-82616-mjgk3wx3mscjbe",
"sg-11134201-8260i-mjgk3xg0p72b46",
"sg-11134201-825zo-mjgk3y2ykb9g6d",
"sg-11134201-8260s-mjgk3ymtglxh20",
"sg-11134201-825zo-mjgk3zomkwlf9d",
"sg-11134201-825zq-mjgk407bao7b8b",
"sg-11134201-8261e-mjgk40phtwqt97"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366219,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 47650000000,
"price_min": 47650000000,
"price_max": 47650000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"a-Grey White",
"a-Black",
"b-Black",
"b-Blue",
"a-Army green",
"a-Grey",
"b-Army Green",
"b-Grey"
],
"images": [
"sg-11134201-825zq-mjgk407bao7b8b",
"sg-11134201-8261e-mjgk40phtwqt97",
"sg-11134201-8261x-mjgk41wdlhc13e",
"sg-11134201-8262g-mjgk42m3dwck24",
"sg-11134201-8262a-mjgk437deayt17",
"sg-11134201-8261v-mjgk43xtwwzm20",
"sg-11134201-8260y-mjgk4563qmmd53",
"sg-11134201-8261l-mjgk45uixx4x45"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"1PCS QuickFit 22mm",
"1PCS QuickFit 26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 47650000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 157996021610,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 47650000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52804640177,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zw-mjgk3uxcaubr91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1303,\"model_id\":157996021610,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zw-mjgk3uxcaubr91\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1303,\"model_id\":157996021610,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52804640177",
"debug_info": null
},
{
"item_basic": {
"itemid": 52004640067,
"shopid": 1542929270,
"name": "26 20 22mm Nylon Wat Band For Garmin Fenix 7X 6X Pro 7 7S 6 6S 5X 5 5S Plus/Venu 2 Plus Hook and Loop Quick Dry Strap",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-825zt-mjgk3d5o77yd2a",
"images": [
"sg-11134201-825zt-mjgk3d5o77yd2a",
"sg-11134201-825zk-mjgk3dhog35va1",
"sg-11134201-82601-mjgk3ebfnqbnf6",
"sg-11134201-8260l-mjgk3eoer08y43",
"sg-11134201-82604-mjgk3f2zfh8l25",
"sg-11134201-8260p-mjgk3fgnj3lt2b",
"sg-11134201-8261x-mjgk3g0nglj762",
"sg-11134201-8260u-mjgk3gd64f7pd0",
"sg-11134201-8261g-mjgk3gop7a4m70"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366196,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21430000000,
"price_min": 21430000000,
"price_max": 21430000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black",
"Grey",
"YGR",
"Rainbow",
"McU",
"BH",
"MU",
"McH",
"R",
"McGr"
],
"images": [
"sg-11134201-8260u-mjgk3gd64f7pd0",
"sg-11134201-8261g-mjgk3gop7a4m70",
"sg-11134201-8260j-mjgk3h8gjpja8f",
"sg-11134201-825zw-mjgk3htj0xdydd",
"sg-11134201-82600-mjgk3it4uy2u87",
"sg-11134201-82615-mjgk3jt6f37mf9",
"sg-11134201-82622-mjgk3kvc7wg4de",
"sg-11134201-8260i-mjgk3lyf6oe930",
"sg-11134201-82632-mjgk3mvb5r7ka6",
"sg-11134201-82620-mjgk3nt5bd3958"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"22mm",
"26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21430000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 365431417625,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21430000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52004640067,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zt-mjgk3d5o77yd2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1355,\"model_id\":365431417625,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zt-mjgk3d5o77yd2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1355,\"model_id\":365431417625,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52004640067",
"debug_info": null
},
{
"item_basic": {
"itemid": 51804640126,
"shopid": 39921517,
"name": "Aibro Ultra Nexus 5G",
"label_ids": [
2018619,
844931086908638,
844931064601283,
298463379,
1059152,
700005489,
1718093079,
822059908662278,
834403089593352,
825465608497696,
2048660,
2048661,
840955085144628,
825465608493600,
825465608494624,
825465608499232,
1119699,
1718088045,
298468389
],
"image": "id-11134207-8224z-mjgdvuhxawhv76",
"images": [
"id-11134207-8224z-mjgdvuhxawhv76",
"id-11134207-8224w-mjgdvuhxcb2b0a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366193,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "AIBRO",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 100000000000,
"price_min": 100000000000,
"price_max": 100000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6venb-mjgk0d0a6xa9f3.16000081768366048.mp4",
"thumb_url": "id-11110105-6venb-mjgk0d0a6xa9f3_cover",
"duration": 58,
"version": 2,
"vid": "id-11110105-6venb-mjgk0d0a6xa9f3",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6venb-mjgk0d0a6xa9f3.16000081768366048.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mjgk0d0a6xa9f3.16000081768366048.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mjgk0d0a6xa9f3.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 100000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435431425606,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 100000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HomiTech Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51804640126,
"shopid": 39921517,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,834403089593352,825465608497696,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1374,\"model_id\":435431425606,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,834403089593352,825465608497696,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1374,\"model_id\":435431425606,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51804640126",
"debug_info": null
},
{
"item_basic": {
"itemid": 51354639252,
"shopid": 276030541,
"name": "Aibro Ultra Nexus 5G",
"label_ids": [
2018619,
2068629,
298938357,
844931064601283,
844931086908638,
298463379,
1059152,
1049122,
1718093079,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
825465608493600,
825465608494624,
2098629,
1718088045,
298468389,
2098628,
298938368
],
"image": "id-11134207-8224z-mjgdvuhxawhv76",
"images": [
"id-11134207-8224z-mjgdvuhxawhv76",
"id-11134207-8224w-mjgdvuhxcb2b0a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366147,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "AIBRO",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 100000000000,
"price_min": 100000000000,
"price_max": 100000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvm-mjgk1mbv2m817c.16000081768366108.mp4",
"thumb_url": "id-11110105-6vdvm-mjgk1mbv2m817c_cover",
"duration": 58,
"version": 2,
"vid": "id-11110105-6vdvm-mjgk1mbv2m817c",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvm-mjgk1mbv2m817c.16000081768366108.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mjgk1mbv2m817c.16000081768366108.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvm-mjgk1mbv2m817c.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp333RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 100000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 118776787985,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 100000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp333RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "csvzio00v_",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51354639252,
"shopid": 276030541,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,298938357,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,2098629,1718088045,298468389,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1403,\"model_id\":118776787985,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,298938357,844931064601283,844931086908638,298463379,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,2098629,1718088045,298468389,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":1403,\"model_id\":118776787985,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51354639252",
"debug_info": null
},
{
"item_basic": {
"itemid": 50904629640,
"shopid": 1542929270,
"name": "24mm Silicone Wat Strap For Suunto 7 9 Spartan Sport Belt Wristbands Suunto 9 baro Smart Watband Replacement Bracelet Correa",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8261d-mjgk2mx3pgqvd5",
"images": [
"sg-11134201-8261d-mjgk2mx3pgqvd5",
"sg-11134201-8261a-mjgk2n95qwhv90",
"sg-11134201-82626-mjgk2ngwdlvo0c",
"sg-11134201-8262i-mjgk2np8wbus73",
"sg-11134201-82606-mjgk2nxiudxe9f",
"sg-11134201-8262t-mjgk2o63a96o4d",
"sg-11134201-82601-mjgk2ogjgkqvfb",
"sg-11134201-8262h-mjgk2oocgyrp95",
"sg-11134201-8262q-mjgk2oxbi805ec"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366153,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 35920000000,
"price_min": 35920000000,
"price_max": 35920000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"03",
"09",
"07",
"05",
"10",
"06",
"02",
"04",
"08",
"01"
],
"images": [
"sg-11134201-8262h-mjgk2oocgyrp95",
"sg-11134201-8262q-mjgk2oxbi805ec",
"sg-11134201-82601-mjgk2p741czk1d",
"sg-11134201-8262t-mjgk2pg6b5s719",
"sg-11134201-8261v-mjgk2pqm7oxs9f",
"sg-11134201-8262p-mjgk2q06wg7501",
"sg-11134201-8260d-mjgk2q8q20ap69",
"sg-11134201-8261i-mjgk2qijn2maf3",
"sg-11134201-8261s-mjgk2qtrd3422a",
"sg-11134201-82620-mjgk2r2bykn94e"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"For suunto 9",
"For suunto 9 baro",
"For Suunto 7",
"Sport wrist hr baro",
"For suunto D5",
"24mm",
"Suunto spartan sport"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35920000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 335431425378,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35920000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50904629640,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjgk2mx3pgqvd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1433,\"model_id\":335431425378,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjgk2mx3pgqvd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1433,\"model_id\":335431425378,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50904629640",
"debug_info": null
},
{
"item_basic": {
"itemid": 46204659203,
"shopid": 57810643,
"name": "Aibro Ultra Nexus 5G",
"label_ids": [
2018619,
47,
844931086908638,
844931064601283,
298463379,
1049122,
1059152,
822059908662278,
2048661,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
2048660,
1718093079,
1119699,
1718088045,
298468389
],
"image": "id-11134207-8224z-mjgdvuhxawhv76",
"images": [
"id-11134207-8224z-mjgdvuhxawhv76",
"id-11134207-8224w-mjgdvuhxcb2b0a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366249,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "AIBRO",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 100000000000,
"price_min": 100000000000,
"price_max": 100000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven1-mjgjyxkbypdwd2.16000081768365981.mp4",
"thumb_url": "id-11110105-6ven1-mjgjyxkbypdwd2_cover",
"duration": 58,
"version": 2,
"vid": "id-11110105-6ven1-mjgjyxkbypdwd2",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven1-mjgjyxkbypdwd2.16000081768365981.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mjgjyxkbypdwd2.16000081768365981.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven1-mjgjyxkbypdwd2.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 100000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425431421832,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 100000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "marcelcell",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46204659203,
"shopid": 57810643,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,47,844931086908638,844931064601283,298463379,1049122,1059152,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,1718093079,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1727,\"model_id\":425431421832,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjgdvuhxawhv76\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,47,844931086908638,844931064601283,298463379,1049122,1059152,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,1718093079,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":1727,\"model_id\":425431421832,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46204659203",
"debug_info": null
},
{
"item_basic": {
"itemid": 43978016011,
"shopid": 1542929270,
"name": "TPU Protective Cover for Garmin Quatix 8 51mm 47mm AMOLED Soft Silicone Bumper Case Accessories for Fenix8 47 51 Solar Protector",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-8262q-mjgk0w8zcg784e",
"images": [
"sg-11134201-8262q-mjgk0w8zcg784e",
"sg-11134201-8262o-mjgk0wshhdl3dc",
"sg-11134201-825zx-mjgk0x8u6znqb8",
"sg-11134201-8262f-mjgk0xomaups48",
"sg-11134201-82614-mjgk0y55n7r815",
"sg-11134201-82604-mjgk0zmub2mfeb",
"sg-11134201-8262f-mjgk103bteyp2b",
"sg-11134201-8261y-mjgk10hjb5kxe7",
"sg-11134201-82606-mjgk10xet9mp79"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768366073,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 22120000000,
"price_min": 22120000000,
"price_max": 22120000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": [
"sg-11134201-8261y-mjgk10hjb5kxe7"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"Fenix 8 51mm AMOLED",
"Fenix 8 47mm AMOLED",
"Fenix 8 51mm Solar",
"Fenix 8 47mm Solar",
"Quatix 8 51mm AMOLED",
"Quatix 8 47mm AMOLED"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 22120000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 400431411436,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 22120000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43978016011,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgk0w8zcg784e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1873,\"model_id\":400431411436,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgk0w8zcg784e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1873,\"model_id\":400431411436,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43978016011",
"debug_info": null
},
{
"item_basic": {
"itemid": 57804634551,
"shopid": 1542929270,
"name": "Two-Tone Sports Silicone Strap For Samsung Galaxy Wat Ultra Marine Band Bracelet For GalaxyWat Ultra 47mm Watband",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-825zu-mjgjyssavmyt71",
"images": [
"sg-11134201-825zu-mjgjyssavmyt71",
"sg-11134201-825zl-mjgjyt6f4sg30f",
"sg-11134201-82607-mjgjytmdd9tsf2",
"sg-11134201-825zr-mjgjytxympdu1f",
"sg-11134201-8262q-mjgjyufrcow225",
"sg-11134201-8262a-mjgjyux0stfod5",
"sg-11134201-82631-mjgjyvlyja4g45",
"sg-11134201-8262i-mjgjyvyrumf494",
"sg-11134201-82622-mjgjywvdyepvcc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365996,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 20510000000,
"price_min": 20510000000,
"price_max": 20510000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Army Green Black",
"Dark Gray Orange",
"Green Gray",
"Coal Ash Black",
"Black Gray",
"Black Red",
"White Black",
"Black Orange",
"Starlight Orange",
"Orange Black",
"Orange",
"White",
"Gray",
"Black",
"Dark Blue",
"Army Green",
"Red"
],
"images": [
"sg-11134201-8262i-mjgjyvyrumf494",
"sg-11134201-82622-mjgjywvdyepvcc",
"sg-11134201-8260e-mjgjyxjvjcav4d",
"sg-11134201-82630-mjgjyy9pchdsa5",
"sg-11134201-82632-mjgjyz3goc9154",
"sg-11134201-8262d-mjgjyzq3gj5z3f",
"sg-11134201-8262u-mjgjz0ieus5h84",
"sg-11134201-82616-mjgjz1bsomipe8",
"sg-11134201-82602-mjgjz24b2cqo58",
"sg-11134201-8261g-mjgjz43ney9s65",
"sg-11134201-82607-mjgjz5gvh4hw47",
"sg-11134201-8261s-mjgjz6xpjojp2d",
"sg-11134201-8261y-mjgjz7s7hkao78",
"sg-11134201-8261x-mjgjz9b5ombq63",
"sg-11134201-8261j-mjgjzb4f6eww1b",
"sg-11134201-8260k-mjgjzbvgq6mf6f",
"sg-11134201-8261w-mjgjzdbs2i2v4b"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 20510000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390431415344,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 20510000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57804634551,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjgjyssavmyt71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":973,\"model_id\":390431415344,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjgjyssavmyt71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":973,\"model_id\":390431415344,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57804634551",
"debug_info": null
},
{
"item_basic": {
"itemid": 54704634478,
"shopid": 1542929270,
"name": "22/26mm Nylon Quick Release Strap for Garmin Fenix 7 7X Pro 6 6X 5 5X Plus QuickFit Strap tinctive 2 Replacement Bracelet",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-8262w-mjgjx7kvqozrda",
"images": [
"sg-11134201-8262w-mjgjx7kvqozrda",
"sg-11134201-825zy-mjgjx81zgah2ca",
"sg-11134201-8262q-mjgjx90sswlg4e",
"sg-11134201-8260x-mjgjx9xrl7gn4f",
"sg-11134201-82611-mjgjxalpp7nlf2",
"sg-11134201-825zp-mjgjxbcqcoav13",
"sg-11134201-8260c-mjgjxc6o5pfn5f",
"sg-11134201-8262r-mjgjxdktnrif5d",
"sg-11134201-82622-mjgjxeq9lwch32"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365916,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 46040000000,
"price_min": 46040000000,
"price_max": 46040000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Be",
"Black Orange",
"sky blue",
"black",
"Orange",
"Brown",
"dark blue",
"army green",
"Black camouflage",
"Black Green"
],
"images": [
"sg-11134201-8262b-mjgjxkghnax01c",
"sg-11134201-8260l-mjgjxlnc09he99",
"sg-11134201-82630-mjgjxmp9m3gha5",
"sg-11134201-82604-mjgjxnvsnpc7b5",
"sg-11134201-8262r-mjgjxdktnrif5d",
"sg-11134201-82622-mjgjxeq9lwch32",
"sg-11134201-8262a-mjgjxfb5aqyp02",
"sg-11134201-8260l-mjgjxgbq0hs15a",
"sg-11134201-8261o-mjgjxi5haux3ae",
"sg-11134201-8260d-mjgjxjdw4d8j4f"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"22mm",
"26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 46040000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 315431979410,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 46040000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54704634478,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262w-mjgjx7kvqozrda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1185,\"model_id\":315431979410,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262w-mjgjx7kvqozrda\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1185,\"model_id\":315431979410,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54704634478",
"debug_info": null
},
{
"item_basic": {
"itemid": 47104649635,
"shopid": 1542929270,
"name": "Nylon Band For Garmin quatix 8 47mm 51mm/tinct 3 2X/Forerunner 970 965 955 945/MARQ/Fenix 7 QuickFit 26mm 22mm Strap Bracelet",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8262z-mjgjyaduroqub5",
"images": [
"sg-11134201-8262z-mjgjyaduroqub5",
"sg-11134201-82624-mjgjyax4cy69b6",
"sg-11134201-8260c-mjgjyc81fhmp3b",
"sg-11134201-8260t-mjgjyduej8jpde",
"sg-11134201-82627-mjgjyf8n46bqec",
"sg-11134201-825zk-mjgjygqdyneu3f",
"sg-11134201-8260i-mjgjyhrygk5h1d",
"sg-11134201-8262u-mjgjyj27sz5x92",
"sg-11134201-8260z-mjgjyjwasvepe2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365959,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 55470000000,
"price_min": 55470000000,
"price_max": 55470000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black Gray",
"Orange",
"Army Green",
"StarLight"
],
"images": [
"sg-11134201-8262u-mjgjyj27sz5x92",
"sg-11134201-8260z-mjgjyjwasvepe2",
"sg-11134201-8260n-mjgjykj6tyww3f",
"sg-11134201-8262b-mjgjyle0eebl06"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"QuickFit 22mm",
"QuickFit 26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 55470000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425431394854,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 55470000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47104649635,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgjyaduroqub5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1676,\"model_id\":425431394854,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgjyaduroqub5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1676,\"model_id\":425431394854,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47104649635",
"debug_info": null
},
{
"item_basic": {
"itemid": 56404639051,
"shopid": 1542929270,
"name": "BERNY Quick Release 20m Full Titanium Wat Bands with Titanium Clasp Bracelet for BERNY T2566MS/T2576MS Wat Replace",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8261c-mjgjv7uu5a0z15",
"images": [
"sg-11134201-8261c-mjgjv7uu5a0z15",
"sg-11134201-82614-mjgjv8k5um1077",
"sg-11134201-825zy-mjgjv93k7abnc9",
"sg-11134201-825zm-mjgjva43ec5f89",
"sg-11134201-8260q-mjgjvaqivta824",
"sg-11134201-8260v-mjgjvbdndq11d8",
"sg-11134201-82623-mjgjvbxzg0zpc4",
"sg-11134201-82601-mjgjvcjeddl085",
"sg-11134201-82614-mjgjvdghdc7789"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365809,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 209800000000,
"price_min": 209800000000,
"price_max": 209800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Titanium-strap"
],
"images": [
"sg-11134201-8261c-mjgjv7uu5a0z15"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 209800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345431406024,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 209800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56404639051,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261c-mjgjv7uu5a0z15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1069,\"model_id\":345431406024,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261c-mjgjv7uu5a0z15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1069,\"model_id\":345431406024,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56404639051",
"debug_info": null
},
{
"item_basic": {
"itemid": 51954629750,
"shopid": 1542929270,
"name": "GLENAW Design New Men's Wat Graffiti Art Stainless amond Steel Luminous Waterproof Meanical Wat Men's Clock GL8722",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-8260i-mjgjw9psrvgn35",
"images": [
"sg-11134201-8260i-mjgjw9psrvgn35",
"sg-11134201-825zs-mjgjwac0rnk4db",
"sg-11134201-8261o-mjgjwaqt4xl041",
"sg-11134201-82622-mjgjwbjupo1y61",
"sg-11134201-825zn-mjgjwc6bq0hs1c",
"sg-11134201-82609-mjgjwcmr0agz96",
"sg-11134201-825zw-mjgjwd9f708xdc",
"sg-11134201-8262v-mjgjwdpmmznm33",
"sg-11134201-8262u-mjgjwe5efm6e00"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365856,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 1429720000000,
"price_min": 1429720000000,
"price_max": 1429720000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Gold",
"Silver"
],
"images": [
"sg-11134201-8262v-mjgjwdpmmznm33",
"sg-11134201-8262u-mjgjwe5efm6e00"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1429720000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390431402038,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1429720000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51954629750,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260i-mjgjw9psrvgn35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1362,\"model_id\":390431402038,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260i-mjgjw9psrvgn35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1362,\"model_id\":390431402038,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51954629750",
"debug_info": null
},
{
"item_basic": {
"itemid": 51704634580,
"shopid": 1435403675,
"name": "Jam Tangan Pintar WATCH 4 PRO SUIT - Bluetooth Calling, Wireless Charging, Tahan Air, Baterai 7-14 Hari, Layar Bundar Besar, 7 Strap Silikon, Kotak Hadiah - Hitam, Perak, 28mm |TY80OJMG|",
"label_ids": [
844931064601283,
1718093079,
700005490,
700005523,
822059908662278,
825465608499232
],
"image": "sg-11134275-8260b-mjgie70lrxmu8e",
"images": [
"sg-11134275-8260b-mjgie70lrxmu8e",
"sg-11134275-8260b-mjgie70lrxmu8e",
"sg-11134275-82601-mjgie6z1cqv8ba",
"sg-11134275-8260d-mjgie72utf5z95",
"sg-11134275-8262j-mjgie6yo7dhj5c",
"sg-11134275-8260r-mjgie71mc3r6dd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365843,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 30201600000,
"price_min": 30201600000,
"price_max": 30201600000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "color",
"options": [
"Hitam",
"Silver"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Serang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 30201600000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355431401727,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 30201600000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ctagd4j6zr",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51704634580,
"shopid": 1435403675,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-8260b-mjgie70lrxmu8e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,700005523,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1381,\"model_id\":355431401727,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-8260b-mjgie70lrxmu8e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,700005490,700005523,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1381,\"model_id\":355431401727,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51704634580",
"debug_info": null
},
{
"item_basic": {
"itemid": 51554629685,
"shopid": 1542929270,
"name": "QuickFit 26mm 22mm Two Tone Nylon Strap For Garmin Fenix E 8 7X 7 6 6X/Epix Pro Gen 2 51mm 47mm/Tactix Wat Band Accessories",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-825zz-mjgjvp4lz01s51",
"images": [
"sg-11134201-825zz-mjgjvp4lz01s51",
"sg-11134201-82603-mjgjvr6g6l1ecb",
"sg-11134201-8262o-mjgjvs6aitj733",
"sg-11134201-8262u-mjgjvssz7sp190",
"sg-11134201-82625-mjgjvtr5z4010b",
"sg-11134201-8261v-mjgjvuncwhdv0c",
"sg-11134201-825zt-mjgjvvvsf8cm23",
"sg-11134201-82620-mjgjvxdpcvltd7",
"sg-11134201-8261x-mjgjvy8cbvgidc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365841,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 42360000000,
"price_min": 42360000000,
"price_max": 42360000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Dark Gray",
"Blue Grey",
"Army green",
"Black",
"Rainbow color",
"Yellowish-white"
],
"images": [
"sg-11134201-82620-mjgjvxdpcvltd7",
"sg-11134201-8261x-mjgjvy8cbvgidc",
"sg-11134201-8260d-mjgjvz4pyuiu84",
"sg-11134201-82615-mjgjw015ilts86",
"sg-11134201-8262f-mjgjw1brnr479d",
"sg-11134201-82613-mjgjw23ggqv716"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"26mm-Fenix 3",
"26mm-Fenix 8 51mm",
"22mm-instinct",
"22mm-Epix Pro 47mm",
"22mm-Fenix 5 5lus",
"22mm-Fenix 7 7Pro",
"Quick fit 22mm",
"22mm-Fenix 6 6Pro",
"26mm-Epix Pro 51mm",
"26mm-Descent Mk1",
"26mm-Fenix5X 5X Plus",
"26mm-Fenix 7X 7X Pro",
"26mm-Fenix 6X 6X PRO",
"Quick fit 26mm",
"22mm-Descent G1",
"22mm-Fenix 8 47mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 42360000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 350431398185,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 42360000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTU4LjE0N197YjExYmEzYWY0ODU1N2ViNDRmZmYzYmNkMjYzNDYwMDA6MDIwMDAwNTJmNmJkNjJlODowMTAwMDEyZjczNzgyZTE3fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDQwMjQ3NDE2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51554629685,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zz-mjgjvp4lz01s51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1392,\"model_id\":350431398185,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zz-mjgjvp4lz01s51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":1392,\"model_id\":350431398185,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51554629685",
"debug_info": null
},
{
"item_basic": {
"itemid": 42728006268,
"shopid": 1542929270,
"name": "22mm 26mm Stainless Steel Wat Strap For Garmin Fenix 7 7X 6 6X Pro 5 5X Plus Quick Fit Metal Bracelet Forerunner 935 945 Band",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608497696,
825465608499232,
1718093079
],
"image": "sg-11134201-8262m-mjgjuwlrjrb97c",
"images": [
"sg-11134201-8262m-mjgjuwlrjrb97c",
"sg-11134201-82608-mjgjuwx6hog58a",
"sg-11134201-825zz-mjgjux6c8hs304",
"sg-11134201-8261c-mjgjuxehkr9cd6",
"sg-11134201-825zp-mjgjuxnlkd1f03",
"sg-11134201-8261n-mjgjuxwxbjeqc2",
"sg-11134201-8262q-mjgjuy5xycchd6",
"sg-11134201-8262f-mjgjuygmmxab3b",
"sg-11134201-825zm-mjgjuytlq5mp21"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365792,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 31320000000,
"price_min": 31320000000,
"price_max": 31320000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"style 2 black",
"package 2",
"package 3",
"package 4",
"style 1 black",
"package 1",
"style 1 silver",
"style 2 silver"
],
"images": [
"sg-11134201-82611-mjgjv0cctkaoae",
"sg-11134201-8262f-mjgjuygmmxab3b",
"sg-11134201-825zm-mjgjuytlq5mp21",
"sg-11134201-8261w-mjgjuz5qccg777",
"sg-11134201-82630-mjgjuzip02yv3e",
"sg-11134201-82608-mjgjuzs9ko3pba",
"sg-11134201-8260m-mjgjv04gc45ic5",
"sg-11134201-82608-mjgjv0rtko3rc6"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"22mm",
"26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 31320000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370431397510,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 31320000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 42728006268,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjgjuwlrjrb97c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":399,\"model_id\":370431397510,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjgjuwlrjrb97c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":399,\"model_id\":370431397510,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42728006268",
"debug_info": null
},
{
"item_basic": {
"itemid": 54654634595,
"shopid": 1542929270,
"name": "Wat Strap For Apple Wat With Leopard Pattern Soft Silicone Quick Release Durable Breathable Sport Smartwat Band Men Women",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-8262r-mjgjsse8mtqdbc",
"images": [
"sg-11134201-8262r-mjgjsse8mtqdbc",
"sg-11134201-8262i-mjgjssptmgw3d1",
"sg-11134201-8261n-mjgjst64dszmca",
"sg-11134201-8262t-mjgjstps0sg47a",
"sg-11134201-82625-mjgjsu88i9dw79",
"sg-11134201-8261x-mjgjsus6ivwme5",
"sg-11134201-825zp-mjgjsvnis3r6a7",
"sg-11134201-82622-mjgjsw3gjqbn5b",
"sg-11134201-8260h-mjgjswcsrpxd70"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365696,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 23040000000,
"price_min": 23040000000,
"price_max": 23040000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Milk Tea Coffee",
"Black Green",
"PInk Gray",
"Red Black",
"White Black",
"Black Red",
"Starlight Black",
"Gray Orange",
"Milk Tea Black",
"Starlight Milk Tea",
"Gray Black",
"Blue Black"
],
"images": [
"sg-11134201-82622-mjgjsw3gjqbn5b",
"sg-11134201-8260h-mjgjswcsrpxd70",
"sg-11134201-825zr-mjgjswkg4flv15",
"sg-11134201-8262o-mjgjswu7zncza1",
"sg-11134201-82620-mjgjsx23hxqdc5",
"sg-11134201-8261p-mjgjsx9qdu6f98",
"sg-11134201-8261i-mjgjsxhwdxqc83",
"sg-11134201-82631-mjgjsxu1o1s449",
"sg-11134201-82631-mjgjsy2s1ds4b4",
"sg-11134201-825zs-mjgjsyc7f5dv9f",
"sg-11134201-8260r-mjgjsym65mo21c",
"sg-11134201-82626-mjgjsyuptekld1"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 23040000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 297332884989,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 23040000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54654634595,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjgjsse8mtqdbc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":401,\"model_id\":297332884989,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjgjsse8mtqdbc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":401,\"model_id\":297332884989,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54654634595",
"debug_info": null
},
{
"item_basic": {
"itemid": 52204639042,
"shopid": 1542929270,
"name": "20mm 22mm Camouflage Nylon Strap for Samsung Galaxy Wat 7 6 5 4 40/44mm 6Classic 5Pro Bracelet for Huawei GT5 4Pro 3 46mm Band",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608497696,
825465608499232,
1718093079
],
"image": "sg-11134201-8260j-mjgjta0fc935ba",
"images": [
"sg-11134201-8260j-mjgjta0fc935ba",
"sg-11134201-82618-mjgjtahdl72f55",
"sg-11134201-82606-mjgjtb9rr6de8d",
"sg-11134201-82606-mjgjtbtb3ncx19",
"sg-11134201-8262j-mjgjtcm6v4sga1",
"sg-11134201-82618-mjgjtd8azuo27c",
"sg-11134201-825zx-mjgjtdty483q70",
"sg-11134201-8260k-mjgjtebtkjd3f0",
"sg-11134201-82618-mjgjtf2mhvk39a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365724,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 34310000000,
"price_min": 34310000000,
"price_max": 34310000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"digit camouflage",
"black",
"green",
"Red",
"Yellow",
"GRAY",
"Orange",
"Blue",
"jungle camouflage",
"grey camouflage",
"desert camouflage"
],
"images": [
"sg-11134201-8260k-mjgjtebtkjd3f0",
"sg-11134201-82618-mjgjtf2mhvk39a",
"sg-11134201-825zm-mjgjtfmbcema8f",
"sg-11134201-825zk-mjgjtg55u29x0a",
"sg-11134201-8260u-mjgjtgm74kjlf0",
"sg-11134201-8260p-mjgjth3tc0sn90",
"sg-11134201-82615-mjgjti0dojye91",
"sg-11134201-8262k-mjgjtik8dqmb31",
"sg-11134201-82621-mjgjtj1jqneo3f",
"sg-11134201-82620-mjgjtjg2pekk67",
"sg-11134201-825zx-mjgjtjwyc6wz34"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"S-180mm",
"L-210mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 34310000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390431391635,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 34310000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52204639042,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260j-mjgjta0fc935ba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":400,\"model_id\":390431391635,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260j-mjgjta0fc935ba\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":400,\"model_id\":390431391635,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52204639042",
"debug_info": null
},
{
"item_basic": {
"itemid": 55754639055,
"shopid": 1542929270,
"name": "Steel Wat Strap 18mm 20mm 22mm Wat Band Fitbit Strap/Stainless Wat Metal Strap Quick Release Replacement For Samsung Fossi",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-8260g-mjgjqjnu3uo40f",
"images": [
"sg-11134201-8260g-mjgjqjnu3uo40f",
"sg-11134201-8261i-mjgjqkkl4jd1e3",
"sg-11134201-8261g-mjgjql06iubm26",
"sg-11134201-8261o-mjgjqlnipgxy86",
"sg-11134201-8261l-mjgjqm4fqww604",
"sg-11134201-8261r-mjgjqmq7s6ptd9",
"sg-11134201-82612-mjgjqnhiqiv6dd",
"sg-11134201-82610-mjgjqnyi1e6aff",
"sg-11134201-8260q-mjgjqo9t9vd1f2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365591,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27870000000,
"price_min": 27870000000,
"price_max": 27870000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"SLIVER",
"BLACK",
"ROSE GOLD",
"GOLD"
],
"images": [
"sg-11134201-82610-mjgjqnyi1e6aff",
"sg-11134201-8260q-mjgjqo9t9vd1f2",
"sg-11134201-82612-mjgjqonkrnk6f6",
"sg-11134201-82624-mjgjqpdnzbi8bf"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"18mm",
"20mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27870000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395431387818,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27870000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55754639055,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260g-mjgjqjnu3uo40f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":406,\"model_id\":395431387818,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260g-mjgjqjnu3uo40f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":406,\"model_id\":395431387818,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55754639055",
"debug_info": null
},
{
"item_basic": {
"itemid": 50254634464,
"shopid": 1542929270,
"name": "Nylon loop For Samsung Galaxy Wat 6 5 Pro/4/classic/gear s3 frontier/active Sport Bracelet Huawei wat gt2 3 22mm 20mm Strap",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-8260e-mjgjovu1ldds92",
"images": [
"sg-11134201-8260e-mjgjovu1ldds92",
"sg-11134201-8260n-mjgjowdsmk9215",
"sg-11134201-82614-mjgjownz7f9d1f",
"sg-11134201-8261s-mjgjoxae10qofc",
"sg-11134201-8260h-mjgjoy46sum81e",
"sg-11134201-8260f-mjgjoyvyneo0c0",
"sg-11134201-8261l-mjgjozhuz8jnb4",
"sg-11134201-8260k-mjgjozugomiu09",
"sg-11134201-82609-mjgjp09uqwase4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365516,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 36380000000,
"price_min": 36380000000,
"price_max": 36380000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Dark blue",
"Black",
"Sky blue",
"Military green",
"Foggy gray",
"Light gray",
"Orange",
"Brown",
"Red"
],
"images": [
"sg-11134201-8260k-mjgjozugomiu09",
"sg-11134201-82609-mjgjp09uqwase4",
"sg-11134201-8261r-mjgjp0pz82yu5e",
"sg-11134201-82607-mjgjp1b48nbaab",
"sg-11134201-8261b-mjgjp1so56h0e6",
"sg-11134201-825zv-mjgjp28t8u844d",
"sg-11134201-82611-mjgjp2nqbzt2e1",
"sg-11134201-82605-mjgjp37l9ngj49",
"sg-11134201-8261w-mjgjp3qj1dz8ab"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"22mm",
"20mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 36380000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395431373832,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 36380000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50254634464,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260e-mjgjovu1ldds92\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":409,\"model_id\":395431373832,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260e-mjgjovu1ldds92\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":409,\"model_id\":395431373832,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50254634464",
"debug_info": null
},
{
"item_basic": {
"itemid": 26094057385,
"shopid": 54860703,
"name": "Garmin Forerunner 970 Black 2025 | Second Like New | Jam Tangan Smartwatch",
"label_ids": [
1400066568,
700000489,
1049116,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "id-11134207-82252-mj5l95xjtzi9ac",
"images": [
"id-11134207-82252-mj5l95xjtzi9ac",
"id-11134207-8224v-mj5l95xn6scg25",
"id-11134207-8224r-mj5l95xjve2p67",
"id-11134207-8224y-mj5l95xqb5s644",
"id-11134207-8224y-mj5l95xk6mmd7b",
"id-11134207-8224q-mj5l95xolcsi31"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365596,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "new",
"price": 1000000000000,
"price_min": 1000000000000,
"price_max": 1000000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Kediri",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1000000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 360431387960,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1000000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sapamao Project",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 26094057385,
"shopid": 54860703,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj5l95xjtzi9ac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,700000489,1049116,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":403,\"model_id\":360431387960,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj5l95xjtzi9ac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,700000489,1049116,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":403,\"model_id\":360431387960,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_26094057385",
"debug_info": null
},
{
"item_basic": {
"itemid": 53804629529,
"shopid": 1542929270,
"name": "Garmin QuickFit Milanese Loop Band for 20mm 22mm 26mm Wat Strap Metal Wristband bracelet for Fenix 7X Pro Fenix 5/6/8 Fenix 3",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-82625-mjgjo1tfdziee1",
"images": [
"sg-11134201-82625-mjgjo1tfdziee1",
"sg-11134201-82604-mjgjo29k969y60",
"sg-11134201-82610-mjgjo2o15hc3c4",
"sg-11134201-8261b-mjgjo2wxyl1e19",
"sg-11134201-8262z-mjgjo3fmk83lc3",
"sg-11134201-8261e-mjgjo3u732tca1",
"sg-11134201-82613-mjgjo418v0g4d6",
"sg-11134201-82611-mjgjo4knhkav03",
"sg-11134201-8260b-mjgjo4zvi2gzd4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365474,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 43050000000,
"price_min": 43050000000,
"price_max": 43050000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Taro Purple",
"Blue Orange Stripe",
"Starlight Silver",
"Silver",
"Black Red Stripe",
"Black",
"Orange Light Green",
"Blue Light Gold"
],
"images": [
"sg-11134201-82611-mjgjo4knhkav03",
"sg-11134201-8260b-mjgjo4zvi2gzd4",
"sg-11134201-82608-mjgjo5om93ia58",
"sg-11134201-82614-mjgjo64v3ls119",
"sg-11134201-825zo-mjgjo6hn8um9fc",
"sg-11134201-82633-mjgjo6yqkcuf3f",
"sg-11134201-8262n-mjgjo75rznd1ed",
"sg-11134201-8260q-mjgjo7p7cw040d"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm",
"26mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 43050000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 272332886981,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 43050000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53804629529,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82625-mjgjo1tfdziee1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":411,\"model_id\":272332886981,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82625-mjgjo1tfdziee1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":411,\"model_id\":272332886981,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53804629529",
"debug_info": null
},
{
"item_basic": {
"itemid": 51704640028,
"shopid": 1542929270,
"name": "POEDAGAR Fashion Luxury Men Wat Top Original Waterproof Luminous Date Week Man Wristwat Stainless Steel Quartz Men's Wates",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-82625-mjgjncqn3caoa0",
"images": [
"sg-11134201-82625-mjgjncqn3caoa0",
"sg-11134201-8261l-mjgjnefr5beu06",
"sg-11134201-825zm-mjgjnf9gkcg14b",
"sg-11134201-8260b-mjgjnghe2878e7",
"sg-11134201-825zy-mjgjngy1qi9z58",
"sg-11134201-8260t-mjgjnh9qz9c52f",
"sg-11134201-8262p-mjgjnhkh80zl30",
"sg-11134201-8262o-mjgjni7bnj7lff",
"sg-11134201-8260d-mjgjnjlz3oxs21"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365452,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 800210000000,
"price_min": 800210000000,
"price_max": 800210000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"698 Gold Green",
"698 Gold White",
"698 Blue Blue",
"698 Gold Grey",
"698 Gold Black",
"698 Gold Blue",
"698 Silver White",
"698 Gold Gold",
"698 Black Black",
"698 Silver Black",
"698 Silver Blue"
],
"images": [
"sg-11134201-8262o-mjgjni7bnj7lff",
"sg-11134201-8260d-mjgjnjlz3oxs21",
"sg-11134201-825zy-mjgjnktbompw57",
"sg-11134201-82630-mjgjnlkinncybc",
"sg-11134201-82610-mjgjnmarn5s794",
"sg-11134201-82625-mjgjncqn3caoa0",
"sg-11134201-8261u-mjgjnn0rkvlsff",
"sg-11134201-825zq-mjgjno4a19fpa8",
"sg-11134201-8261f-mjgjnould3ie08",
"sg-11134201-82634-mjgjnpi04flzf0",
"sg-11134201-825zs-mjgjnq7vezura0"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 800210000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410431385638,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 800210000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51704640028,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82625-mjgjncqn3caoa0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":412,\"model_id\":410431385638,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82625-mjgjncqn3caoa0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":412,\"model_id\":410431385638,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51704640028",
"debug_info": null
},
{
"item_basic": {
"itemid": 51654639055,
"shopid": 1542929270,
"name": "22mm Stainless Steel Band For Huawei Wat GT6 Pro GT5 GT4 GT3 GT2 GT 46mm Strap Metal Bracelet for Huawei Wat 5/4/4pro/3/3pro",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-8262p-mjgjn3kmsoaq27",
"images": [
"sg-11134201-8262p-mjgjn3kmsoaq27",
"sg-11134201-82617-mjgjn3tf8hz49b",
"sg-11134201-8262z-mjgjn41blouab5",
"sg-11134201-82603-mjgjn46q2j9hc8",
"sg-11134201-8260g-mjgjn4f2o2dhce",
"sg-11134201-82623-mjgjn4nojy841c",
"sg-11134201-8260e-mjgjn4ul98g162",
"sg-11134201-8262f-mjgjn50f241wd2",
"sg-11134201-8262i-mjgjn5a19p1c9f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365425,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 33620000000,
"price_min": 33620000000,
"price_max": 33620000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"sliver",
"black",
"gray"
],
"images": [
"sg-11134201-8262f-mjgjn50f241wd2",
"sg-11134201-8262i-mjgjn5a19p1c9f",
"sg-11134201-82609-mjgjn5i8hds62b"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 33620000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 307332878578,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 33620000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51654639055,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262p-mjgjn3kmsoaq27\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":413,\"model_id\":307332878578,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262p-mjgjn3kmsoaq27\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":413,\"model_id\":307332878578,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51654639055",
"debug_info": null
},
{
"item_basic": {
"itemid": 49454654493,
"shopid": 1542929270,
"name": "39mm men's wat VK63 movement quartz ronograph sapphire glass rubber strap luxury business men's waterproof wristwat 10Bar",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-8260p-mjgjofbe35ds61",
"images": [
"sg-11134201-8260p-mjgjofbe35ds61",
"sg-11134201-825zs-mjgjog7pp1c087",
"sg-11134201-8261s-mjgjogv2w5532c",
"sg-11134201-8260k-mjgjohku0d1e48",
"sg-11134201-82608-mjgjoi7ypc754f",
"sg-11134201-825zl-mjgjoivvhmo552",
"sg-11134201-8262d-mjgjojgctipvb8",
"sg-11134201-825zr-mjgjojyvesqod3",
"sg-11134201-82602-mjgjokddilts7b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365497,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 359760000000,
"price_min": 359760000000,
"price_max": 359760000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"OUMASHI- 2",
"NO LOGO- 2",
"OUMASHI- 1",
"NO LOGO- 1",
"OUMASHI- 6",
"NO LOGO- 6",
"OUMASHI- 5",
"NO LOGO- 5",
"OUMASHI- 4",
"NO LOGO- 4",
"OUMASHI- 3",
"NO LOGO- 3"
],
"images": [
"sg-11134201-825zr-mjgjojyvesqod3",
"sg-11134201-82602-mjgjokddilts7b",
"sg-11134201-8261w-mjgjokkm4cu8b9",
"sg-11134201-82615-mjgjol2c2nlw5a",
"sg-11134201-8260z-mjgjolk90avad5",
"sg-11134201-8262u-mjgjom07frif80",
"sg-11134201-8262j-mjgjomh4h7gi32",
"sg-11134201-82608-mjgjomxrby0x5c",
"sg-11134201-82609-mjgjonl16akja3",
"sg-11134201-8262c-mjgjonx2fojp51",
"sg-11134201-8262o-mjgjood5uxvoc8",
"sg-11134201-82614-mjgjoot0dxqb89"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"VK63 movement"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 359760000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390431381981,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 359760000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49454654493,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260p-mjgjofbe35ds61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":410,\"model_id\":390431381981,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260p-mjgjofbe35ds61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":410,\"model_id\":390431381981,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49454654493",
"debug_info": null
},
{
"item_basic": {
"itemid": 44654654560,
"shopid": 1542929270,
"name": "BERNY Automatic ver Men Wat 200M Waterproof Miyota 8215 Sappire AR Coated Silicone Sports Swim Wristwat Men's ver Wat",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-825zr-mjgjll8vgn4288",
"images": [
"sg-11134201-825zr-mjgjll8vgn4288",
"sg-11134201-8261r-mjgjlm5t8dmu47",
"sg-11134201-8260l-mjgjlmtz3wufd7",
"sg-11134201-825zz-mjgjlnk9i1a9a1",
"sg-11134201-82619-mjgjlofyd1qd1d",
"sg-11134201-8262b-mjgjlp7q65mr51",
"sg-11134201-82616-mjgjlpxonta9f8",
"sg-11134201-82626-mjgjlqq6uio0fe",
"sg-11134201-8261k-mjgjls6n3toj78"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365377,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 1040790000000,
"price_min": 1040790000000,
"price_max": 1040790000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"AM539MS-YE",
"AM539MS-C",
"AM539MS-B",
"AM539MS-MGN",
"AM539MS-GRN",
"AM539M-MGN",
"AM539M-GRN",
"AM539MS-A",
"AM539M-YE",
"AM539M-A",
"AM539M-B",
"AM539M-C"
],
"images": [
"sg-11134201-82626-mjgjlqq6uio0fe",
"sg-11134201-8261k-mjgjls6n3toj78",
"sg-11134201-8260u-mjgjlt5sh14z3a",
"sg-11134201-82607-mjgjlu3fonibe8",
"sg-11134201-825zo-mjgjlvqj0c1x3a",
"sg-11134201-82603-mjgjlx02lo90f7",
"sg-11134201-82613-mjgjlyoltloidd",
"sg-11134201-8262d-mjgjlzmnfi0we0",
"sg-11134201-82620-mjgjm19qy5tw2f",
"sg-11134201-825zv-mjgjm21fvbpj8b",
"sg-11134201-8262y-mjgjm38ds5j627",
"sg-11134201-8260c-mjgjm4a6v01z1a"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1040790000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370431371732,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1040790000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44654654560,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgjll8vgn4288\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":415,\"model_id\":370431371732,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgjll8vgn4288\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":415,\"model_id\":370431371732,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44654654560",
"debug_info": null
},
{
"item_basic": {
"itemid": 29344032311,
"shopid": 1542929270,
"name": "For Colmi V69 Smart Wat Band 24mm Elastic Nylon Loop Replacement Correa Wristband For Colmi V69 Strap Bracelet Accessories",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8261j-mjgjmrldtssjc9",
"images": [
"sg-11134201-8261j-mjgjmrldtssjc9",
"sg-11134201-825zp-mjgjmrw00ft060",
"sg-11134201-825zr-mjgjms8wg74117",
"sg-11134201-8260t-mjgjmsihvoqudc",
"sg-11134201-8262y-mjgjmssistts09",
"sg-11134201-82630-mjgjmt2apg5d7b",
"sg-11134201-82617-mjgjmtdwjzsz22",
"sg-11134201-825zw-mjgjmtm96xhfad",
"sg-11134201-8260z-mjgjmttmy3gk31"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365413,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 25110000000,
"price_min": 25110000000,
"price_max": 25110000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"K",
"L",
"J",
"I",
"H",
"G",
"F",
"E",
"D",
"C",
"B",
"A"
],
"images": [
"sg-11134201-8260z-mjgjmttmy3gk31",
"sg-11134201-82623-mjgjmw9905c7c1",
"sg-11134201-825zw-mjgjmtm96xhfad",
"sg-11134201-82611-mjgjmu1n4zk5f8",
"sg-11134201-82623-mjgjmubwn5l3af",
"sg-11134201-8261p-mjgjmukovyf574",
"sg-11134201-8262s-mjgjmutj04xzc5",
"sg-11134201-8261o-mjgjmv38j5s506",
"sg-11134201-82625-mjgjmvb1mbcxe4",
"sg-11134201-8260f-mjgjmviakr2bcc",
"sg-11134201-82606-mjgjmvqd6osi3d",
"sg-11134201-8262b-mjgjmw1czk0009"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"24mm Universal",
"For Colmi V69"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 25110000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 167376017634,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 25110000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 29344032311,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261j-mjgjmrldtssjc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":414,\"model_id\":167376017634,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261j-mjgjmrldtssjc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":414,\"model_id\":167376017634,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29344032311",
"debug_info": null
},
{
"item_basic": {
"itemid": 45254659129,
"shopid": 1418333174,
"name": "redmi watch 5 fullset",
"label_ids": [
844931064601283,
700000499,
1059156,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
1718093079
],
"image": "id-11134207-8224x-mjg9ke9iz66c0f",
"images": [
"id-11134207-8224x-mjg9ke9iz66c0f",
"id-11134207-82252-mjg9ke9ixrlw04",
"id-11134207-8224w-mjg9ke9j0kqsed",
"id-11134207-8224q-mjg9ke9j1zb8c8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365260,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Redmi",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 77500000000,
"price_min": 77500000000,
"price_max": 77500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Klaten",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 77500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 325431354952,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 77500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "DaZ Aksesoris",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45254659129,
"shopid": 1418333174,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjg9ke9iz66c0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000499,1059156,822059908662278,825465608494624,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":420,\"model_id\":325431354952,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjg9ke9iz66c0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000499,1059156,822059908662278,825465608494624,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":420,\"model_id\":325431354952,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45254659129",
"debug_info": null
},
{
"item_basic": {
"itemid": 57654634367,
"shopid": 1542929270,
"name": "2pcs Strap For Samsung Galaxy Wat 5 Pro 4 3 Classic Active 2 Gear Nylon Alpine Loop Bracelet Huawei Wat GT 2 3 Band 20 22mm",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8261v-mjgjh7er3d3a95",
"images": [
"sg-11134201-8261v-mjgjh7er3d3a95",
"sg-11134201-82623-mjgjh7vfqrd1c6",
"sg-11134201-8261l-mjgjh8a4k4jp22",
"sg-11134201-82605-mjgjh8tdyepz58",
"sg-11134201-8260y-mjgjh9d4d4hw31",
"sg-11134201-8262w-mjgjh9xif400a1",
"sg-11134201-8260e-mjgjhaaxp8g302",
"sg-11134201-8261l-mjgjhamhfz0h6a",
"sg-11134201-825zs-mjgjhb34udja3d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365153,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24190000000,
"price_min": 24190000000,
"price_max": 24190000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black and Orange",
"Green and Beige",
"Yellow and Blue"
],
"images": [
"sg-11134201-8261l-mjgjhamhfz0h6a",
"sg-11134201-825zs-mjgjhb34udja3d",
"sg-11134201-825zv-mjgjhbm5rw1t3d"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"20mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24190000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 415431353314,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24190000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57654634367,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261v-mjgjh7er3d3a95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":423,\"model_id\":415431353314,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261v-mjgjh7er3d3a95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":423,\"model_id\":415431353314,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57654634367",
"debug_info": null
},
{
"item_basic": {
"itemid": 52204638970,
"shopid": 1542929270,
"name": "20 22mm Garmin Easy Fit Nylon Strap For Forerunner 255/265/965 Wristband For Active /Vivoactive 4 Bracelet Venu Universal Band",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8262a-mjgjflynxblz8b",
"images": [
"sg-11134201-8262a-mjgjflynxblz8b",
"sg-11134201-8262j-mjgjfmj9e3up1f",
"sg-11134201-82610-mjgjfn01v5s413",
"sg-11134201-8261z-mjgjfnby7k7b6b",
"sg-11134201-82603-mjgjfnmeutqbf2",
"sg-11134201-8262t-mjgjfnyuxxxc75",
"sg-11134201-8261u-mjgjfod0yayp7d",
"sg-11134201-82635-mjgjfp4aqi2q83",
"sg-11134201-82603-mjgjfq48iayub5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768365080,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 32930000000,
"price_min": 32930000000,
"price_max": 32930000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"black",
"Camo green",
"Camo gray",
"Camo Red",
"army green"
],
"images": [
"sg-11134201-82635-mjgjfp4aqi2q83",
"sg-11134201-82603-mjgjfq48iayub5",
"sg-11134201-8262a-mjgjflynxblz8b",
"sg-11134201-8261w-mjgjfqoqz0n8a8",
"sg-11134201-8260l-mjgjfrltnp4wa5"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 32930000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425431349893,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 32930000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52204638970,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262a-mjgjflynxblz8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":424,\"model_id\":425431349893,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262a-mjgjflynxblz8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":424,\"model_id\":425431349893,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52204638970",
"debug_info": null
},
{
"item_basic": {
"itemid": 49604658917,
"shopid": 1542929270,
"name": "NEW Marine Silicone Strap for Samsung Galaxy Wat 7 Ultra 47mm Bracelet Sport Two-tone Watband",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8262y-mjgjdeqra612b8",
"images": [
"sg-11134201-8262y-mjgjdeqra612b8",
"sg-11134201-825zq-mjgjdf2uq9ds23",
"sg-11134201-82613-mjgjdfg5zpc159",
"sg-11134201-8260w-mjgjdg4e3e2t9d",
"sg-11134201-8261m-mjgjdgg6qays22",
"sg-11134201-8261k-mjgjdh0ch3ifd3",
"sg-11134201-8260g-mjgjdhmbrmyt03",
"sg-11134201-82610-mjgjdigf5jb710",
"sg-11134201-8261e-mjgjdj078nib60"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768364985,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 30630000000,
"price_min": 30630000000,
"price_max": 30630000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black Red",
"Black Orange",
"Orange Black",
"White Black",
"Lime Gray",
"Starlight Orange",
"Spacegray Orange",
"Gray Black",
"Armygreen Black",
"Black Gray"
],
"images": [
"sg-11134201-82610-mjgjdigf5jb710",
"sg-11134201-8261e-mjgjdj078nib60",
"sg-11134201-82610-mjgjdjwt179d83",
"sg-11134201-8262z-mjgjdkhih9fl82",
"sg-11134201-82616-mjgjdla3sao528",
"sg-11134201-82625-mjgjdm8dqsjp3a",
"sg-11134201-82629-mjgjdn5jij2ecd",
"sg-11134201-82604-mjgjdoadknb5e4",
"sg-11134201-82613-mjgjdp5qhqtf95",
"sg-11134201-8262q-mjgjdq38pkhudb"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Galaxy Watch 7 Ultra"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 30630000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 335431339654,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 30630000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49604658917,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgjdeqra612b8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":425,\"model_id\":335431339654,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgjdeqra612b8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":425,\"model_id\":335431339654,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49604658917",
"debug_info": null
},
{
"item_basic": {
"itemid": 54254634109,
"shopid": 1690895025,
"name": "Smart Watch Men 143inch Large Screen Bluetooth Call Music Player Sport Fitness Tracker Health Monitor Smartwatch",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8260q-mjgio22z51508f",
"images": [
"sg-11134201-8260q-mjgio22z51508f",
"sg-11134201-8261r-mjgio2ldmtj40e",
"sg-11134201-825zx-mjgio34vaw3qef",
"sg-11134201-825zl-mjgio3p7d72805",
"sg-11134201-82607-mjgio452a8li2a",
"sg-11134201-82627-mjgio4lr63uu3b",
"sg-11134201-8261c-mjgio57holj66d",
"sg-11134201-8260u-mjgio5q2qdc3ab",
"sg-11134201-8261k-mjgio686rr4122"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363795,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 123425800000,
"price_min": 123425800000,
"price_max": 123425800000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Silver",
"Orange",
"Gray",
"Silver Steel",
"Silver Milan",
"Black Steel",
"Black Milan",
"black"
],
"images": [
"sg-11134201-8260u-mjgio5q2qdc3ab",
"sg-11134201-8261k-mjgio686rr4122",
"sg-11134201-8260y-mjgio6o52ygw49",
"sg-11134201-8260a-mjgio7d3myo309",
"sg-11134201-8262t-mjgio7rr629s9a",
"sg-11134201-8261a-mjgio8aqf4sn90",
"sg-11134201-82620-mjgio8sbrmyoea",
"sg-11134201-82633-mjgio94v7ll174"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 123425800000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 188798790750,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 123425800000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54254634109,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgio22z51508f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":434,\"model_id\":188798790750,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgio22z51508f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":434,\"model_id\":188798790750,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54254634109",
"debug_info": null
},
{
"item_basic": {
"itemid": 47704658593,
"shopid": 1542929270,
"name": "26 22 20mm Watband For Garmin Fenix 6 6X Pro 5 5X Plus 3HR STAINLESS STEEL Band Fenix6 Fenix5 Wat Quick Release Wrist Strap",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-8262z-mjgimjxjlds0c3",
"images": [
"sg-11134201-8262z-mjgimjxjlds0c3",
"sg-11134201-825zm-mjgimkj9d9tx6b",
"sg-11134201-8261t-mjgimlbu0dtw9d",
"sg-11134201-8261h-mjgimm256lmr85",
"sg-11134201-82615-mjgimmvk3rwm61",
"sg-11134201-825zx-mjgimnrt962ta4",
"sg-11134201-825zl-mjgimomp8q9t2b",
"sg-11134201-8261c-mjgimp7dfu9wfc",
"sg-11134201-8261m-mjgimprfy03qf5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363724,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 60070000000,
"price_min": 60070000000,
"price_max": 60070000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"black",
"Rose Gold",
"silver",
"Gold"
],
"images": [
"sg-11134201-8261c-mjgimp7dfu9wfc",
"sg-11134201-8261m-mjgimprfy03qf5",
"sg-11134201-8261n-mjgimq80qdqbf7",
"sg-11134201-8260a-mjgimqumb11g1c"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"26mm Fenix 6X Pro",
"26mm Fenix 5X 3HR",
"22mm(Fenix 5)",
"20mm(Fenix 5S)",
"22mm Fenix 6 Pro",
"20mm Fenix 6S Pro"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 60070000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380431258134,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 60070000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47704658593,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgimjxjlds0c3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":438,\"model_id\":380431258134,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgimjxjlds0c3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":438,\"model_id\":380431258134,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47704658593",
"debug_info": null
},
{
"item_basic": {
"itemid": 42378006029,
"shopid": 1690895025,
"name": "Muslim Smart Watch 201 Square Smart Watch for Men Health Monitoring Islamic Quran Watch Prayer Bluetooth 53 Call Smartwatches",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8260k-mjgin2tz50cm5b",
"images": [
"sg-11134201-8260k-mjgin2tz50cm5b",
"sg-11134201-82625-mjgin3cdqyvaae",
"sg-11134201-8260g-mjgin4753bwn9b",
"sg-11134201-82603-mjgin4ol68zr96",
"sg-11134201-82622-mjgin58xs6bnc4",
"sg-11134201-825zp-mjgin5u82dc13a",
"sg-11134201-8262g-mjgin6hirmdfa7",
"sg-11134201-825zs-mjgin7gr515355",
"sg-11134201-8262a-mjgin840scuefb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363748,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 80597500000,
"price_min": 80597500000,
"price_max": 80597500000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Sdwatch",
"Black",
"Black22Szstrap",
"Black22Milan"
],
"images": [
"sg-11134201-8262a-mjgin840scuefb",
"sg-11134201-8260k-mjgin2tz50cm5b",
"sg-11134201-8262a-mjgin8nyark5ef",
"sg-11134201-8262h-mjgin98bgef696"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 80597500000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445431253999,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 80597500000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 42378006029,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260k-mjgin2tz50cm5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":437,\"model_id\":445431253999,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260k-mjgin2tz50cm5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":437,\"model_id\":445431253999,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42378006029",
"debug_info": null
},
{
"item_basic": {
"itemid": 25597898873,
"shopid": 1690895025,
"name": "Smart Watch Amolde LED Flashlight Barometer Altitude Compass Bluetooth Call Men Outdoor Sport Fitness Tracker Smartwatch",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8260f-mjging6eq68464",
"images": [
"sg-11134201-8260f-mjging6eq68464",
"sg-11134201-8261t-mjgingy1p3pc87",
"sg-11134201-8261q-mjginhhhc35t14",
"sg-11134201-82616-mjginhyrn47651",
"sg-11134201-82632-mjginidejp4z63",
"sg-11134201-8260h-mjginiz4eb5vc1",
"sg-11134201-825zw-mjginjg7zoxt2f",
"sg-11134201-8261q-mjginjv7yvpiac",
"sg-11134201-8260h-mjgink9nxfk45d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363762,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 134604500000,
"price_min": 134604500000,
"price_max": 134604500000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"black",
"Silver"
],
"images": [
"sg-11134201-8261q-mjginjv7yvpiac",
"sg-11134201-8260h-mjgink9nxfk45d"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 134604500000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410431254551,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 134604500000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 25597898873,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260f-mjging6eq68464\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":435,\"model_id\":410431254551,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260f-mjging6eq68464\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":435,\"model_id\":410431254551,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_25597898873",
"debug_info": null
},
{
"item_basic": {
"itemid": 55304624570,
"shopid": 1542929270,
"name": "New Classic luxury Leather wristWat Strap Easy fit quick Link Bracelet Belt 22MM For Garmin Fenix 5 Smart Wat band wristband",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-82609-mjgil6p96lmt7a",
"images": [
"sg-11134201-82609-mjgil6p96lmt7a",
"sg-11134201-825zm-mjgil8dgjif67e",
"sg-11134201-8261u-mjgil9gqgbgg2a",
"sg-11134201-8262f-mjgila7njyfa29",
"sg-11134201-8261e-mjgilaklqu4l1b",
"sg-11134201-8260w-mjgilbadyfie6a",
"sg-11134201-8261x-mjgilbv30hkx5b",
"sg-11134201-825zs-mjgilcb8b4lec0",
"sg-11134201-8261s-mjgildg1pd6t12"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363661,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 60530000000,
"price_min": 60530000000,
"price_max": 60530000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"black",
"light brown",
"Brown"
],
"images": [
"sg-11134201-825zs-mjgilcb8b4lec0",
"sg-11134201-8261s-mjgildg1pd6t12",
"sg-11134201-82615-mjgilechakn793"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"For Fenix 5 6 Plus"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 60530000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405431261102,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 60530000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55304624570,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82609-mjgil6p96lmt7a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":442,\"model_id\":405431261102,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82609-mjgil6p96lmt7a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":442,\"model_id\":405431261102,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55304624570",
"debug_info": null
},
{
"item_basic": {
"itemid": 54904629145,
"shopid": 1542929270,
"name": "PAGANI DESIGN 2026 New Men's Wates Top Luxury Quartz Wat For Men Auto Date Speed ronograph AR Sapphire Mirror Wrist wat",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-8260z-mjgim413rqx096",
"images": [
"sg-11134201-8260z-mjgim413rqx096",
"sg-11134201-8262v-mjgim4o0uq6f47",
"sg-11134201-82609-mjgim58oi9dx8a",
"sg-11134201-8261l-mjgim627g45h7d",
"sg-11134201-825zq-mjgim6h1exvq6d",
"sg-11134201-8262h-mjgim6uuxrlz0e",
"sg-11134201-8261e-mjgim73umux219",
"sg-11134201-82634-mjgim7mz6yo2f6",
"sg-11134201-82602-mjgim7x7j18iba"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363705,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 2148700000000,
"price_min": 2148700000000,
"price_max": 2148700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Blue",
"Silver Gold",
"Red V5",
"Gold",
"Sky Blue",
"Silver White",
"Ice Blue",
"White J",
"Black V3",
"Black-500 Scale",
"Brown",
"Deep Blue",
"White",
"Black Red",
"Black"
],
"images": [
"sg-11134201-82634-mjgim7mz6yo2f6",
"sg-11134201-82602-mjgim7x7j18iba",
"sg-11134201-8260v-mjgim8d149vpc1",
"sg-11134201-82605-mjgim8t5h8uedb",
"sg-11134201-8262w-mjgim997vzeo78",
"sg-11134201-8261g-mjgim9ntw9acff",
"sg-11134201-82612-mjgim9wafpc619",
"sg-11134201-825zk-mjgima4ztx4x54",
"sg-11134201-82610-mjgimad1qkn457",
"sg-11134201-8262e-mjgimao6rr40e2",
"sg-11134201-8261g-mjgimb10fqis4e",
"sg-11134201-825zu-mjgimbiozf9j0b",
"sg-11134201-8262d-mjgimbuippmsf1",
"sg-11134201-8260w-mjgimc3zcdtsaf",
"sg-11134201-8261c-mjgimcdgzmdef5"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 2148700000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385431266279,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 2148700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54904629145,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260z-mjgim413rqx096\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":439,\"model_id\":385431266279,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260z-mjgim413rqx096\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":439,\"model_id\":385431266279,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54904629145",
"debug_info": null
},
{
"item_basic": {
"itemid": 54204629077,
"shopid": 1690895025,
"name": "Men Smart Watch AMOLED TK27 ECG Health Monitoring Outdoors Flashlight Bluetooth Calling Sports Fitness Tracker Smartwatch",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8262y-mjgim1qka4920f",
"images": [
"sg-11134201-8262y-mjgim1qka4920f",
"sg-11134201-8262f-mjgim1ztds030d",
"sg-11134201-82610-mjgim2go8gzm82",
"sg-11134201-8260l-mjgim2vb99ms71",
"sg-11134201-8260i-mjgim3h8k9ad15",
"sg-11134201-8262b-mjgim3ouicxwa5",
"sg-11134201-8261i-mjgim42jwdmp44",
"sg-11134201-825zr-mjgim4ambaip69",
"sg-11134201-82632-mjgim4hwcyyqb8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363697,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 157218700000,
"price_min": 157218700000,
"price_max": 157218700000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Brown Leather",
"Blue",
"Black Steel",
"Nylon Black",
"black",
"Beige",
"Red",
"Black Leather"
],
"images": [
"sg-11134201-825zr-mjgim4ambaip69",
"sg-11134201-82632-mjgim4hwcyyqb8",
"sg-11134201-8262e-mjgim4ywhc7bfb",
"sg-11134201-8262y-mjgim1qka4920f",
"sg-11134201-8261r-mjgim55zqnet20",
"sg-11134201-82617-mjgim5d9bimce4",
"sg-11134201-82624-mjgim5k9f3ep3c",
"sg-11134201-8262g-mjgim5rky5flad"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 157218700000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 320431261752,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 157218700000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54204629077,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgim1qka4920f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":440,\"model_id\":320431261752,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262y-mjgim1qka4920f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":440,\"model_id\":320431261752,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54204629077",
"debug_info": null
},
{
"item_basic": {
"itemid": 53304629139,
"shopid": 1690895025,
"name": "smart watch for health monitoring, Bluetooth call watch, sports heart rate and blood oxygen, Huaqiang",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-82605-mjgils2so2rq8d",
"images": [
"sg-11134201-82605-mjgils2so2rq8d",
"sg-11134201-8262v-mjgilsdbhyio90",
"sg-11134201-8262s-mjgilsnrlgxu5f",
"sg-11134201-8262g-mjgilszwbx1i08",
"sg-11134201-82603-mjgiltax5cljac",
"sg-11134201-8261w-mjgiltlg4t1cf7",
"sg-11134201-8261i-mjgiltvqkq9x8b",
"sg-11134201-8261g-mjgilu4fdx53f4",
"sg-11134201-82634-mjgiludjuc5ca5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363683,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 41198400000,
"price_min": 41198400000,
"price_max": 41198400000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Imperial Gold",
"imperial concubine",
"knight black",
"galaxy gray"
],
"images": [
"sg-11134201-8261g-mjgilu4fdx53f4",
"sg-11134201-82634-mjgiludjuc5ca5",
"sg-11134201-8262y-mjgilukvyi9x6b",
"sg-11134201-8261p-mjgilutsf0g5d9"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 41198400000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 282332812543,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 41198400000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53304629139,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82605-mjgils2so2rq8d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":441,\"model_id\":282332812543,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82605-mjgils2so2rq8d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":441,\"model_id\":282332812543,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53304629139",
"debug_info": null
},
{
"item_basic": {
"itemid": 52254638680,
"shopid": 1542929270,
"name": "Quick Fit 22mm 26mm Titanium Strap for Garmin Wat Fenix E 8 AMOLED 7X 7 Pro 6X 6 Watband Bracelet for Garmin tinct 3 45mm",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-8261d-mjgikp31b2tde2",
"images": [
"sg-11134201-8261d-mjgikp31b2tde2",
"sg-11134201-8260v-mjgikpppc9hgdb",
"sg-11134201-8262d-mjgikqjc0yro0a",
"sg-11134201-8260s-mjgikruacetg90",
"sg-11134201-82634-mjgiktgg5hj47c",
"sg-11134201-82630-mjgiku55cbus3d",
"sg-11134201-82610-mjgikunzsmiq8b",
"sg-11134201-8261w-mjgikvjonmyuab",
"sg-11134201-8261t-mjgikw7izfnm2a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363641,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 58690000000,
"price_min": 58690000000,
"price_max": 58690000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"black orange",
"black gold",
"titanium orange",
"black",
"titanium",
"silver"
],
"images": [
"sg-11134201-8261w-mjgikvjonmyuab",
"sg-11134201-8261t-mjgikw7izfnm2a",
"sg-11134201-8261s-mjgikx18a8zo43",
"sg-11134201-8262f-mjgikxj9v3ep65",
"sg-11134201-82616-mjgiky9zwhl20e",
"sg-11134201-825zl-mjgikysnixaf28"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 58690000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310431845941,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 58690000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52254638680,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjgikp31b2tde2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":443,\"model_id\":310431845941,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjgikp31b2tde2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":443,\"model_id\":310431845941,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52254638680",
"debug_info": null
},
{
"item_basic": {
"itemid": 51904624562,
"shopid": 1542929270,
"name": "Stainless Steel Wat Bands for Garmin Fenix 3/5/5X/5S Easy Quick tall Fit Link Replacement Smart Wat Strap 20mm 22mm 26mm",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8262q-mjgik5fj78xx35",
"images": [
"sg-11134201-8262q-mjgik5fj78xx35",
"sg-11134201-8262d-mjgik5xdoef8e5",
"sg-11134201-8260e-mjgik6kjf9c544",
"sg-11134201-8261l-mjgik7bbzyfbf9",
"sg-11134201-82630-mjgik844zr432b",
"sg-11134201-8261p-mjgik8s7h4hyff",
"sg-11134201-82614-mjgik9g1dfcz43",
"sg-11134201-8260f-mjgik9xp6gw5a2",
"sg-11134201-8260p-mjgikab7w7b7fa"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363609,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 110210000000,
"price_min": 110210000000,
"price_max": 110210000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black",
"Silver"
],
"images": [
"sg-11134201-8260f-mjgik9xp6gw5a2",
"sg-11134201-8260p-mjgikab7w7b7fa"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"26mm Fenix 6X Pro",
"20mm",
"22mm",
"26mm",
"20mm(Fenix 5S)",
" 20mm Fenix 6S Pro",
"22mm(Fenix 5)",
"22mm Fenix 6 Pro",
"26mm Fenix 5X 3HR"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 110210000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 340431249476,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 110210000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51904624562,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgik5fj78xx35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":444,\"model_id\":340431249476,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgik5fj78xx35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":444,\"model_id\":340431249476,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51904624562",
"debug_info": null
},
{
"item_basic": {
"itemid": 40028030775,
"shopid": 1690895025,
"name": "Smart Watch Full Press Screen Heart Rate Monitor Blood Pressure Blood Oxygen Sleep Monitor Pedometer Bracelet Watches",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8262r-mjgik1jd29zb5c",
"images": [
"sg-11134201-8262r-mjgik1jd29zb5c",
"sg-11134201-825zz-mjgik1qjd3wl90",
"sg-11134201-8262j-mjgik281ct8k3d",
"sg-11134201-8261e-mjgik2vf515023",
"sg-11134201-82608-mjgik35no2yred",
"sg-11134201-8262w-mjgik3im3fnre0",
"sg-11134201-82624-mjggaf9i0poj15",
"sg-11134201-825zz-mjggafd459mr50",
"sg-11134201-825zw-mjgik4hnrabma1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363602,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 100713300000,
"price_min": 100713300000,
"price_max": 100713300000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Red"
],
"images": [
"sg-11134201-8262w-mjgik3im3fnre0"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 100713300000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405431255916,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 100713300000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40028030775,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjgik1jd29zb5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":445,\"model_id\":405431255916,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjgik1jd29zb5c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":445,\"model_id\":405431255916,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40028030775",
"debug_info": null
},
{
"item_basic": {
"itemid": 55904633894,
"shopid": 1690895025,
"name": "ChiBear 1000mAh Military Outdoor Smart Watch Men Sports Fitness Compass 3ATM Waterproof Bluetooth Call Smartwatch Woman 2025 New",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8261z-mjgigw7fmmtd34",
"images": [
"sg-11134201-8261z-mjgigw7fmmtd34",
"sg-11134201-8262y-mjgigxctxrswa2",
"sg-11134201-8260f-mjgigy2ymtc322",
"sg-11134201-8262p-mjgigyvonrpg65",
"sg-11134201-82623-mjgigzl0r8jrfc",
"sg-11134201-8260a-mjgih0wc6ltz28",
"sg-11134201-8262j-mjgih1kdni11ac",
"sg-11134201-825zl-mjgih27uzi1283",
"sg-11134201-8261h-mjgih2t2krur9e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363473,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 88527400000,
"price_min": 88527400000,
"price_max": 88527400000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Brown silicone",
"Camouflage silicone",
"Black mesh strap",
"Black steel strap",
"Black steel 68",
"Black leather strap",
"Silver mesh strap",
"Silver steel strap",
"Silver steel 68",
"Brown leather strap",
"Black silicone",
"Orange silicone"
],
"images": [
"sg-11134201-8261z-mjgigw7fmmtd34",
"sg-11134201-8261h-mjgih2t2krur9e",
"sg-11134201-8261o-mjgih3vgklxh6d",
"sg-11134201-82601-mjgih4imqvi886",
"sg-11134201-8261x-mjgih5711wjnbb",
"sg-11134201-82630-mjgih5w1ws921f",
"sg-11134201-82607-mjgih7auibcz87",
"sg-11134201-8260w-mjgih8otue4l20",
"sg-11134201-825zu-mjgiha2bjk7ab5",
"sg-11134201-8262q-mjgihbh4ugp38d",
"sg-11134201-8262k-mjgihc0vssuba3",
"sg-11134201-8261k-mjgihcyatedf17"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"1000mAh Battery"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 88527400000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435431242335,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 88527400000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55904633894,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261z-mjgigw7fmmtd34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":452,\"model_id\":435431242335,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261z-mjgigw7fmmtd34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":452,\"model_id\":435431242335,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55904633894",
"debug_info": null
},
{
"item_basic": {
"itemid": 48104649072,
"shopid": 1690895025,
"name": "Speaker Support For TF Cards Ideal For Running And Sports",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699
],
"image": "sg-11134201-825zy-mjgij2z8c6itb7",
"images": [
"sg-11134201-825zy-mjgij2z8c6itb7",
"sg-11134201-8260u-mjgij38indvl17",
"sg-11134201-825zm-mjgij3mnajggac",
"sg-11134201-8261i-mjgij3y2gxkw3e",
"sg-11134201-8262z-mjgij4bggqv681",
"sg-11134201-8260e-mjgij4ox2o7bbf",
"sg-11134201-82625-mjgij54zelmq1f",
"sg-11134201-8262a-mjgij5egnqwx11",
"sg-11134201-8260s-mjgij5krjv9cac"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363556,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 85761800000,
"price_min": 85761800000,
"price_max": 85761800000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Blue"
],
"images": [
"sg-11134201-825zy-mjgij2z8c6itb7"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 85761800000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395431250191,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 85761800000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48104649072,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgij2z8c6itb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":447,\"model_id\":395431250191,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgij2z8c6itb7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":447,\"model_id\":395431250191,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48104649072",
"debug_info": null
},
{
"item_basic": {
"itemid": 47804644599,
"shopid": 1542929270,
"name": "QuickFit Silicone Wat Band For Garmin Fenix 8 PRO 8x 8 E 7 7X/Forerunner 970/Epix Pro/Enduro 3 Tactix 8 26mm 22mm Sports Strap",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-825zr-mjgih9v3buv860",
"images": [
"sg-11134201-825zr-mjgih9v3buv860",
"sg-11134201-82635-mjgihawk737rc4",
"sg-11134201-8260j-mjgihcdt0lxec4",
"sg-11134201-8262x-mjgihdj8hvy9f7",
"sg-11134201-8262u-mjgiheo4fh1e36",
"sg-11134201-8260q-mjgihfmqofsze1",
"sg-11134201-8262s-mjgihgs9iio303",
"sg-11134201-8260u-mjgihhnhh9mp51",
"sg-11134201-8261v-mjgihiok6ltt9d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363508,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27870000000,
"price_min": 27870000000,
"price_max": 27870000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"b-Black Yellow",
"b-Army Green Black",
"b-White Black",
"b-Black Red",
"b-Black Gray",
"b-Yellow Black",
"b-Carbon Black",
"b-Red Black",
"b-Gray Orange",
"b-Green Black",
"b-Starlight Orange",
"b-Light Green Black",
"a-Starlight Orange",
"a-Green Black",
"a-Red Black",
"a- Army Green Black",
"a-Carbon Gray Orange",
"a-Black Gray",
"a-Black Red",
"a-Orange Black",
"a-Blue Black",
"a-White Blue",
"Black",
"Rock Green",
"Orange",
"Midnight Blue",
"Yellow",
"Green"
],
"images": [
"sg-11134201-8260u-mjgihhnhh9mp51",
"sg-11134201-8261v-mjgihiok6ltt9d",
"sg-11134201-8261m-mjgihk8cgm4l3d",
"sg-11134201-8262f-mjgihlc59a0z82",
"sg-11134201-8261i-mjgihmd5jklh0f",
"sg-11134201-8260b-mjgihnn63zer2a",
"sg-11134201-8260o-mjgihorkog7a35",
"sg-11134201-8260o-mjgihpnuopa825",
"sg-11134201-8262z-mjgihqid68zm13",
"sg-11134201-8262u-mjgihrhli96ree",
"sg-11134201-82625-mjgihtjgav40b4",
"sg-11134201-8260k-mjgihuzn1fk507",
"sg-11134201-8261p-mjgihvnumtc656",
"sg-11134201-82619-mjgihwbx9rev85",
"sg-11134201-82620-mjgihwwowiyr05",
"sg-11134201-8261h-mjgihxkrp6gzf2",
"sg-11134201-8262y-mjgihy0mccg7e3",
"sg-11134201-8261a-mjgihyogpjpf9c",
"sg-11134201-825zn-mjgihz7lnqpv09",
"sg-11134201-8262v-mjgihzoqnnd006",
"sg-11134201-8260s-mjgii04lf2mc33",
"sg-11134201-8262t-mjgii0maqups8c",
"sg-11134201-8262m-mjgii12h3i85a0",
"sg-11134201-82608-mjgii1nzhvcxd0",
"sg-11134201-82632-mjgii2jnowzpa8",
"sg-11134201-8260o-mjgii36t1q84d7",
"sg-11134201-8260u-mjgii3lb6zgm3c",
"sg-11134201-8261g-mjgii451kao06d"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"1Pcs QuickFit 26mm",
"1Pcs QuickFit 22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27870000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 297332799494,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27870000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTczLjIxNF97YjExYmEzYWY0ODU1N2VjYjhiMGRiYTczODhjNmYyMDA6MDIwMDAwMjRmZWVjOWQ1MTowMTAwMDE2YzdiMWE5OTBjfV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1MA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47804644599,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgih9v3buv860\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":448,\"model_id\":297332799494,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgih9v3buv860\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":448,\"model_id\":297332799494,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47804644599",
"debug_info": null
},
{
"item_basic": {
"itemid": 44954658677,
"shopid": 1690895025,
"name": "LIGE New GPS Tracker Smart Watch Men 143 AMOLED Screen 5ATM Waterproof Watches Bluetooth Call Outdoor Sports Smartwatch 2025",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608497696,
825465608499232,
1718093079,
1119699
],
"image": "sg-11134201-82627-mjgihjxa5uklca",
"images": [
"sg-11134201-82627-mjgihjxa5uklca",
"sg-11134201-82615-mjgihktmfm6824",
"sg-11134201-82632-mjgihlgc0wea92",
"sg-11134201-82633-mjgihm1hjq4j6d",
"sg-11134201-82616-mjgihmj0edj928",
"sg-11134201-8262s-mjgihn0tl69y13",
"sg-11134201-8260u-mjgihnjadvr4f0",
"sg-11134201-82613-mjgihnsxymm91c",
"sg-11134201-8261l-mjgiho3pewav95"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363489,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 187927700000,
"price_min": 187927700000,
"price_max": 187927700000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"mesh belt black",
"mesh belt silver",
"black",
"grey",
"steel strip black",
"steel strip silver"
],
"images": [
"sg-11134201-82627-mjgihjxa5uklca",
"sg-11134201-8261l-mjgiho3pewav95",
"sg-11134201-82635-mjgihocks45hd7",
"sg-11134201-8262c-mjgihomjpm9y16",
"sg-11134201-82621-mjgihoymdj417c",
"sg-11134201-825zm-mjgihp84ho1xd2"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 187927700000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 330431242789,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 187927700000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44954658677,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgihjxa5uklca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":451,\"model_id\":330431242789,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgihjxa5uklca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":451,\"model_id\":330431242789,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44954658677",
"debug_info": null
},
{
"item_basic": {
"itemid": 52004638529,
"shopid": 1542929270,
"name": "2025 High Quality Men's Automatic Wat with Stylish Sports Silicone Strap Waterproof Meanical Wates for Active Lifestyles",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-8262f-mjgie3d7naip47",
"images": [
"sg-11134201-8262f-mjgie3d7naip47",
"sg-11134201-8260j-mjgie40lxtdud6",
"sg-11134201-82624-mjgie4vgk4jq32",
"sg-11134201-8260d-mjgie5qya1hga4",
"sg-11134201-8260x-mjgie6eyax38b1",
"sg-11134201-8262p-mjgie7bejym82a",
"sg-11134201-8261b-mjgie8nehjpi4f",
"sg-11134201-8260w-mjgie95q7ls2c3",
"sg-11134201-8262j-mjgie9xtyhvr4d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363335,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 521680000000,
"price_min": 521680000000,
"price_max": 521680000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"WHITE",
"Blue",
"Rose",
"Silver",
"White carbon fiber",
"Black carbon fiber"
],
"images": [
"sg-11134201-8260w-mjgie95q7ls2c3",
"sg-11134201-8262j-mjgie9xtyhvr4d",
"sg-11134201-8260a-mjgieaf9vr4074",
"sg-11134201-8261b-mjgieauaslxfb7",
"sg-11134201-8262o-mjgiecioh1539c",
"sg-11134201-8260h-mjgieepvxwxyfb"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 521680000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420431228807,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 521680000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52004638529,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262f-mjgie3d7naip47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":454,\"model_id\":420431228807,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262f-mjgie3d7naip47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":454,\"model_id\":420431228807,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52004638529",
"debug_info": null
},
{
"item_basic": {
"itemid": 40628010728,
"shopid": 1690895025,
"name": "LIGE New Sport Women Smart Watch 183 HD Voice Calling Fitness Tracker Heart Rate Blood Pressure Men Smartwatch For iOS Android",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8260u-mjgieljx7e2p8c",
"images": [
"sg-11134201-8260u-mjgieljx7e2p8c",
"sg-11134201-8260h-mjgiemkeiz2e09",
"sg-11134201-82603-mjgiengo2ex1d1",
"sg-11134201-825zw-mjgienrzcc8z0a",
"sg-11134201-82621-mjgieo2uji0z24",
"sg-11134201-8261g-mjgieofqs5c2db",
"sg-11134201-8261r-mjgieot2sbnn65",
"sg-11134201-82603-mjgiep34okxz36",
"sg-11134201-825zm-mjgiepap2jgldb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363352,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 72218500000,
"price_min": 72218500000,
"price_max": 72218500000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Green",
"Pink-1",
"Mesh Silver",
"Mesh Black",
"Gray",
"Black-1",
"Purple",
"Pink-2",
"Steel Black",
"Mesh Pink",
"Black-2",
"Steel Silver"
],
"images": [
"sg-11134201-825zm-mjgiepap2jgldb",
"sg-11134201-8261r-mjgiephd42rm7f",
"sg-11134201-8260f-mjgiepnikwlh37",
"sg-11134201-825zl-mjgiepvm7d391a",
"sg-11134201-8261m-mjgieq20khz89a",
"sg-11134201-8262n-mjgieq8zvzeuba",
"sg-11134201-8260u-mjgieljx7e2p8c",
"sg-11134201-82623-mjgieqh6cxs6c2",
"sg-11134201-825zt-mjgier0umebr30",
"sg-11134201-8260b-mjgier7jad531f",
"sg-11134201-8261a-mjgierudd88y8c",
"sg-11134201-82611-mjgies3979c3d7"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"HD Call Smart Watch"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 72218500000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385431235963,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 72218500000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40628010728,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgieljx7e2p8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":453,\"model_id\":385431235963,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjgieljx7e2p8c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":453,\"model_id\":385431235963,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40628010728",
"debug_info": null
},
{
"item_basic": {
"itemid": 57704628976,
"shopid": 1690895025,
"name": "Smart Watch Full Press Screen Heart Rate Monitor Blood Pressure Blood Oxygen Sleep Monitor Pedometer Bracelet Watches",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608497696,
825465608499232,
1718093079,
1119699
],
"image": "sg-11134201-8262s-mjgic9wea0oyb0",
"images": [
"sg-11134201-8262s-mjgic9wea0oyb0",
"sg-11134201-82608-mjgicakvnz0g0e",
"sg-11134201-8260j-mjgicb0ami9uea",
"sg-11134201-8260z-mjgicbh96oshdb",
"sg-11134201-82634-mjgicbyxoyyr43",
"sg-11134201-82614-mjgiccj29kw6c7",
"sg-11134201-8261n-mjgicctqve9zfa",
"sg-11134201-8261u-mjfbfs89ghz625",
"sg-11134201-8262p-mjgicdw9e32fe7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363240,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 104280800000,
"price_min": 104280800000,
"price_max": 104280800000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Red"
],
"images": [
"sg-11134201-8262s-mjgic9wea0oyb0"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 104280800000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410431222302,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 104280800000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57704628976,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262s-mjgic9wea0oyb0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":457,\"model_id\":410431222302,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262s-mjgic9wea0oyb0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":457,\"model_id\":410431222302,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57704628976",
"debug_info": null
},
{
"item_basic": {
"itemid": 57104624419,
"shopid": 1690895025,
"name": "G50 smartwatch 157 splay flashlight blood sugar heart rate blood pressure blood oxygen Bluetooth call smartwatch",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8262z-mjgibx9w39q8d1",
"images": [
"sg-11134201-8262z-mjgibx9w39q8d1",
"sg-11134201-825zu-mjgibxsfcdtxce",
"sg-11134201-8262t-mjgibyft7ev691",
"sg-11134201-8261t-mjgibz2czhmo3a",
"sg-11134201-8262u-mjgibzmq9c78ba",
"sg-11134201-8260b-mjgic0dtafwh15",
"sg-11134201-8261e-mjgic15mtedhf6",
"sg-11134201-8262k-mjgic1lia29s78",
"sg-11134201-82600-mjgic22eytjaf4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363226,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 75765300000,
"price_min": 75765300000,
"price_max": 75765300000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Same as picture"
],
"images": [
"sg-11134201-8262k-mjgic1lia29s78"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 75765300000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 315431798500,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 75765300000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57104624419,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgibx9w39q8d1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":458,\"model_id\":315431798500,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262z-mjgibx9w39q8d1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":458,\"model_id\":315431798500,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57104624419",
"debug_info": null
},
{
"item_basic": {
"itemid": 44554649513,
"shopid": 1542929270,
"name": "Silicone Strap For Amazfit Active Edge (A2212) Sport Smart Wat Soft Bracelet WristBand Case Accessories Huami ActiveEdge",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608497696,
825465608499232,
1718093079,
1119699
],
"image": "sg-11134201-8260q-mjgidbh1alfk04",
"images": [
"sg-11134201-8260q-mjgidbh1alfk04",
"sg-11134201-8261f-mjgidc3b4ft2f9",
"sg-11134201-82628-mjgidcp7280582",
"sg-11134201-825zv-mjgidd6wnu2r07",
"sg-11134201-8260k-mjgiddptj7ya0e",
"sg-11134201-8261f-mjgide904d8n9b",
"sg-11134201-8262b-mjgiderc4avb96",
"sg-11134201-8262e-mjgidf6jfh8g90",
"sg-11134201-82603-mjgidfmjyu4n55"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363292,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 22810000000,
"price_min": 22810000000,
"price_max": 22810000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Light Gray",
"Dark Purple",
"Dark Blue",
"Pink",
"Green",
"Red",
"black",
"White"
],
"images": [
"sg-11134201-8262e-mjgidf6jfh8g90",
"sg-11134201-82603-mjgidfmjyu4n55",
"sg-11134201-8262k-mjgidg1k0sg430",
"sg-11134201-8260x-mjgidgdrojk652",
"sg-11134201-82631-mjgidgpxs2dg49",
"sg-11134201-82618-mjgidh85ww7552",
"sg-11134201-8260o-mjgidhlf85c76f",
"sg-11134201-8261n-mjgidi1q6juo28"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 22810000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345431223508,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 22810000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44554649513,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgidbh1alfk04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":456,\"model_id\":345431223508,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgidbh1alfk04\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":456,\"model_id\":345431223508,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44554649513",
"debug_info": null
},
{
"item_basic": {
"itemid": 55104624318,
"shopid": 1690895025,
"name": "2025 New Fashion Smartwatch Health Monitor Sports Mode Bluetooth Call Fitness IP67 Waterproof Smart Watches For Men Women",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-825zr-mjgib0tuf7yf42",
"images": [
"sg-11134201-825zr-mjgib0tuf7yf42",
"sg-11134201-82617-mjgib1n0px5216",
"sg-11134201-82619-mjgib2phzqx19b",
"sg-11134201-82632-mjgib3hc3oqo32",
"sg-11134201-82614-mjgib4e40q2u2f",
"sg-11134201-82627-mjgib5bji803a3",
"sg-11134201-82600-mjgib6e4wwe8b9",
"sg-11134201-8262s-mjgib7s6cs8y73",
"sg-11134201-82616-mjgib8h9v85eff"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363196,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 72882400000,
"price_min": 72882400000,
"price_max": 72882400000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Black Steel",
"Sliver Steel",
"Gold Steel",
"Gold Mesh",
"Black Mesh",
"Black Silicone",
"Sliver Mesh",
"Gray Silicone",
"Pink Silicone"
],
"images": [
"sg-11134201-825zr-mjgib0tuf7yf42",
"sg-11134201-82616-mjgib8h9v85eff",
"sg-11134201-82622-mjgib9mkwbuo2a",
"sg-11134201-8262k-mjgibayeicxv90",
"sg-11134201-825zn-mjgibbt2ja4ne6",
"sg-11134201-8262m-mjgibd0bx2wz80",
"sg-11134201-8262a-mjgibdpdsft1bc",
"sg-11134201-8262o-mjgibehgagw020",
"sg-11134201-82603-mjgibf92k2kl3a"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 72882400000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435431212749,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 72882400000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55104624318,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgib0tuf7yf42\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":461,\"model_id\":435431212749,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zr-mjgib0tuf7yf42\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":461,\"model_id\":435431212749,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55104624318",
"debug_info": null
},
{
"item_basic": {
"itemid": 51304628934,
"shopid": 1690895025,
"name": "ECG PPG Health Smart Watch Women Men Blue Tooth Call Body Temperature SOS Sports Fitness Waterproof Smartwatch Weather Stopwatch",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-8261f-mjgi9o1zkjr46e",
"images": [
"sg-11134201-8261f-mjgi9o1zkjr46e",
"sg-11134201-82615-mjgi9ob72kn801",
"sg-11134201-82613-mjgi9oo1mtja7e",
"sg-11134201-8260h-mjgi9p209p8h4e",
"sg-11134201-8262u-mjgi9pk60uf46f",
"sg-11134201-8262y-mjgi9pxtf85f51",
"sg-11134201-825zq-mjgi9qb7ug3n79",
"sg-11134201-8260e-mjgi9qn1jbwnb7",
"sg-11134201-8262n-mjgi9qvngmbpab"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363117,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 173027500000,
"price_min": 173027500000,
"price_max": 173027500000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"BKBKS",
"SVGRS",
"RGPIS"
],
"images": [
"sg-11134201-8262n-mjgi9qvngmbpab",
"sg-11134201-82632-mjgi9r6f6pz77c",
"sg-11134201-8261f-mjgi9o1zkjr46e"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 173027500000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 287332790996,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 173027500000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51304628934,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261f-mjgi9o1zkjr46e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":463,\"model_id\":287332790996,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261f-mjgi9o1zkjr46e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":463,\"model_id\":287332790996,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51304628934",
"debug_info": null
},
{
"item_basic": {
"itemid": 44128020489,
"shopid": 1690895025,
"name": "MK100 Smart Watch Men Outdoor Sports GPS Positioning Flashlight Altitude Air Pressure BT Calling Health Monitoring Smartwatch",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608497696,
825465608499232,
1718093079,
1119699
],
"image": "sg-11134201-8260q-mjgi8olznz0n27",
"images": [
"sg-11134201-8260q-mjgi8olznz0n27",
"sg-11134201-825zn-mjgi8oy7wsn53b",
"sg-11134201-8260f-mjgi8partm2v1f",
"sg-11134201-8262i-mjgi8pnoj5s529",
"sg-11134201-8260f-mjgi8q4epc7956",
"sg-11134201-8262p-mjgi8qla2akk76",
"sg-11134201-825zl-mjgi8r79o45i2a",
"sg-11134201-825zp-mjgi8rlcljwjfe",
"sg-11134201-8261w-mjgi8rxv57ggc5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363074,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 144053600000,
"price_min": 144053600000,
"price_max": 144053600000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Orange",
"Silver",
"Silver Steel",
"black",
"Black Steel"
],
"images": [
"sg-11134201-825zp-mjgi8rlcljwjfe",
"sg-11134201-8261w-mjgi8rxv57ggc5",
"sg-11134201-82607-mjgi8sfpgs9280",
"sg-11134201-8262n-mjgi8t0snbwna5",
"sg-11134201-82619-mjgi8tiddczm4b"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 144053600000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 325431215147,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 144053600000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44128020489,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgi8olznz0n27\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":464,\"model_id\":325431215147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260q-mjgi8olznz0n27\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":464,\"model_id\":325431215147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44128020489",
"debug_info": null
},
{
"item_basic": {
"itemid": 52354624384,
"shopid": 1542929270,
"name": "22/26mm QuickFit Paraute Strap For Garmin Forerunner955/965/935/945 Band Nylon Elastic Magnetic Strap for Gramin Fenix7/7pro",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-825zy-mjgi5x15tczk88",
"images": [
"sg-11134201-825zy-mjgi5x15tczk88",
"sg-11134201-8261s-mjgi5y0zc3k48f",
"sg-11134201-82627-mjgi5z944nia0c",
"sg-11134201-8261t-mjgi5zlrwhkz74",
"sg-11134201-82627-mjgi602i8bur87",
"sg-11134201-825zt-mjgi61t1sglj6b",
"sg-11134201-8260c-mjgi62l1hb7o1e",
"sg-11134201-8262b-mjgi62zaklj5f9",
"sg-11134201-8261j-mjgi63p861ad79"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362951,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 91810000000,
"price_min": 91810000000,
"price_max": 91810000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"StyleB wine red",
"StyleB blue",
"StyleB black",
"StyleA Gray",
"StyleA meat pink",
"StyleA pine green"
],
"images": [
"sg-11134201-8262b-mjgi62zaklj5f9",
"sg-11134201-8261j-mjgi63p861ad79",
"sg-11134201-8260k-mjgi656t8mbrc6",
"sg-11134201-8261j-mjgi65w1bbicff",
"sg-11134201-8260w-mjgi66ap728220",
"sg-11134201-8262k-mjgi670zs7ice5"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"22mm",
"26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 91810000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345431197755,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 91810000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52354624384,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgi5x15tczk88\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":474,\"model_id\":345431197755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgi5x15tczk88\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":474,\"model_id\":345431197755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52354624384",
"debug_info": null
},
{
"item_basic": {
"itemid": 49404644395,
"shopid": 1542929270,
"name": "22mm Easy Fit Nylon Sport Strap For For Xiaomi Wat S4 Sport /2 Pro / S3 S2 46MM / Mi S1 Active Bracelet Watband",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-82631-mjgi8k0hmk1vf8",
"images": [
"sg-11134201-82631-mjgi8k0hmk1vf8",
"sg-11134201-8261y-mjgi8kvh5wck61",
"sg-11134201-825zv-mjgi8lenoa2t98",
"sg-11134201-825zw-mjgi8m1rl2px38",
"sg-11134201-8261f-mjgi8mlu0gzm6c",
"sg-11134201-8262q-mjgi8n1tf1tv31",
"sg-11134201-825zo-mjgi8njshybpee",
"sg-11134201-8261v-mjgi8nvn8t1f60",
"sg-11134201-8260m-mjgi8oegokxz25"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363072,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 37530000000,
"price_min": 37530000000,
"price_max": 37530000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black",
"Black ArmyGreen",
"Black Camouflage",
"Navy Blue",
"Orange",
"Black Orange",
"ArmyGreen"
],
"images": [
"sg-11134201-8261v-mjgi8nvn8t1f60",
"sg-11134201-8260m-mjgi8oegokxz25",
"sg-11134201-825zu-mjgi8p6x3zly27",
"sg-11134201-825zo-mjgi8puk9bt323",
"sg-11134201-8262u-mjgi8qjglb7pa7",
"sg-11134201-8262m-mjgi8r8aqjnm5f",
"sg-11134201-8260l-mjgi8rq9z5l3e5"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"22MM"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 37530000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435431208645,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 37530000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49404644395,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82631-mjgi8k0hmk1vf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":465,\"model_id\":435431208645,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82631-mjgi8k0hmk1vf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":465,\"model_id\":435431208645,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49404644395",
"debug_info": null
},
{
"item_basic": {
"itemid": 48804644323,
"shopid": 1542929270,
"name": "Bezel Ring Styling Frame Case For Garmin Fenix 5 5 Plus 6 6X Pro Smart Wat Stainless Steel Cover Anti-scrat Protection Rings",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699
],
"image": "sg-11134201-825zq-mjgi89sb9af847",
"images": [
"sg-11134201-825zq-mjgi89sb9af847",
"sg-11134201-8262o-mjgi8a6rubcw60",
"sg-11134201-8262l-mjgi8ajyjgg7fe",
"sg-11134201-8262y-mjgi8at64ah38a",
"sg-11134201-8262e-mjgi8b1pw8hzbd",
"sg-11134201-8261m-mjgi8b99xlhc92",
"sg-11134201-82623-mjgi8blyg4cg2a",
"sg-11134201-825zs-mjgi8bte8dflc4",
"sg-11134201-8262x-mjgi8c0n9kox82"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363052,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 34540000000,
"price_min": 34540000000,
"price_max": 34540000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"B",
"C",
"D",
"E",
"F",
"A"
],
"images": [
"sg-11134201-825zs-mjgi8bte8dflc4",
"sg-11134201-8262x-mjgi8c0n9kox82",
"sg-11134201-8262m-mjgi8c5uh3wn20",
"sg-11134201-8260o-mjgi8cdount212",
"sg-11134201-82620-mjgi8cjjbf2ec8",
"sg-11134201-8262f-mjgi8cpi8cn59d"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"22mm Fenix 6 6Pro",
"22mm Fenix 5 5Plus",
"26mm Fenix 6X Pro",
"26mm For Fenix 6X"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 34540000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 400431210147,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 34540000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48804644323,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zq-mjgi89sb9af847\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":467,\"model_id\":400431210147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zq-mjgi89sb9af847\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":467,\"model_id\":400431210147,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48804644323",
"debug_info": null
},
{
"item_basic": {
"itemid": 47454658563,
"shopid": 1690895025,
"name": "2025 New Smartwatch al to Answer Calls Calorie Tracking Heart Rate Blood Oxygen Monitoring Bluetooth SmartWatch men women Gift",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608497696,
825465608499232,
1718093079,
1119699
],
"image": "sg-11134201-8261x-mjgi6i49xyx32e",
"images": [
"sg-11134201-8261x-mjgi6i49xyx32e",
"sg-11134201-8262i-mjgi6ivz6br71d",
"sg-11134201-825zm-mjgi6jgfot1c24",
"sg-11134201-8261u-mjgi6kff0ah094",
"sg-11134201-8261h-mjgi6lfpb2ti43",
"sg-11134201-8262k-mjgi6m07ggsnfd",
"sg-11134201-8260b-mjgi6miqtvr4f8",
"sg-11134201-82627-mjgi6n2ho1s3d1",
"sg-11134201-8260m-mjgi6nm0jnyf38"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362982,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 61551400000,
"price_min": 61551400000,
"price_max": 61551400000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Black",
"Gold steel",
"Silver steel",
"Black steel",
"Black leather",
"Brown Gold leather",
"Brown silver leather",
"Gold mesh",
"Silver mesh",
"Black mesh",
"Pink",
"Silver"
],
"images": [
"sg-11134201-82627-mjgi6n2ho1s3d1",
"sg-11134201-8260m-mjgi6nm0jnyf38",
"sg-11134201-8260d-mjgi6o5ntypy01",
"sg-11134201-82633-mjgi6oqug4cm94",
"sg-11134201-82603-mjgi6pbjz2tj0c",
"sg-11134201-8262o-mjgi6pu3t9fo8a",
"sg-11134201-8260q-mjgi6qsonnraab",
"sg-11134201-8261o-mjgi6rfgcu8731",
"sg-11134201-82627-mjgi6s892sxu2a",
"sg-11134201-8261d-mjgi6sre2cxw72",
"sg-11134201-8262m-mjgi6trmvq4kfe",
"sg-11134201-82600-mjgi6udj1xqd1d"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 61551400000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 292332785904,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 61551400000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47454658563,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjgi6i49xyx32e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":472,\"model_id\":292332785904,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261x-mjgi6i49xyx32e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":472,\"model_id\":292332785904,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47454658563",
"debug_info": null
},
{
"item_basic": {
"itemid": 46454653984,
"shopid": 1690895025,
"name": "Smart Watch SK40 Bluetooth Calling 153inch Ultra Clear Large Screen Sports Fitness Tracker Health Monitor Men Smartwatch",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-8261r-mjgi8frucjk46f",
"images": [
"sg-11134201-8261r-mjgi8frucjk46f",
"sg-11134201-82616-mjgi8fytcqv87d",
"sg-11134201-82627-mjgi8g7wn2f7fd",
"sg-11134201-8260f-mjgi8gfj68lh5a",
"sg-11134201-8262u-mjgi8gowj092b4",
"sg-11134201-82600-mjgi8gydv08z9c",
"sg-11134201-8261j-mjgi8h6o2upz14",
"sg-11134201-8262f-mjgi8hdhfdog4e",
"sg-11134201-8260b-mjgi8hl140eb9f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768363058,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 120045300000,
"price_min": 120045300000,
"price_max": 120045300000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"black",
"Silver"
],
"images": [
"sg-11134201-8262f-mjgi8hdhfdog4e",
"sg-11134201-8260b-mjgi8hl140eb9f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 120045300000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 430431199693,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 120045300000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46454653984,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261r-mjgi8frucjk46f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":466,\"model_id\":430431199693,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261r-mjgi8frucjk46f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":466,\"model_id\":430431199693,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46454653984",
"debug_info": null
},
{
"item_basic": {
"itemid": 49704653865,
"shopid": 1542929270,
"name": "Quick Fit Titanium Bracelet For Samsung Galaxy Wat 7 6 5 40mm 44mm Luxury No Gaps Band Classic 43 47mm 42 46mm 5Pro 45mm Strap",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-825zo-mjgi3f3mj30jd6",
"images": [
"sg-11134201-825zo-mjgi3f3mj30jd6",
"sg-11134201-825zk-mjgi3fob9uyq5c",
"sg-11134201-82619-mjgi3gb19a0yfd",
"sg-11134201-82603-mjgi3gk9w1dy1a",
"sg-11134201-82633-mjgi3h5dxfyc7e",
"sg-11134201-8261n-mjgi3hr6o1l2a9",
"sg-11134201-82612-mjgi3ie8a0aq0a",
"sg-11134201-8262t-mjgi3ikwa51f03",
"sg-11134201-8262a-mjgi3iql1rt1f7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362827,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 135280000000,
"price_min": 135280000000,
"price_max": 135280000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black",
"Gray",
"Starlight",
"Silver"
],
"images": [
"sg-11134201-8262t-mjgi3ikwa51f03",
"sg-11134201-8262a-mjgi3iql1rt1f7",
"sg-11134201-825zv-mjgi3iwyh72921",
"sg-11134201-8260y-mjgi3j4si3uoc8"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 135280000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435431195179,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 135280000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49704653865,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjgi3f3mj30jd6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":477,\"model_id\":435431195179,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjgi3f3mj30jd6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":477,\"model_id\":435431195179,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49704653865",
"debug_info": null
},
{
"item_basic": {
"itemid": 49454644446,
"shopid": 1542929270,
"name": "2025 New Adventure Ready 42mm Men's Wat 8215 Movement 316L Steel Crystal Luminous Markers 100M Waterproof Timepiece wat for",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-82612-mjgi4ez8vw1zf2",
"images": [
"sg-11134201-82612-mjgi4ez8vw1zf2",
"sg-11134201-8262k-mjgi4fb4iyo23c",
"sg-11134201-8262q-mjgi4fieaupt40",
"sg-11134201-8261f-mjgi4fs4ykg57e",
"sg-11134201-82603-mjgi4fzrx8g7c2",
"sg-11134201-8261s-mjgi4g70vo5c4f",
"sg-11134201-8261q-mjgi4gdt69s207",
"sg-11134201-8262m-mjgi4gkbh8g135",
"sg-11134201-8261n-mjgi4gtvdxxi9e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362871,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 578490000000,
"price_min": 578490000000,
"price_max": 578490000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"grey"
],
"images": [
"sg-11134201-8262m-mjgi4gkbh8g135"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 578490000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 272332781062,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 578490000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49454644446,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82612-mjgi4ez8vw1zf2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":476,\"model_id\":272332781062,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82612-mjgi4ez8vw1zf2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":476,\"model_id\":272332781062,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49454644446",
"debug_info": null
},
{
"item_basic": {
"itemid": 56704624266,
"shopid": 1542929270,
"name": "ADESDVIE AD2539 Quartz Wat Men ronograph Wat VK63 316L Stainless Steel 10Bar Waterproof Steel Strap BGW9 Super Luminous",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-8261m-mjgi107zbmyp3f",
"images": [
"sg-11134201-8261m-mjgi107zbmyp3f",
"sg-11134201-8261f-mjgi10kfssuffa",
"sg-11134201-8261c-mjgi10zst5ae05",
"sg-11134201-8262y-mjgi11gv1bly67",
"sg-11134201-825zr-mjgi11zqz1fq1a",
"sg-11134201-82632-mjgi12cc4rgj4b",
"sg-11134201-8261m-mjgi12pdpw5j2c",
"sg-11134201-8260n-mjgi130mkoowa2",
"sg-11134201-8260t-mjgi13b78l4zfe"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362714,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 1563580000000,
"price_min": 1563580000000,
"price_max": 1563580000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"White",
"Blue",
"Black",
"Red"
],
"images": [
"sg-11134201-8260n-mjgi130mkoowa2",
"sg-11134201-8260t-mjgi13b78l4zfe",
"sg-11134201-8262e-mjgi13luvabo43",
"sg-11134201-8260i-mjgi13xibf9e31"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1563580000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420431172920,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1563580000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56704624266,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261m-mjgi107zbmyp3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":481,\"model_id\":420431172920,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261m-mjgi107zbmyp3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":481,\"model_id\":420431172920,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56704624266",
"debug_info": null
},
{
"item_basic": {
"itemid": 51954633802,
"shopid": 1542929270,
"name": "Quick Release Soft Suede Wat Strap for Seiko 18/20/22mm for Huawei Wat Gt3/Gt4 Bracelet 14/16mm Women Men Calfskin Wristband",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-82627-mjgi0nfahtz5ea",
"images": [
"sg-11134201-82627-mjgi0nfahtz5ea",
"sg-11134201-8260t-mjgi0nvzrpc6fc",
"sg-11134201-82602-mjgi0oawl2iq2a",
"sg-11134201-8262i-mjgi0omo622pcb",
"sg-11134201-8260s-mjgi0oyfhatce6",
"sg-11134201-825zk-mjgi0pb75n9j16",
"sg-11134201-82610-mjgi0pn14bgkac",
"sg-11134201-8261k-mjgi0pvlr95249",
"sg-11134201-8262c-mjgi0q2v7v28ee"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362699,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 33850000000,
"price_min": 33850000000,
"price_max": 33850000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Pink",
"light brown",
"Dark Brown",
"black",
"dark blue",
"Beige",
"Yellow Brown",
"Dark Grey",
"army green",
"Light Blue",
"Purple",
"Red",
"Light Grey"
],
"images": [
"sg-11134201-8261k-mjgi0pvlr95249",
"sg-11134201-8262c-mjgi0q2v7v28ee",
"sg-11134201-82632-mjgi0qhvuxhf03",
"sg-11134201-8262p-mjgi0qs4cj5u9a",
"sg-11134201-8260d-mjgi0r1olxc675",
"sg-11134201-8262n-mjgi0ra2ymf803",
"sg-11134201-8261n-mjgi0rip5p8mf2",
"sg-11134201-825zu-mjgi0rtp00lheb",
"sg-11134201-8262d-mjgi0s2wqgw2a6",
"sg-11134201-82611-mjgi0sbhu9du04",
"sg-11134201-82621-mjgi0sjguyvae0",
"sg-11134201-8260m-mjgi0ssh54p0c4",
"sg-11134201-82607-mjgi0t0v7zt315"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm",
"22mm",
"16mm",
"18mm",
"14mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 33850000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420431177349,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 33850000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51954633802,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgi0nfahtz5ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":482,\"model_id\":420431177349,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgi0nfahtz5ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":482,\"model_id\":420431177349,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51954633802",
"debug_info": null
},
{
"item_basic": {
"itemid": 46904653733,
"shopid": 1542929270,
"name": "BERNY Automatic ve Wat for Men Super Luminous Original Design 20ATM Man Wristwat Sapphire Swim Sport Meanical Male Wat",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "sg-11134201-82618-mjgi1sk807wmf8",
"images": [
"sg-11134201-82618-mjgi1sk807wmf8",
"sg-11134201-8261q-mjgi1t32jbpgc5",
"sg-11134201-8260a-mjgi1thg2scm2e",
"sg-11134201-8260y-mjgi1tu8ypz9fb",
"sg-11134201-82624-mjgi1u5ew5xde3",
"sg-11134201-8262n-mjgi1ufqrz0ic8",
"sg-11134201-8261t-mjgi1unignb569",
"sg-11134201-825zo-mjgi1uzd38quf7",
"sg-11134201-82608-mjgi1vcnq7ls3a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362751,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 993180000000,
"price_min": 993180000000,
"price_max": 993180000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"AM339MS-A",
"AM339M-C",
"AM339M-GRN",
"AM339MS-GRN",
"AM339MS-C",
"AM339M-A"
],
"images": [
"sg-11134201-825zo-mjgi1uzd38quf7",
"sg-11134201-82608-mjgi1vcnq7ls3a",
"sg-11134201-8260n-mjgi1vq1258n8f",
"sg-11134201-82635-mjgi1w34abd387",
"sg-11134201-82628-mjgi1wgg4veta1",
"sg-11134201-8260j-mjgi1wwq9oueb0"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 993180000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380431182351,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 993180000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46904653733,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82618-mjgi1sk807wmf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":479,\"model_id\":380431182351,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82618-mjgi1sk807wmf8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":479,\"model_id\":380431182351,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46904653733",
"debug_info": null
},
{
"item_basic": {
"itemid": 57654624186,
"shopid": 1542929270,
"name": "Back cover with battery For Garmin Fenix 5 GPS Wat housing case shell replacement repair part",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-82601-mjghyn0anls38d",
"images": [
"sg-11134201-82601-mjghyn0anls38d",
"sg-11134201-82619-mjghynbuscg479",
"sg-11134201-825zt-mjghynwbc550cb",
"sg-11134201-8262r-mjghyofl7a4mae",
"sg-11134201-82625-mjghyos7c5xc56",
"sg-11134201-8260c-mjghypi8k8hv9e",
"sg-11134201-825zz-mjghypzjg8w707",
"sg-11134201-8260p-mjghyq78lm9zb4",
"sg-11134201-82615-mjghyqfvjdvra5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362603,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 104460000000,
"price_min": 104460000000,
"price_max": 104460000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Silver back cover",
"Black rear cover"
],
"images": [
"sg-11134201-8260p-mjghyq78lm9zb4",
"sg-11134201-82615-mjghyqfvjdvra5"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"With battery",
"Without battery"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 104460000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405431164193,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 104460000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57654624186,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82601-mjghyn0anls38d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":488,\"model_id\":405431164193,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82601-mjghyn0anls38d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":488,\"model_id\":405431164193,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57654624186",
"debug_info": null
},
{
"item_basic": {
"itemid": 56754624189,
"shopid": 1542929270,
"name": "Crazy Horse Leather band for Samsung Galaxy Wat 7/6/5/4/FE 18mm 20mm 22mm straps retro Bracelet for Huawei wat GT 5-4-3-pro",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8262t-mjghy07g9rlya2",
"images": [
"sg-11134201-8262t-mjghy07g9rlya2",
"sg-11134201-825zs-mjghy0n09jpjf1",
"sg-11134201-8260n-mjghy1521eyq23",
"sg-11134201-8261v-mjghy1kce5mo4e",
"sg-11134201-8261u-mjghy20yp9tufd",
"sg-11134201-8260v-mjghy2mfkuthca",
"sg-11134201-8261u-mjghy3966pdt6d",
"sg-11134201-825zu-mjghy3j6pssh74",
"sg-11134201-8260f-mjghy3rnsv7rb2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362575,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26260000000,
"price_min": 26260000000,
"price_max": 26260000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"01 black",
"07 green",
"04 gray",
"05 blue",
"06 red",
"03 brown",
"02 deep brown"
],
"images": [
"sg-11134201-825zu-mjghy3j6pssh74",
"sg-11134201-8260f-mjghy3rnsv7rb2",
"sg-11134201-8260f-mjghy41qa70jdf",
"sg-11134201-8260v-mjghy49hm87942",
"sg-11134201-8260w-mjghy4h9ngg0b0",
"sg-11134201-8261l-mjghy4sr1vd0a5",
"sg-11134201-82633-mjghy5397x1ffa"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm watch band",
"22mm watch band",
"18mm watch band"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26260000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425431168643,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26260000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56754624189,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjghy07g9rlya2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":490,\"model_id\":425431168643,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262t-mjghy07g9rlya2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":490,\"model_id\":425431168643,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56754624189",
"debug_info": null
},
{
"item_basic": {
"itemid": 53204628817,
"shopid": 1542929270,
"name": "Metal Bezel For Garmin Fenix 8 47mm 51mm Smart Wat Bumper Cover For Garmin Fenix8 Shell Frame Protective Case Accessories",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-8262j-mjghzefy1xxi28",
"images": [
"sg-11134201-8262j-mjghzefy1xxi28",
"sg-11134201-8260d-mjghzf169qfbed",
"sg-11134201-82627-mjghzfo7x3pi71",
"sg-11134201-8262a-mjghzguavzly8c",
"sg-11134201-82606-mjghzhyotzbacf",
"sg-11134201-825zw-mjghzijrfevbee",
"sg-11134201-8260m-mjghzj0g5m9yed",
"sg-11134201-8261i-mjghzjblp0jrc0",
"sg-11134201-8261c-mjghzjk7gn46d0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362641,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 29250000000,
"price_min": 29250000000,
"price_max": 29250000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black",
"Blue",
"Silver"
],
"images": [
"sg-11134201-8261i-mjghzjblp0jrc0",
"sg-11134201-8261c-mjghzjk7gn46d0",
"sg-11134201-825zo-mjghzju2rk029c"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"For Fenix 8 51mm",
"For Fenix 8 47mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 29250000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 315431770038,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 29250000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53204628817,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjghzefy1xxi28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":484,\"model_id\":315431770038,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262j-mjghzefy1xxi28\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":484,\"model_id\":315431770038,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53204628817",
"debug_info": null
},
{
"item_basic": {
"itemid": 52404628870,
"shopid": 1542929270,
"name": "22mm 26mm Quickfit Nylon Wat Strap for Garmin Fenix 8pro Band for Garmin Epix Pro Gen 2 /Enduro 3/Descent Mk3i Woven Bracelet",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8261d-mjghyy9iobuu7b",
"images": [
"sg-11134201-8261d-mjghyy9iobuu7b",
"sg-11134201-8262a-mjghyz40krgg77",
"sg-11134201-8262y-mjghz04tlqtj09",
"sg-11134201-8262d-mjghz114qryc25",
"sg-11134201-8262j-mjghz22vve2u3a",
"sg-11134201-82605-mjghz2rqlqmc00",
"sg-11134201-8262g-mjghz3jbz2tc98",
"sg-11134201-8261l-mjghz3yq9s067b",
"sg-11134201-8261n-mjghz4iiv5ky57"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362625,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 49490000000,
"price_min": 49490000000,
"price_max": 49490000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Gray",
"Army Green",
"StarLight",
"Black",
"Midnight Blue",
"Black Gray",
"Orange"
],
"images": [
"sg-11134201-8261l-mjghz3yq9s067b",
"sg-11134201-8261n-mjghz4iiv5ky57",
"sg-11134201-8260v-mjghz506330ncd",
"sg-11134201-82602-mjghz5phh81wb3",
"sg-11134201-8261c-mjghz66h4ow75a",
"sg-11134201-82634-mjghz6x0c9ok25",
"sg-11134201-8261t-mjghz7hqoq2q08"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"QuickFit 22mm",
"QuickFit 26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 49490000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345431164724,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 49490000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52404628870,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjghyy9iobuu7b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":486,\"model_id\":345431164724,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjghyy9iobuu7b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":486,\"model_id\":345431164724,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52404628870",
"debug_info": null
},
{
"item_basic": {
"itemid": 51154633821,
"shopid": 1542929270,
"name": "22 26mm Ocean Strap For Garmin Fenix 7/7X/5/5 Plus/6/6 Pro Bracelet For Forerunner 965 Replacement Watband for tinct/Enduro",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-8262b-mjgi08wb8jk6c4",
"images": [
"sg-11134201-8262b-mjgi08wb8jk6c4",
"sg-11134201-82614-mjgi09qy4tfo25",
"sg-11134201-8260x-mjgi0agykphea3",
"sg-11134201-8261v-mjgi0b369c7823",
"sg-11134201-82627-mjgi0bou2wp1f5",
"sg-11134201-8260e-mjgi0can1zb855",
"sg-11134201-825zo-mjgi0cxbzdvrf1",
"sg-11134201-82633-mjgi0dcwpt6pb6",
"sg-11134201-81zuw-mik68jkbml8mf1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362683,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 43510000000,
"price_min": 43510000000,
"price_max": 43510000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Digital Camo",
"Camo Army Green",
"Camo Orange",
"Camo White",
"Black",
"Stone blue",
"White",
"Orange",
"Army green"
],
"images": [
"sg-11134201-82633-mjgi0dcwpt6pb6",
"sg-11134201-81zuw-mik68jkbml8mf1",
"sg-11134201-81zur-mik68jsnvh8k83",
"sg-11134201-8262v-mjgi0el8kkchb6",
"sg-11134201-8261y-mjgi0ezi7k768a",
"sg-11134201-8262q-mjgi0fb0qr5w06",
"sg-11134201-8262b-mjgi0fj9il1g37",
"sg-11134201-8261e-mjgi0fyug2rncd",
"sg-11134201-8260b-mjgi0gd22137cd"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Quick fit22mm",
"Quick fit26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 43510000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355431177029,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 43510000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51154633821,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262b-mjgi08wb8jk6c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":483,\"model_id\":355431177029,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262b-mjgi08wb8jk6c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":483,\"model_id\":355431177029,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51154633821",
"debug_info": null
},
{
"item_basic": {
"itemid": 46654653802,
"shopid": 1542929270,
"name": "OLEVS 6670 Meanical Fashion Wat Genuine Leather Watband Round-al Moon Phase Month splay",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232
],
"image": "sg-11134201-82617-mjghyc74qc5faf",
"images": [
"sg-11134201-82617-mjghyc74qc5faf",
"sg-11134201-8262c-mjghycp341l3c6",
"sg-11134201-8261c-mjghyd8kjoqq21",
"sg-11134201-82602-mjghydrq1gjl8a",
"sg-11134201-82601-mjghye941vyfff",
"sg-11134201-82620-mjghyeplivbbf1",
"sg-11134201-82624-mjghyf6xqn0h07",
"sg-11134201-82625-mjghyff67bief8",
"sg-11134201-8260o-mjghyfp2k45f5c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362589,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 522370000000,
"price_min": 522370000000,
"price_max": 522370000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"D",
"C",
"B",
"A"
],
"images": [
"sg-11134201-82625-mjghyff67bief8",
"sg-11134201-8260o-mjghyfp2k45f5c",
"sg-11134201-82611-mjghyfxljytga6",
"sg-11134201-825zx-mjghyg6ujda9e4"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 522370000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370431170427,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 522370000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46654653802,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82617-mjghyc74qc5faf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":489,\"model_id\":370431170427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82617-mjghyc74qc5faf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":489,\"model_id\":370431170427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46654653802",
"debug_info": null
},
{
"item_basic": {
"itemid": 55954628785,
"shopid": 1690895025,
"name": "37V 500mAh Lipo Rechargeable Battery 582535 + JST 10mm 3Pin For MP3 GPS DVD Bluetooth Recorder Headset Smart Watch 582535",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608497696,
825465608499232,
1119699
],
"image": "sg-11134201-825zo-mjghwyntp5afaf",
"images": [
"sg-11134201-825zo-mjghwyntp5afaf",
"sg-11134201-82632-mjghwyweoohw3f",
"sg-11134201-8260w-mjghwzfewwsg07",
"sg-11134201-8260q-mjghx0dgk64h17",
"sg-11134201-8260j-mjghx0zmhjpid2",
"sg-11134201-8262n-mjghx1iwbbpgaf",
"sg-11134201-8261r-mjghx29oysch89",
"sg-11134201-825zu-mjghx2ugfxmu23",
"sg-11134201-8262r-mjghx3esmhvn8c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362527,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27723700000,
"price_min": 27723700000,
"price_max": 27723700000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"1PCS",
"10PCS",
"2PCS",
"5PCS"
],
"images": [
"sg-11134201-82632-mjghwyweoohw3f",
"sg-11134201-825zu-mjghx2ugfxmu23",
"sg-11134201-8262r-mjghx3esmhvn8c",
"sg-11134201-8260g-mjghx4eeqayr10"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27723700000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 292332753858,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27723700000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "UrbanSkena",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55954628785,
"shopid": 1690895025,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjghwyntp5afaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":492,\"model_id\":292332753858,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjghwyntp5afaf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":492,\"model_id\":292332753858,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55954628785",
"debug_info": null
},
{
"item_basic": {
"itemid": 47704644243,
"shopid": 1542929270,
"name": "Hemsut Garmin tinct Wat Band Quickfit Nylon Strap Woven Quickfit Loops For Fenix Forerunner Vivoactive 20mm 22mm 26mm",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8260i-mjghwqvf5qf810",
"images": [
"sg-11134201-8260i-mjghwqvf5qf810",
"sg-11134201-825zy-mjghwrmr8t1f5e",
"sg-11134201-82611-mjghws6kcg0364",
"sg-11134201-82602-mjghwsqtwt1i2d",
"sg-11134201-8261c-mjghwta61gjrcd",
"sg-11134201-8260r-mjghwtxuh5he5a",
"sg-11134201-8261o-mjghwuo4k1dybc",
"sg-11134201-8261k-mjghwvd9766825",
"sg-11134201-8261m-mjghww16eww3eb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362520,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 106760000000,
"price_min": 106760000000,
"price_max": 106760000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"HGA125GRY",
"HGA125BLK",
"HGA125GRN",
"HGA125BLU",
"HGA125ORG"
],
"images": [
"sg-11134201-8261k-mjghwvd9766825",
"sg-11134201-8261m-mjghww16eww3eb",
"sg-11134201-82621-mjghwws3fqptb5",
"sg-11134201-8262r-mjghwxlaxzidac",
"sg-11134201-8260h-mjghwyjxi6tjf2"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"S 165mm to 190mm",
"M 185mm to 210mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 106760000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 430431162351,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 106760000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47704644243,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260i-mjghwqvf5qf810\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":493,\"model_id\":430431162351,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260i-mjghwqvf5qf810\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":493,\"model_id\":430431162351,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47704644243",
"debug_info": null
},
{
"item_basic": {
"itemid": 46504644261,
"shopid": 1542929270,
"name": "26mm 22mm Quickfit Titanium Strap For Garmin Fenix 8/6/6X/6XPro/7/7X/5/5X/5XPlus Metal Release Wat Band For Forerunner 945 255",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8260e-mjghwa77dbszef",
"images": [
"sg-11134201-8260e-mjghwa77dbszef",
"sg-11134201-8260e-mjghwa77dbszef",
"sg-11134201-8260a-mjghwb12ogli8b",
"sg-11134201-825zw-mjghwbi03wn60c",
"sg-11134201-8260k-mjghwc0q8but07",
"sg-11134201-825zn-mjghwcljtbt0e1",
"sg-11134201-82622-mjghwcvmj30i2d",
"sg-11134201-8262s-mjghwd6sc9om06",
"sg-11134201-82634-mjghwdhrtzid1f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362496,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 110900000000,
"price_min": 110900000000,
"price_max": 110900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"silver 02",
"Silver 03",
"Titanium color 02",
"Gray 03",
"Black 03",
"Black",
"Silver",
"Titanium gray 02",
"black 02"
],
"images": [
"sg-11134201-8262s-mjghwd6sc9om06",
"sg-11134201-82634-mjghwdhrtzid1f",
"sg-11134201-82609-mjghwdt36oeca4",
"sg-11134201-8262f-mjghwe645c0754",
"sg-11134201-82619-mjghwenmvq4g81",
"sg-11134201-8262g-mjghwezwzz0gf2",
"sg-11134201-825zv-mjghwfbs91j8f0",
"sg-11134201-82631-mjghwfmdt91da0",
"sg-11134201-82627-mjghwfyi5kar2b"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 110900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420431166425,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 110900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46504644261,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260e-mjghwa77dbszef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":494,\"model_id\":420431166425,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260e-mjghwa77dbszef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":494,\"model_id\":420431166425,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46504644261",
"debug_info": null
},
{
"item_basic": {
"itemid": 43478015610,
"shopid": 1542929270,
"name": "39mm black men's wat VK63 movement ronograph sapphire glass rubber strap business men's waterproof wristwat 10Bar",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079
],
"image": "sg-11134201-825zu-mjghx6648g78bb",
"images": [
"sg-11134201-825zu-mjghx6648g78bb",
"sg-11134201-8262z-mjghx6mpc2dce0",
"sg-11134201-82613-mjghx75mtxc5f0",
"sg-11134201-8260r-mjghx7qg2a6e4c",
"sg-11134201-8262p-mjghx8daj6yu04",
"sg-11134201-82625-mjghx8tce8078f",
"sg-11134201-82610-mjghx9cgbw9052",
"sg-11134201-8261h-mjghx9qafu2tf1",
"sg-11134201-8261h-mjghxa57zw1yc1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362539,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 388050000000,
"price_min": 388050000000,
"price_max": 388050000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"OUMASHI- 4",
"NO LOGO- 3",
"OUMASHI- 3",
"NO LOGO- 2",
"NO LOGO- 4",
"OUMASHI- 2",
"NO LOGO- 1",
"OUMASHI- 1"
],
"images": [
"sg-11134201-8261h-mjghx9qafu2tf1",
"sg-11134201-8261h-mjghxa57zw1yc1",
"sg-11134201-8262g-mjghxatibll2f3",
"sg-11134201-8261j-mjghxbf8u39ib3",
"sg-11134201-8260p-mjghxbvarz0lcd",
"sg-11134201-82604-mjghxchls002af",
"sg-11134201-8261y-mjghxd0niyv5b6",
"sg-11134201-82629-mjghxdez1cecdc"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"VK63 movement"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 388050000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385431159200,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 388050000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43478015610,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjghx6648g78bb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":491,\"model_id\":385431159200,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zu-mjghx6648g78bb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":491,\"model_id\":385431159200,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43478015610",
"debug_info": null
},
{
"item_basic": {
"itemid": 54304638288,
"shopid": 1542929270,
"name": "For Garmin Fenix 7X 7 Pro 6 6X Pro 5X 5 Plus Sapphire Solar Wat Strap Bracelet Quick Release 26mm 22mm Silicone Band Wristband",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-82615-mjghsnd1zytj30",
"images": [
"sg-11134201-82615-mjghsnd1zytj30",
"sg-11134201-825zx-mjghsnr96igydc",
"sg-11134201-8260l-mjghso4d6osh1f",
"sg-11134201-8260k-mjghsont258med",
"sg-11134201-82633-mjghsphodblv2e",
"sg-11134201-82621-mjghsptywz5z4e",
"sg-11134201-8262p-mjghsqfyk8w496",
"sg-11134201-82611-mjghsqnw95hf51",
"sg-11134201-825zn-mjghsqzqx5hd9a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362333,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27640000000,
"price_min": 27640000000,
"price_max": 27640000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Blue 1",
"Green 1",
"Red 1",
"Orange Black",
"Green Black",
"Black 1",
"Red Black",
"Pink",
"Midnight blue Black",
"Black Orange",
"Midnight blue 1",
"Yellow 1",
"Army green Black",
"Teal",
"Black Red",
"Black Grey",
"Purple 1",
"Sky blue 1",
"Gray 1",
"Duck Green 1",
"White 1",
"White Orange",
"Orange 1",
"Lake blue 1",
"Army green 1",
"White blue"
],
"images": [
"sg-11134201-82611-mjghsqnw95hf51",
"sg-11134201-825zn-mjghsqzqx5hd9a",
"sg-11134201-825zl-mjghsrc0ly4i22",
"sg-11134201-82607-mjghsrqsmjgi16",
"sg-11134201-8261w-mjghsrz7n7d3d9",
"sg-11134201-82627-mjghss6ex5hg49",
"sg-11134201-81zww-mio2npmyczcz07",
"sg-11134201-82620-mjghssosk1dt73",
"sg-11134201-8261r-mjghst20w7wj26",
"sg-11134201-8262o-mjghstetff9i3e",
"sg-11134201-8260d-mjghstolexvlbb",
"sg-11134201-8262a-mjghstxicavaeb",
"sg-11134201-8261f-mjghsu92v1mo6a",
"sg-11134201-82606-mjghsun1t5vm61",
"sg-11134201-82629-mjghsv32mcqsdb",
"sg-11134201-825zq-mjghsvcy5lvmf1",
"sg-11134201-8262c-mjghsvpqm39c0b",
"sg-11134201-82625-mjghsw2uyy9s2c",
"sg-11134201-825zt-mjghswkxwwzpa0",
"sg-11134201-82616-mjghswvs25fod1",
"sg-11134201-825zl-mjghsx5unoxt95",
"sg-11134201-82631-mjghsxdcjr4556",
"sg-11134201-8261l-mjghsxpvrabk58",
"sg-11134201-8261e-mjghsxz2h7uv2b",
"sg-11134201-8260u-mjghsy7kw35t58",
"sg-11134201-8262l-mjghsyl538qoae"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"QuickFit 22mm",
"QuickFit 26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27640000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 325431142691,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27640000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTgxLjE3X3tiMTFiYTNhZjQ4NTU3ZWUyY2M2MjMzYjMwMWYwM2MwMDowMjAwMDA3YmNlM2Y1ZTIxOjAxMDAwMWQxNmVjOTc4YWJ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NDEyNDY4NjAw",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54304638288,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82615-mjghsnd1zytj30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":502,\"model_id\":325431142691,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82615-mjghsnd1zytj30\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":502,\"model_id\":325431142691,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54304638288",
"debug_info": null
},
{
"item_basic": {
"itemid": 50154628822,
"shopid": 1542929270,
"name": "20mm 22mm Tropic Rubber Wat Band for Casio Seiko for New ving Quick Release Smart Wat Strap for Samsung,Huawei,Huami",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-82631-mjghu7z53i8480",
"images": [
"sg-11134201-82631-mjghu7z53i8480",
"sg-11134201-82633-mjghu8nnqepwe7",
"sg-11134201-82602-mjghu8zc035we7",
"sg-11134201-8260o-mjghu9qdcsg4fa",
"sg-11134201-8262h-mjghuab344qt65",
"sg-11134201-8261p-mjghubaajvgje3",
"sg-11134201-8260c-mjghubny2dqb28",
"sg-11134201-82605-mjghuc1jlc7692",
"sg-11134201-8262e-mjghucbi65mt4f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362399,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 26030000000,
"price_min": 26030000000,
"price_max": 26030000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"black",
"Blue",
"Orange",
"green"
],
"images": [
"sg-11134201-82605-mjghuc1jlc7692",
"sg-11134201-8262e-mjghucbi65mt4f",
"sg-11134201-8260q-mjghucoeq32836",
"sg-11134201-8261y-mjghud6bmdc104"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"20mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 26030000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370431150478,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 26030000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50154628822,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82631-mjghu7z53i8480\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1477,\"model_id\":370431150478,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82631-mjghu7z53i8480\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1477,\"model_id\":370431150478,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50154628822",
"debug_info": null
},
{
"item_basic": {
"itemid": 49154648821,
"shopid": 1542929270,
"name": "20mm 22mm Nylon Band For Samsung Galaxy Wat6 Classic 47mm For Tactical Strap For Huawei GT4 Pro 46mm For Huami/Xiaomi/ticwat",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699
],
"image": "sg-11134201-8260u-mjghtt5yvfutea",
"images": [
"sg-11134201-8260u-mjghtt5yvfutea",
"sg-11134201-825zs-mjghtu28q2o5fe",
"sg-11134201-8262r-mjghtun10rgme4",
"sg-11134201-8261a-mjghtvbc7bwj6c",
"sg-11134201-8260f-mjghtvzk85xi1d",
"sg-11134201-8262n-mjghtwpyptl365",
"sg-11134201-82630-mjghtxegkmpw0a",
"sg-11134201-8261w-mjghty78s8w69d",
"sg-11134201-8262c-mjghtz6g3qblf2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362383,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 34770000000,
"price_min": 34770000000,
"price_max": 34770000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Orange",
"Blue",
"Black",
"AGr"
],
"images": [
"sg-11134201-8261w-mjghty78s8w69d",
"sg-11134201-8262c-mjghtz6g3qblf2",
"sg-11134201-82615-mjghtzzx3coy38",
"sg-11134201-8262w-mjghu0v4a0aq6c"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 34770000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390431143612,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 34770000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49154648821,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjghtt5yvfutea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1540,\"model_id\":390431143612,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260u-mjghtt5yvfutea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1540,\"model_id\":390431143612,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49154648821",
"debug_info": null
},
{
"item_basic": {
"itemid": 40328005818,
"shopid": 1542929270,
"name": "22mm Silicone Soft Strap For Xiaomi Mi Wat Color 2 Sport Watband For Xiaomi Wat 2Pro S4 S3 S2 S1 Pro/Active Sports Correa",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-8261i-mjghtfzp0xs29f",
"images": [
"sg-11134201-8261i-mjghtfzp0xs29f",
"sg-11134201-82622-mjghtgmuru9v0b",
"sg-11134201-825zz-mjghth4cdgch5f",
"sg-11134201-8260d-mjghthl21ddt53",
"sg-11134201-8262o-mjghti2c9jpd65",
"sg-11134201-82616-mjghtileek92f6",
"sg-11134201-82604-mjghtj1gqj9ifc",
"sg-11134201-82614-mjghtj9s8ow0c2",
"sg-11134201-82621-mjghtjiim41t93"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362363,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 22810000000,
"price_min": 22810000000,
"price_max": 22810000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Teal green",
"Purple",
"Midnight blue",
"Black",
" Dark green",
"Grey",
"Orange",
"Red",
"Yellow",
"Pink sand",
"Wine red",
"White"
],
"images": [
"sg-11134201-82614-mjghtj9s8ow0c2",
"sg-11134201-82621-mjghtjiim41t93",
"sg-11134201-82623-mjghtjrwcvt223",
"sg-11134201-8261i-mjghtjznq8e9bb",
"sg-11134201-8262y-mjghtka05r0id9",
"sg-11134201-8262e-mjghtkhrx6v431",
"sg-11134201-825zr-mjghtkr90t1fd0",
"sg-11134201-8260v-mjghtl25s5j62e",
"sg-11134201-81ztq-mico6lnzkbus0f",
"sg-11134201-8262c-mjghtlf97ax1db",
"sg-11134201-82630-mjghtln44h6tf3",
"sg-11134201-8261j-mjghtluxg3r7a6"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Mi Watch Color Sport",
"Xiaomi S4 S3 S2 S1",
"Mi Watch Color",
"22MM Width Band",
"Xiaomi Watch 2 2Pro",
"Mi Watch Color 2"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 22810000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420431143171,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 22810000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40328005818,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261i-mjghtfzp0xs29f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2082,\"model_id\":420431143171,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261i-mjghtfzp0xs29f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2082,\"model_id\":420431143171,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40328005818",
"debug_info": null
},
{
"item_basic": {
"itemid": 57204624079,
"shopid": 1542929270,
"name": "20/22/26mm Quick-release Nylon Strap for Garmin Fenix 8/Tactix 8/Quatix 8 Sports Wristband Garmin tinct 3/Forerunner 970 965",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699
],
"image": "sg-11134201-8262e-mjghqnw9jj0i1f",
"images": [
"sg-11134201-8262e-mjghqnw9jj0i1f",
"sg-11134201-825zs-mjghqoctcqv893",
"sg-11134201-8261l-mjghqos3pkp0e6",
"sg-11134201-82627-mjghqp7hawhwd6",
"sg-11134201-82617-mjghqplgvhtsf3",
"sg-11134201-8260i-mjghqq203oqoc4",
"sg-11134201-82629-mjghqqn993pj0d",
"sg-11134201-8260l-mjghqr0sil8hdf",
"sg-11134201-82610-mjghqrhh0bnqcc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362236,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 33850000000,
"price_min": 33850000000,
"price_max": 33850000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black",
"Blue",
"Dark grey",
"Dark blue",
"Powder",
"Wine red",
"Army green.",
"Green",
"Starlight",
"Pearl white",
"Orange",
"Purple",
"Pink "
],
"images": [
"sg-11134201-8260l-mjghqr0sil8hdf",
"sg-11134201-82610-mjghqrhh0bnqcc",
"sg-11134201-8262m-mjghqrsw3v2eff",
"sg-11134201-8262d-mjghqsb0gft200",
"sg-11134201-8262r-mjghqsnfrjsy49",
"sg-11134201-8262n-mjghqt1qm1om2e",
"sg-11134201-8261v-mjghqtdxhpfnb3",
"sg-11134201-82612-mjghqtqwqk1w32",
"sg-11134201-8262g-mjghqu60xg5ica",
"sg-11134201-82634-mjghqufpmvwk24",
"sg-11134201-82631-mjghqury6znld5",
"sg-11134201-8260l-mjghqv56syki72",
"sg-11134201-8260b-mjghqvfzck5f1c"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Quick release 26mm",
"Quick release 22mm",
"Quick release 20mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 33850000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 259143571138,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 33850000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57204624079,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262e-mjghqnw9jj0i1f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1019,\"model_id\":259143571138,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262e-mjghqnw9jj0i1f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1019,\"model_id\":259143571138,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57204624079",
"debug_info": null
},
{
"item_basic": {
"itemid": 48704658221,
"shopid": 1542929270,
"name": "20/22mm Nylon Strap For Amazfit Bip S/ Bip s lite/Bip 3/Straots Elastic Sport Wristbands for Amazfit Bip 3 pro/GTS 2/3/2E",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608497696,
825465608499232,
1718093079,
1119699
],
"image": "sg-11134201-8262h-mjghpz3wg7wiec",
"images": [
"sg-11134201-8262h-mjghpz3wg7wiec",
"sg-11134201-825zu-mjghpzlyqcjlf2",
"sg-11134201-8262l-mjghpzzrbi802a",
"sg-11134201-8262x-mjghq0bgd6v8d4",
"sg-11134201-825zw-mjghq0y94ao2c3",
"sg-11134201-825zr-mjghq1bs9kht29",
"sg-11134201-82627-mjghq1p21og4d3",
"sg-11134201-8260a-mjghq28b3bied3",
"sg-11134201-8261j-mjghq2l1r3ltac"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362200,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 22350000000,
"price_min": 22350000000,
"price_max": 22350000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"ethnic white",
"ethnic purple",
"colorful bar",
"black",
"green arrow",
"brown leopard"
],
"images": [
"sg-11134201-8260a-mjghq28b3bied3",
"sg-11134201-8262h-mjghpz3wg7wiec",
"sg-11134201-8261j-mjghq2l1r3ltac",
"sg-11134201-8260f-mjghq2y2wtmq13",
"sg-11134201-82620-mjghq39z96h3f3",
"sg-11134201-8262t-mjghq43fi5mu7f"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"20mm",
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 22350000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 375431136221,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 22350000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48704658221,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262h-mjghpz3wg7wiec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1568,\"model_id\":375431136221,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262h-mjghpz3wg7wiec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1568,\"model_id\":375431136221,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48704658221",
"debug_info": null
},
{
"item_basic": {
"itemid": 47604658218,
"shopid": 1542929270,
"name": "Fenix8 Silicone Wat Band For Garmin Fenix E 8 7 7X 6 6X 5X Plus/Epix Pro 47mm 51mm/Enduro 3 QuickFit 22mm 26mm Strap Bracelets",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-82604-mjghp3k765fmac",
"images": [
"sg-11134201-82604-mjghp3k765fmac",
"sg-11134201-8260g-mjghp3x5k3k4b7",
"sg-11134201-82614-mjghp4cfemfb51",
"sg-11134201-825zn-mjghp53682dd13",
"sg-11134201-82608-mjghp5h566mf74",
"sg-11134201-82618-mjghp5v029dy19",
"sg-11134201-825zk-mjghp64ikef451",
"sg-11134201-8260q-mjghp70y6xab22",
"sg-11134201-8262s-mjghp7lka9s317"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362175,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 28330000000,
"price_min": 28330000000,
"price_max": 28330000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Starlight Orange",
"Coal Ash Black",
"Black Gray",
"Red Black",
"Orange Black",
"Army Green Black",
"Black Red",
"Mint Green Black",
"White Black",
"Black Orange",
"Dark Gray Orange",
"Black",
"White",
"Gray",
"Green",
"Lake blue",
"Orange",
"Midnight blue",
"Green Black"
],
"images": [
"sg-11134201-8260q-mjghp70y6xab22",
"sg-11134201-8262s-mjghp7lka9s317",
"sg-11134201-82615-mjghp88os6irc5",
"sg-11134201-82604-mjghp8s9ymmcdc",
"sg-11134201-8262h-mjghp9ctimm9a3",
"sg-11134201-82606-mjghpa1owwe8d4",
"sg-11134201-8262i-mjghpb0c6ccgd4",
"sg-11134201-82632-mjghpc59bfggdd",
"sg-11134201-8262f-mjghpcz2wsudc4",
"sg-11134201-8261k-mjghpdn9ooox80",
"sg-11134201-82633-mjghpe8iahab86",
"sg-11134201-8260e-mjghpes82oe837",
"sg-11134201-82610-mjghpf40o9vm90",
"sg-11134201-82607-mjghpfhdca9xe2",
"sg-11134201-8262m-mjghpgpk09hj39",
"sg-11134201-825zn-mjghphfhpts5d6",
"sg-11134201-8260u-mjghpi3xkzy898",
"sg-11134201-825zy-mjghpj1pjzlz2e",
"sg-11134201-8260t-mjghpka8l79d8a"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"1PCS QuickFit 22mm",
"1PCS QuickFit 26mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 28330000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435431130689,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 28330000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47604658218,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82604-mjghp3k765fmac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1632,\"model_id\":435431130689,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82604-mjghp3k765fmac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1632,\"model_id\":435431130689,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47604658218",
"debug_info": null
},
{
"item_basic": {
"itemid": 46454653664,
"shopid": 1721699676,
"name": "Allthebest- Pemutus Sinyal Navigasi Gps Mini Pelacak Tipe USB Shield GPS",
"label_ids": [
844931064601283,
1049112,
1400005524,
822059908662278,
825465608497696,
825465608499232
],
"image": "id-11134201-8224o-mjgho4q6sl534c",
"images": [
"id-11134201-8224o-mjgho4q6sl534c",
"id-11134201-8224u-mjgho5moj08w33",
"id-11134201-8224v-mjgho7askh6o70",
"id-11134201-8224x-mjgho9rfj94za9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768362135,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 37800000000,
"price_min": 37800000000,
"price_max": 37800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjar",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 37800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345431119179,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 37800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "3w07b397pj",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46454653664,
"shopid": 1721699676,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgho4q6sl534c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1400005524,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1713,\"model_id\":345431119179,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224o-mjgho4q6sl534c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1400005524,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":1713,\"model_id\":345431119179,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46454653664",
"debug_info": null
},
{
"item_basic": {
"itemid": 54204638091,
"shopid": 237617358,
"name": "HUAWEI WATCH GT 3 46mm FULLSET MULUSSS",
"label_ids": [
844931086908638,
844931064601283,
1049112,
1049127,
822059908662278,
825465608493600,
825465608499232,
1718093079
],
"image": "id-11134207-8224p-mjghg9qx9vcx6f",
"images": [
"id-11134207-8224p-mjghg9qx9vcx6f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361858,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 120000000000,
"price_min": 120000000000,
"price_max": 120000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 120000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385431090616,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 120000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Roxz.shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54204638091,
"shopid": 237617358,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjghg9qx9vcx6f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049127,822059908662278,825465608493600,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1221,\"model_id\":385431090616,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjghg9qx9vcx6f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049127,822059908662278,825465608493600,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":1221,\"model_id\":385431090616,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54204638091",
"debug_info": null
},
{
"item_basic": {
"itemid": 46304653497,
"shopid": 1542929270,
"name": "PINDU New Original Design Competitive Horse Racing Wates NH35A Sapphire Stainless Steel Luminous Leather Meanical Wat Men",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-8262r-mjghign3xji958",
"images": [
"sg-11134201-8262r-mjghign3xji958",
"sg-11134201-82607-mjghih42uepw6a",
"sg-11134201-8262r-mjghihh7sao341",
"sg-11134201-82631-mjghihxojzswe2",
"sg-11134201-8262t-mjghii96cgedbf",
"sg-11134201-825zq-mjghiisbx2wz7e",
"sg-11134201-8261v-mjghij9yqx3671",
"sg-11134201-8260n-mjghijkzkcn75e",
"sg-11134201-8261x-mjghik1c4cg299"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361848,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 2773840000000,
"price_min": 2773840000000,
"price_max": 2773840000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Green black",
"Green gold",
"Green",
"Green brown"
],
"images": [
"sg-11134201-8260n-mjghijkzkcn75e",
"sg-11134201-8261x-mjghik1c4cg299",
"sg-11134201-8261m-mjghikipb8cma7",
"sg-11134201-82606-mjghikzovxmua1"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 2773840000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 282332721049,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 2773840000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46304653497,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjghign3xji958\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1724,\"model_id\":282332721049,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262r-mjghign3xji958\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1724,\"model_id\":282332721049,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46304653497",
"debug_info": null
},
{
"item_basic": {
"itemid": 45904653487,
"shopid": 1542929270,
"name": "Garmin Nylon 22 26mm Loop Strap 5Plus 6Pro 7 Easy Fit Wristband Belt Replaceable Wat Band Fenix7X/5X/5XPlus/6X/6XPro Bracelet",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-825zo-mjghi5240jrb16",
"images": [
"sg-11134201-825zo-mjghi5240jrb16",
"sg-11134201-8262h-mjghi5cu2akk9c",
"sg-11134201-8262f-mjghi5thdz404c",
"sg-11134201-82625-mjghi68l84xw0a",
"sg-11134201-8262x-mjghi6khuewx1a",
"sg-11134201-8262a-mjghi6ul3shw57",
"sg-11134201-82628-mjghi74gka2r49",
"sg-11134201-82633-mjghi7fvgsnbaa",
"sg-11134201-8260i-mjghi7t8agw38f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361831,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 55700000000,
"price_min": 55700000000,
"price_max": 55700000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black brown",
"Black green",
"Black"
],
"images": [
"sg-11134201-82633-mjghi7fvgsnbaa",
"sg-11134201-8260i-mjghi7t8agw38f",
"sg-11134201-82634-mjghi80am2gwca"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Quick fit 26mm",
"Quick fit 22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 55700000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 400431088175,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 55700000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45904653487,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjghi5240jrb16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1748,\"model_id\":400431088175,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zo-mjghi5240jrb16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1748,\"model_id\":400431088175,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45904653487",
"debug_info": null
},
{
"item_basic": {
"itemid": 45654644098,
"shopid": 1542929270,
"name": "22mm 20mm Band for Samsung Galaxy Wat 6 5 4 40mm 44mm 6classic Active 2 Stainless Steel ain Bracelet for Huawei GT2/3 Strap",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8261g-mjghis0dx5oh72",
"images": [
"sg-11134201-8261g-mjghis0dx5oh72",
"sg-11134201-825zw-mjghisnt2jgm06",
"sg-11134201-82601-mjghit8ctkapad",
"sg-11134201-82631-mjghitsdoq9w72",
"sg-11134201-82625-mjghiudb4qv573",
"sg-11134201-8260t-mjghiv0c5n2e53",
"sg-11134201-825zx-mjghivjfb7yd21",
"sg-11134201-82600-mjghivwfylfp6a",
"sg-11134201-8262g-mjghiwcnhdz7dc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361865,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 47880000000,
"price_min": 47880000000,
"price_max": 47880000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Silver",
"black",
"Gold",
"starlight",
"rose gold"
],
"images": [
"sg-11134201-8261b-mjghixei1m2qd5",
"sg-11134201-82627-mjghiwtwunt107",
"sg-11134201-82635-mjghixyeji108b",
"sg-11134201-82600-mjghivwfylfp6a",
"sg-11134201-8262g-mjghiwcnhdz7dc"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"For GalaxyWatch 6",
"22mm",
"For Galaxy 4 Classic",
"For Galaxy 6 Classic",
"For Galaxy active 2",
"20mm",
"For GalaxyWatch 4",
"For GalaxyWatch5 Pro",
"For GalaxyWatch 5"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 47880000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 440431084518,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 47880000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45654644098,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261g-mjghis0dx5oh72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1760,\"model_id\":440431084518,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261g-mjghis0dx5oh72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1760,\"model_id\":440431084518,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45654644098",
"debug_info": null
},
{
"item_basic": {
"itemid": 28694027246,
"shopid": 1594875075,
"name": "Smartwatch Pengisi daya jam tangan pintar",
"label_ids": [
844931064601283,
844931086908638,
1059152,
1049122,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "id-11134207-8224o-mjf7uoihhzpjb8",
"images": [
"id-11134207-8224o-mjf7uoihhzpjb8",
"id-11134207-8224x-mjf7uoihksuf3b",
"id-11134207-8224v-mjgh32fhqfwkbc",
"id-11134207-82252-mjf7uoihgl53c7",
"id-11134207-8224p-mjf7uoihje9z91",
"id-11134207-82250-mjgh32fhp1c4c4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361813,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 99999900000,
"price_min": 99999900000,
"price_max": 99999900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 96999900000,
"strikethrough_price": 99999900000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1333041579311104,
"discount_text": null,
"model_id": 198798779508,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1333041579311104,
"voucher_code": "0ICK6",
"voucher_discount": 3000000000,
"time_info": {
"start_time": 1768370640,
"end_time": 1776441600,
"valid_duration": null
},
"groups": [],
"min_spend": 50000000000
},
"recommended_platform_voucher_info": null,
"original_price": 99999900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Watch specialty store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 28694027246,
"shopid": 1594875075,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjf7uoihhzpjb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2158,\"model_id\":198798779508,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjf7uoihhzpjb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2158,\"model_id\":198798779508,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28694027246",
"debug_info": null
},
{
"item_basic": {
"itemid": 55004623997,
"shopid": 1542929270,
"name": "Original Wat LCD Screen For Garmin VENU 2 LCD splay Screen Repair Replacement Parts",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8262k-mjghgrunnegzec",
"images": [
"sg-11134201-8262k-mjghgrunnegzec",
"sg-11134201-8261o-mjghgs9xhxc102",
"sg-11134201-82607-mjghgspuvgn838",
"sg-11134201-82615-mjghgta6mj2d11",
"sg-11134201-825zs-mjghgttnfnk4cb",
"sg-11134201-8262n-mjghgubc6d5219",
"sg-11134201-8260z-mjghguq5vegx6e",
"sg-11134201-82620-mjghgv5po2kg65",
"sg-11134201-825zk-mjghgvixds0338"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361769,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 219690000000,
"price_min": 219690000000,
"price_max": 219690000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Silver",
"black"
],
"images": [
"sg-11134201-82620-mjghgv5po2kg65",
"sg-11134201-825zk-mjghgvixds0338"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 219690000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 340431081439,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 219690000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55004623997,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262k-mjghgrunnegzec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1166,\"model_id\":340431081439,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262k-mjghgrunnegzec\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1166,\"model_id\":340431081439,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55004623997",
"debug_info": null
},
{
"item_basic": {
"itemid": 52204628560,
"shopid": 1542929270,
"name": "20mm 22mm Colorful Resin Band For Garmin Forerunner 970 570 745 965 245 255 265 645 Wat Strap Venu 2 3 SQ Vivoactive 6 5 4 3",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8261o-mjghffwvzk76ea",
"images": [
"sg-11134201-8261o-mjghffwvzk76ea",
"sg-11134201-825zt-mjghfgj638jm06",
"sg-11134201-8260e-mjghfh4m13wi99",
"sg-11134201-825zo-mjghfhmx0h6ocf",
"sg-11134201-8261q-mjghfi4x3zlsd6",
"sg-11134201-8261d-mjghfii0dips57",
"sg-11134201-8260e-mjghfjfnqps4bf",
"sg-11134201-8262p-mjghfjr3b4045b",
"sg-11134201-82631-mjghfk91q4u861"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361708,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27640000000,
"price_min": 27640000000,
"price_max": 27640000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Clear-Black",
"Colorful",
"Clear-Colorful",
"Clear"
],
"images": [
"sg-11134201-8262p-mjghfjr3b4045b",
"sg-11134201-82631-mjghfk91q4u861",
"sg-11134201-8262f-mjghfkpwxk3m25",
"sg-11134201-825zt-mjghfl3a835u47"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Forerunner55 158 165",
"Forerunner 645 245",
"20mm width band",
"22mm width band",
"Forerunner 970",
"Forerunner 570 47mm",
"Forerunner 265 255",
"Forerunner 745 965",
"Garmin Vivoactive 5",
"Garmin Vivoactive 4",
"Forerunner 570 42mm",
"Garmin Vivoactive 6",
"Garmin Venu 2 3",
"22mm Garmin Active",
"Garmin Vivoactive 3",
"Approach S70 42mm",
"Approach S70 47mm",
"Garmin Active 5 6",
"Garmin Venu SQ SQ2",
"Forerunner 265 Music",
"Forerunner 255 Music",
"Forerunner 245 Music",
"Forerunner 645 Music"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27640000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 440431054991,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27640000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52204628560,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261o-mjghffwvzk76ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1343,\"model_id\":440431054991,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261o-mjghffwvzk76ea\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1343,\"model_id\":440431054991,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52204628560",
"debug_info": null
},
{
"item_basic": {
"itemid": 51204628498,
"shopid": 1542929270,
"name": "22mm Luxury Stainless Steel Wat Band for Huawei Wat GT5/GT4 46MM Wat4/4Pro Men Business Strap for Amazfit Balance Bracelet",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8260c-mjghf3luxe6e5b",
"images": [
"sg-11134201-8260c-mjghf3luxe6e5b",
"sg-11134201-825zy-mjghf4h3tt6ue4",
"sg-11134201-825zz-mjghf54gfw1t06",
"sg-11134201-8261m-mjghf5dld7gge9",
"sg-11134201-8260n-mjghf5sxvaita2",
"sg-11134201-82613-mjghf6hqez9ibe",
"sg-11134201-8260v-mjghf6vow74603",
"sg-11134201-8260b-mjghf74l1ibq96",
"sg-11134201-8261a-mjghf7cv553403"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361693,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 40290000000,
"price_min": 40290000000,
"price_max": 40290000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Titanium-Quick",
"Grey-Quick",
"Black-Quick",
"Silver-Quick",
"Titanium color",
"Grey",
"Black",
"Silver"
],
"images": [
"sg-11134201-8260b-mjghf74l1ibq96",
"sg-11134201-8261a-mjghf7cv553403",
"sg-11134201-82618-mjghf7joho1u45",
"sg-11134201-8262u-mjghf7pnwrur2d",
"sg-11134201-8260i-mjghf7wb7mdj7a",
"sg-11134201-825zu-mjghf84v2f4229",
"sg-11134201-82606-mjghf8ux6r5s23",
"sg-11134201-8260n-mjghf91qkooy91"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 40290000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405431054633,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 40290000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51204628498,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260c-mjghf3luxe6e5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1417,\"model_id\":405431054633,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260c-mjghf3luxe6e5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1417,\"model_id\":405431054633,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51204628498",
"debug_info": null
},
{
"item_basic": {
"itemid": 56304633321,
"shopid": 1542929270,
"name": "Titanium Strap for Garmin Fenix 7X 6X Enduro 1/2 Magnetic 26mm 22mm Strap for Garmin Fenix 6/7 Pro tinct 2 Epix Series MARQ",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608497696,
825465608499232,
1718093079,
1119699
],
"image": "sg-11134201-8261w-mjghd50fgv0i59",
"images": [
"sg-11134201-8261w-mjghd50fgv0i59",
"sg-11134201-82603-mjghd5l97ite96",
"sg-11134201-8260h-mjghd63hf5s071",
"sg-11134201-8261h-mjghd6lrw83mbb",
"sg-11134201-82622-mjghd7a7rfuu9c",
"sg-11134201-8260p-mjghd80z7eh395",
"sg-11134201-8262j-mjghd8lg58ub9d",
"sg-11134201-8262v-mjghd8wf1uknf6",
"sg-11134201-825zw-mjghd97bp0xz0b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361600,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 140110000000,
"price_min": 140110000000,
"price_max": 140110000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"silver",
"titanium color",
"black"
],
"images": [
"sg-11134201-8262v-mjghd8wf1uknf6",
"sg-11134201-825zw-mjghd97bp0xz0b",
"sg-11134201-82631-mjghd9itg1ds7e"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"United States",
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 140110000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 267332911860,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 140110000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56304633321,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261w-mjghd50fgv0i59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1080,\"model_id\":267332911860,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261w-mjghd50fgv0i59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608497696,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1080,\"model_id\":267332911860,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56304633321",
"debug_info": null
},
{
"item_basic": {
"itemid": 52604633298,
"shopid": 1542929270,
"name": "Galaone Garmin tinct 2 Wat Strap 22mm Silicone Sport Replaceable Wristband For tinct 1/Esports/Solar Band Bracelet",
"label_ids": [
844931064601283,
1059154,
1059152,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-8260n-mjghbs51hslf3f",
"images": [
"sg-11134201-8260n-mjghbs51hslf3f",
"sg-11134201-82612-mjghbsqfemf597",
"sg-11134201-8260r-mjghbtmf6xvq46",
"sg-11134201-8262m-mjghbuam2zuu38",
"sg-11134201-82600-mjghbuy147i993",
"sg-11134201-82600-mjghbvlaq32d2f",
"sg-11134201-8260m-mjghbwbf9jwm43",
"sg-11134201-8260c-mjghbx1cfhtyc3",
"sg-11134201-8261h-mjghbyj40npg29"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361553,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 25110000000,
"price_min": 25110000000,
"price_max": 25110000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"6",
"7",
"1",
"4",
"5",
"2",
"3",
"8",
"9"
],
"images": [
"sg-11134201-82607-mjghc7cgw35wa2",
"sg-11134201-8261r-mjghc90t7chvda",
"sg-11134201-8260c-mjghbx1cfhtyc3",
"sg-11134201-8261h-mjghbyj40npg29",
"sg-11134201-8262i-mjghbzj6cum82b",
"sg-11134201-8262g-mjghc178zr459d",
"sg-11134201-8261x-mjghc2tcvyfb38",
"sg-11134201-8262y-mjghc4mn32tia9",
"sg-11134201-82626-mjghc5hc60hy03"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"22mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 25110000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 335431043751,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 25110000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52604633298,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjghbs51hslf3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1314,\"model_id\":335431043751,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjghbs51hslf3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1314,\"model_id\":335431043751,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52604633298",
"debug_info": null
},
{
"item_basic": {
"itemid": 57754637960,
"shopid": 1542929270,
"name": "New PINDU Wat Unique al Design Style Men Meanical Wat Summer Bea Fashion Wat Glowing Waterproof Resin silicone strap",
"label_ids": [
844931064601283,
1718093079,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8260h-mjgh6v20txqf52",
"images": [
"sg-11134201-8260h-mjgh6v20txqf52",
"sg-11134201-8261c-mjgh6vq02oec8a",
"sg-11134201-8261a-mjgh6wqhv5s516",
"sg-11134201-8260b-mjgh6xdyf2fa4f",
"sg-11134201-82602-mjgh6y5xww7762",
"sg-11134201-82630-mjgh6yyq1sec6a",
"sg-11134201-82614-mjgh6zivmx3765",
"sg-11134201-8260r-mjgh70ginh1g49",
"sg-11134201-82602-mjgh70oidgqp97"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361310,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 3065710000000,
"price_min": 3065710000000,
"price_max": 3065710000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"SKY BLUE",
"Yellow",
"black",
"WHITE"
],
"images": [
"sg-11134201-8260r-mjgh70ginh1g49",
"sg-11134201-82602-mjgh70oidgqp97",
"sg-11134201-82603-mjgh70vmlukkdf",
"sg-11134201-82612-mjgh71u5yww436"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 3065710000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395431022656,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 3065710000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57754637960,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260h-mjgh6v20txqf52\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":975,\"model_id\":395431022656,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260h-mjgh6v20txqf52\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1059152,1059154,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":975,\"model_id\":395431022656,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57754637960",
"debug_info": null
},
{
"item_basic": {
"itemid": 55504637877,
"shopid": 1542929270,
"name": "Galaxy 46mm watband Replacement silicone strap For Samsung Gear S3 22mm sport wristband For Samsung Galaxy 46mm SM-R800 wat",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699
],
"image": "sg-11134201-82620-mjgh8y7yqp6r6a",
"images": [
"sg-11134201-82620-mjgh8y7yqp6r6a",
"sg-11134201-8260p-mjgh8ym1zdhi58",
"sg-11134201-82634-mjgh8zbzkq2u62",
"sg-11134201-8262q-mjgh8zxqodfma7",
"sg-11134201-82616-mjgh90j5rapv18",
"sg-11134201-8260i-mjgh915pjdhi63",
"sg-11134201-8261y-mjgh91kiu9z67a",
"sg-11134201-8262t-mjgh91u04wzmc7",
"sg-11134201-8262k-mjgh923ch4apec"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361405,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 31780000000,
"price_min": 31780000000,
"price_max": 31780000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"black",
"Midnight blue"
],
"images": [
"sg-11134201-8262t-mjgh91u04wzmc7",
"sg-11134201-8262k-mjgh923ch4apec"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"For Galaxy Watch46mm",
"Samsung Gear S3",
"Amazfit Stratos 2 3"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 31780000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445431030988,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 31780000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55504637877,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82620-mjgh8y7yqp6r6a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1133,\"model_id\":445431030988,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82620-mjgh8y7yqp6r6a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1133,\"model_id\":445431030988,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55504637877",
"debug_info": null
},
{
"item_basic": {
"itemid": 43978010457,
"shopid": 1542929270,
"name": "20mm 22mm Metal Strap for Huawei Wat GT/2/3/4/GT5/GT6 Pro 46mm Stainless Steel Wristband for Samsung Galaxy Wat 5/6/7 Strap",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-825zw-mjgh7973abk0b3",
"images": [
"sg-11134201-825zw-mjgh7973abk0b3",
"sg-11134201-8260u-mjgh79uywgzp57",
"sg-11134201-8260n-mjgh7ank4p35b3",
"sg-11134201-8261j-mjgh7bezlvyc78",
"sg-11134201-82615-mjgh7c68x6o25b",
"sg-11134201-82613-mjgh7crsriti71",
"sg-11134201-8261r-mjgh7dhkxo1x61",
"sg-11134201-82604-mjgh7dygyjnr6a",
"sg-11134201-8261p-mjgh7ecyeio50b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361327,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 23730000000,
"price_min": 23730000000,
"price_max": 23730000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black",
"Silver and tool",
"Silver",
"Black and tool"
],
"images": [
"sg-11134201-82632-mjgh7evqa29s33",
"sg-11134201-82624-mjgh7fbc59mpeb",
"sg-11134201-82604-mjgh7dygyjnr6a",
"sg-11134201-8261p-mjgh7ecyeio50b"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Self-test width 22mm",
"Amazfit GTR 47mm",
"Huawei GT2 42mm",
"Huawei watch 42mm",
"Huawei Watch 4 3 Pro",
"Huawei GT5 GT4 46mm",
"Huawei GT6 Pro 46mm",
"Huawei GT5 Pro 46mm",
"Galaxy 5 44mm 40mm",
"Galaxy 4 44mm 40mm",
"Galaxy 6Classic Band",
"Galaxy 4Classic Band",
"Active2 40mm or 44mm",
"Huawei GT3 Pro 43mm",
"Galaxy 6 44mm 40mm",
"Galaxy 7 44mm 40mm",
"Huawei GT2 GT3 46mm",
"Huawei watch 46mm",
"Huawei GT3 Pro 46mm",
"Huawei GT6 46mm",
"Self-test width 20mm",
"Watch 5 Pro 45mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 23730000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310431604367,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 23730000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43978010457,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zw-mjgh7973abk0b3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1874,\"model_id\":310431604367,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zw-mjgh7973abk0b3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1874,\"model_id\":310431604367,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43978010457",
"debug_info": null
},
{
"item_basic": {
"itemid": 41078005665,
"shopid": 1542929270,
"name": "Fenix 7S /Fenix 5S Plus Wat Band 20mm tinct 2S Quick Fit Silicone Watband Strap for Garmin Fenix 6S Pro Straps Pink",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699
],
"image": "sg-11134201-8261j-mjgh7mwy48w69e",
"images": [
"sg-11134201-8261j-mjgh7mwy48w69e",
"sg-11134201-825zs-mjgh7nly1ddzd3",
"sg-11134201-8260a-mjgh7o9xr0g344",
"sg-11134201-82615-mjgh7owzy39h95",
"sg-11134201-8261z-mjgh7phmjnk578",
"sg-11134201-8261x-mjgh7q78wi6d17",
"sg-11134201-8260t-mjgh7qyiddl3b1",
"sg-11134201-8261t-mjgh7raotmo3ac",
"sg-11134201-8261c-mjgh7rll42rq9f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361348,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 40060000000,
"price_min": 40060000000,
"price_max": 40060000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Beige",
"Dark Blue",
"Orange Red",
"Pink",
"Rose Pink",
"Gray",
"Amber Yellow",
"Lake Blue",
"Black",
"White",
"Army Green",
"Light Blue",
"Wine Red"
],
"images": [
"sg-11134201-8261t-mjgh7raotmo3ac",
"sg-11134201-8261c-mjgh7rll42rq9f",
"sg-11134201-8262x-mjgh7s5te680c4",
"sg-11134201-82633-mjgh7sj9c7wi37",
"sg-11134201-8260l-mjgh7swk0mww33",
"sg-11134201-8262h-mjgh7tc9ju2v24",
"sg-11134201-82607-mjgh7tpcnqwy5e",
"sg-11134201-82621-mjgh7u1iemm836",
"sg-11134201-8260m-mjgh7udrpdkwd4",
"sg-11134201-8260j-mjgh7uppgcg2f0",
"sg-11134201-825zs-mjgh7v04jdon52",
"sg-11134201-8262f-mjgh7vdgmd4we9",
"sg-11134201-82628-mjgh7voxpl3506"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"instinct 2S",
"Fenix 6s 6spro",
"Fenix 7s",
"Fenix 5s 5splus"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 40060000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 262332894052,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 40060000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 41078005665,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261j-mjgh7mwy48w69e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2036,\"model_id\":262332894052,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261j-mjgh7mwy48w69e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2036,\"model_id\":262332894052,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41078005665",
"debug_info": null
},
{
"item_basic": {
"itemid": 54704623802,
"shopid": 1542929270,
"name": "26mm 22mm Silicone Strap For Garmin Fenix 8 E 7 7X 6X Pro 5XPlus Epix Pro Gen 2 47mm 51mm/Enduro 3 QuickFit Watband Bracelet",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "sg-11134201-8260n-mjgh5y3urwn569",
"images": [
"sg-11134201-8260n-mjgh5y3urwn569",
"sg-11134201-8261a-mjgh5yxs5fyde0",
"sg-11134201-82629-mjgh5ze2pssn04",
"sg-11134201-8260f-mjgh5zxuopaa3a",
"sg-11134201-822z7-mi9uymk8ip6u27",
"sg-11134201-8260c-mjgh6148uq6a58",
"sg-11134201-82622-mjgh61whee4l46",
"sg-11134201-8262f-mjgh62eaxvk5ce",
"sg-11134201-8260n-mjgh62we2y9w8f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361278,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 39830000000,
"price_min": 39830000000,
"price_max": 39830000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"dark blue silver",
"starlight silver",
"starlight black",
"blue silver",
"spaceH silver",
"spaceH black",
"blue black",
"gray black",
"dark blue black",
"pink silver",
"white silver",
"yellow silver",
"orange silver",
"green silver",
"gray silver",
"black silver",
"black black",
"yellow black",
"white black",
"green black",
"orange black",
"pink black"
],
"images": [
"sg-11134201-8262f-mjgh62eaxvk5ce",
"sg-11134201-8260n-mjgh62we2y9w8f",
"sg-11134201-8262a-mjgh63bt4ao102",
"sg-11134201-82632-mjgh63u73s3k9f",
"sg-11134201-82617-mjgh64es9ddybf",
"sg-11134201-8262a-mjgh654eqfpcd3",
"sg-11134201-8262i-mjgh6639lvk0e3",
"sg-11134201-82632-mjgh66fo21hd1d",
"sg-11134201-8262g-mjgh671do83m91",
"sg-11134201-8261j-mjgh67j7ss1va7",
"sg-11134201-8260i-mjgh6811yqkje7",
"sg-11134201-8262g-mjgh68krbj0k51",
"sg-11134201-8260c-mjgh6959pdz92e",
"sg-11134201-8260w-mjgh69jldgxs1e",
"sg-11134201-82626-mjgh6a7k6rd0e9",
"sg-11134201-825zy-mjgh6audwzd02e",
"sg-11134201-8260n-mjgh6bd6f1mt8a",
"sg-11134201-8260h-mjgh6bz1oy6909",
"sg-11134201-8262p-mjgh6cbv0ah036",
"sg-11134201-8261a-mjgh6cpca3glf5",
"sg-11134201-8262m-mjgh6d25k2rp4c",
"sg-11134201-8262c-mjgh6dgffi1309"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"QuickFit 26mm Width",
"For Fenix 8 47mm",
"For Fenix 8 51mm",
"QuickFit 22mm Width"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 39830000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 415431026678,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 39830000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54704623802,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjgh5y3urwn569\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1186,\"model_id\":415431026678,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjgh5y3urwn569\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1186,\"model_id\":415431026678,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54704623802",
"debug_info": null
},
{
"item_basic": {
"itemid": 53454637943,
"shopid": 1542929270,
"name": "20mm 22mm Magnetic Bracelet for Samsung Galaxy Wat 7/6/Classic/5/4/3 Braided Nylon Strap for Huawei Wat 4/3/GT 5 4 Band",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-825zx-mjgh3q1zjo5g0f",
"images": [
"sg-11134201-825zx-mjgh3q1zjo5g0f",
"sg-11134201-825zx-mjgh3rigxpmq82",
"sg-11134201-8261n-mjgh3ss7lc7b62",
"sg-11134201-8260k-mjgh3tcpz5l20f",
"sg-11134201-8261s-mjgh3u28peyv92",
"sg-11134201-8261f-mjgh3v8zy03la1",
"sg-11134201-8261j-mjgh3vrwi5fo83",
"sg-11134201-8262z-mjgh3xb5tjb587",
"sg-11134201-8260s-mjgh3zbruy9s56"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361172,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 35920000000,
"price_min": 35920000000,
"price_max": 35920000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Dark Blue",
"black",
"khaki",
"army green"
],
"images": [
"sg-11134201-8262z-mjgh3xb5tjb587",
"sg-11134201-8260s-mjgh3zbruy9s56",
"sg-11134201-82604-mjgh41g4bithdf",
"sg-11134201-8260a-mjgh43k3z9xe0d"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"22mm",
"20mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35920000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 330431004090,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35920000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53454637943,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zx-mjgh3q1zjo5g0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1260,\"model_id\":330431004090,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zx-mjgh3q1zjo5g0f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1260,\"model_id\":330431004090,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53454637943",
"debug_info": null
},
{
"item_basic": {
"itemid": 52704623877,
"shopid": 1542929270,
"name": "Quick Fit Nylon Strap for Samsung Galaxy 7/6/5/4 40 44mm No Gaps Bracelet for Wat 6 4 Classic 43 47mm 42 46mm 5 Pro 45mm Band",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-82606-mjgh5chb7ait2f",
"images": [
"sg-11134201-82606-mjgh5chb7ait2f",
"sg-11134201-8261r-mjgh5cu5exvn82",
"sg-11134201-82631-mjgh5d78ycjlec",
"sg-11134201-82621-mjgh5dwuc2ysd3",
"sg-11134201-8260o-mjgh5erolr0la8",
"sg-11134201-82608-mjgh5fjr0xdt45",
"sg-11134201-8260l-mjgh5gcndiww1f",
"sg-11134201-8262l-mjgh5gn79af436",
"sg-11134201-82614-mjgh5h369v5t63"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361249,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 39600000000,
"price_min": 39600000000,
"price_max": 39600000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Black S",
"Blue Star",
"Black Star",
"Grey S",
"Blue S",
"Grey B",
"Green S",
"Blue B",
"Green Star",
"Grey Star",
"Orange Star",
"HMcS",
"HMcB",
"DigitalMcS",
"DigitalMcB",
"Green B",
"Orange S",
"Orange B",
"Black B",
"DesertMcB",
"JungleMcB",
"DesertMcS",
"JungleMcS"
],
"images": [
"sg-11134201-8260o-mjgh5jafaw3le7",
"sg-11134201-8262t-mjgh5o7uql8m7f",
"sg-11134201-82620-mjgh5kb25xqfaa",
"sg-11134201-8261i-mjgh5mf0gkjm51",
"sg-11134201-82623-mjgh5okql6v8da",
"sg-11134201-82618-mjgh5kt6scg7e2",
"sg-11134201-825zp-mjgh5js8kjk097",
"sg-11134201-82622-mjgh5nfjdp8n03",
"sg-11134201-8260o-mjgh5ldrcv7lb9",
"sg-11134201-82617-mjgh5lxs3thh9c",
"sg-11134201-8262d-mjgh5nsa9ybl6f",
"sg-11134201-8262l-mjgh5gn79af436",
"sg-11134201-82614-mjgh5h369v5t63",
"sg-11134201-82615-mjgh5hjv2u4kf9",
"sg-11134201-8260s-mjgh5i0diw3ma0",
"sg-11134201-8260h-mjgh5ipq1t6q70",
"sg-11134201-8262s-mjgh5mvcqosn84",
"sg-11134201-8260v-mjgh5n3txxc72b",
"sg-11134201-8262z-mjgh5ovk16o12b",
"sg-11134201-8260m-mjgh5p7aiubr48",
"sg-11134201-82614-mjgh5pqpnlz57f",
"sg-11134201-8262v-mjgh5q9yjockdd",
"sg-11134201-8261o-mjgh5qpa86bkea"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"China Mainland"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 39600000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420431017382,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 39600000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52704623877,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82606-mjgh5chb7ait2f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1310,\"model_id\":420431017382,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82606-mjgh5chb7ait2f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1310,\"model_id\":420431017382,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52704623877",
"debug_info": null
},
{
"item_basic": {
"itemid": 46754653408,
"shopid": 1542929270,
"name": "Stainless Steel Strap For Redmi Wat 5 Active Lite Band Metal Bracelet Watband For Xiaomi Redmi Wat 5 Lite Men Women Correa",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-82616-mjgh4ax3brpjc1",
"images": [
"sg-11134201-82616-mjgh4ax3brpjc1",
"sg-11134201-8261y-mjgh4bi1o3d321",
"sg-11134201-82620-mjgh4c0lbapsa1",
"sg-11134201-82603-mjgh4cki8mx0fa",
"sg-11134201-8261d-mjgh4d3usnibaa",
"sg-11134201-82630-mjgh4dn78jk549",
"sg-11134201-825zz-mjgh4e51oagx58",
"sg-11134201-8260s-mjgh4eewpbt1cd",
"sg-11134201-8260y-mjgh4emf28slb4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361189,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 32930000000,
"price_min": 32930000000,
"price_max": 32930000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Titanium Color",
"Starlight",
"Silver black",
"Silver",
"Rose gold",
"Black ",
"Silver gold",
"Sliver rose gold",
"Gold"
],
"images": [
"sg-11134201-8260s-mjgh4eewpbt1cd",
"sg-11134201-8260y-mjgh4emf28slb4",
"sg-11134201-8260e-mjgh4etvnzt2d5",
"sg-11134201-82633-mjgh4f6ssy6f0a",
"sg-11134201-825zn-mjgh4fjufj0ne5",
"sg-11134201-8262b-mjgh4frqk8w1d5",
"sg-11134201-8262c-mjgh4g6aups0a0",
"sg-11134201-8261d-mjgh4gi66n0ha7",
"sg-11134201-82601-mjgh4gw2h8nb4c"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"Redmi Watch 5 Lite",
"For strap width 22mm",
"Redmi Watch 5 Active"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 32930000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 350431009430,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 32930000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46754653408,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgh4ax3brpjc1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1693,\"model_id\":350431009430,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82616-mjgh4ax3brpjc1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1693,\"model_id\":350431009430,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46754653408",
"debug_info": null
},
{
"item_basic": {
"itemid": 56154628378,
"shopid": 1542929270,
"name": "For Huawei Wat 4 3 Stainless Steel Watband 20mm 22mm Bracelet For Huawei GT 4 3 2 46mm 42mm/GT2 GT3 Pro/GT3 SE/GT2E Strap",
"label_ids": [
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699
],
"image": "sg-11134201-825zy-mjgh248za1aa84",
"images": [
"sg-11134201-825zy-mjgh248za1aa84",
"sg-11134201-82609-mjgh24jm4jy8ee",
"sg-11134201-82601-mjgh24wbjh1g73",
"sg-11134201-8262n-mjgh256n41kx22",
"sg-11134201-82628-mjgh25m1pxq808",
"sg-11134201-8261s-mjgh25yhyps343",
"sg-11134201-8260g-mjgh26k3hgcl4f",
"sg-11134201-8260e-mjgh26s2w7i872",
"sg-11134201-8260n-mjgh27223l6v29"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361084,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 47420000000,
"price_min": 47420000000,
"price_max": 47420000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"SZ-silve-black",
"SZ-black-black",
"SZ-silver-brown",
"gal3 bk-br",
"SZ-black-brown"
],
"images": [
"sg-11134201-8261u-mjgh27bxzj0i17",
"sg-11134201-8260n-mjgh27223l6v29",
"sg-11134201-82628-mjgh27ktuyo021",
"sg-11134201-8262s-mjgh27x0qmfb08",
"sg-11134201-8260e-mjgh26s2w7i872"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"For GT3 SE",
"For GT 2E",
"20mm",
"For GT3 Pro 43mm",
"For GT 3 42mm",
"For GT 2 42mm",
"For Huawei Watch 3",
"For GT 4 46mm",
"For GT 3 46mm",
"For GT 2 46mm",
"For GT 2 Pro",
"22mm",
"For Huawei GT",
"For Huawei Watch 4",
"For GT3 Pro 46mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 47420000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 277332670159,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 47420000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56154628378,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgh248za1aa84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1092,\"model_id\":277332670159,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zy-mjgh248za1aa84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1092,\"model_id\":277332670159,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56154628378",
"debug_info": null
},
{
"item_basic": {
"itemid": 51754637878,
"shopid": 695736045,
"name": "Apple watch se gen 2",
"label_ids": [
844931064601283,
844931086908638,
700005490,
700005495,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
1119699
],
"image": "id-11134207-8224s-mjgfl2n0p69ud1",
"images": [
"id-11134207-8224s-mjgfl2n0p69ud1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361112,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "IWATCH",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 190000000000,
"price_min": 190000000000,
"price_max": 190000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 190000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435431002470,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 190000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "febbyy029",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51754637878,
"shopid": 695736045,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgfl2n0p69ud1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,700005495,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1377,\"model_id\":435431002470,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjgfl2n0p69ud1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,700005490,700005495,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":1377,\"model_id\":435431002470,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51754637878",
"debug_info": null
},
{
"item_basic": {
"itemid": 29294037141,
"shopid": 1542929270,
"name": "Quickfit 26mm 22mm Strap for Garmin Epix Pro 51mm 47mm Tactix 8 7 Pro Fenix 8 7 7X Enduro3 Genuine Leather Watband Accessories",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-82627-mjgh2iix4c8xbe",
"images": [
"sg-11134201-82627-mjgh2iix4c8xbe",
"sg-11134201-82627-mjgh2iix4c8xbe",
"sg-11134201-8260s-mjgh2jhx3shwd4",
"sg-11134201-82616-mjgh2jvkkxs4d0",
"sg-11134201-8260y-mjgh2kbsvs3n0b",
"sg-11134201-8261c-mjgh2kq7ij2d4a",
"sg-11134201-825zw-mjgh2l621khxe6",
"sg-11134201-8262o-mjgh2lkjiux1d5",
"sg-11134201-8260r-mjgh2lwy0gzq37"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768361102,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 35000000000,
"price_min": 35000000000,
"price_max": 35000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"BlackBlack",
"YellowBlack",
"BrownBlack"
],
"images": [
"sg-11134201-8262o-mjgh2lkjiux1d5",
"sg-11134201-8260r-mjgh2lwy0gzq37",
"sg-11134201-8261c-mjgh2kq7ij2d4a"
],
"properties": [],
"type": 0
},
{
"name": "Band Width",
"options": [
"26mm Fenix 7X 7X Pro",
"26mm",
"26mm Fenix 8 51mm",
"26mm Fenix 6X 6X Pro",
"26mm Enduro 3 2",
"22mm Fenix 7 7 Pro",
"22mm Fenix 8 47mm",
"22mm Fenix 6 6 Pro",
"22mm Epix Pro 47mm",
"26mm Tactix 7 7 Pro",
"22mm",
"26mm Epix Pro 51mm"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390431002404,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Martin Office",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 29294037141,
"shopid": 1542929270,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgh2iix4c8xbe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2136,\"model_id\":390431002404,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82627-mjgh2iix4c8xbe\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":2136,\"model_id\":390431002404,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29294037141",
"debug_info": null
},
{
"item_basic": {
"itemid": 40478005608,
"shopid": 1383313024,
"name": "Gpss Garmin Etrex 10 second normal Murah",
"label_ids": [
1400066568,
844931064601283,
844931086908638,
700005490,
700005495,
1718093079,
822059908662278,
825465608499232,
825465608497696
],
"image": "id-11134207-8224y-mjggueb2641x0c",
"images": [
"id-11134207-8224y-mjggueb2641x0c",
"id-11134207-8224t-mjggueb1cm4j27",
"id-11134207-8224x-mjgguecz6yo2af",
"id-11134207-8224t-mjggueaz4jr584"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768360849,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 160000000000,
"price_min": 160000000000,
"price_max": 160000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 160000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 375430980891,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 160000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "OnlineSurveypro15",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40478005608,
"shopid": 1383313024,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjggueb2641x0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":2069,\"model_id\":375430980891,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjggueb2641x0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,700005490,700005495,1718093079,822059908662278,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":2069,\"model_id\":375430980891,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40478005608",
"debug_info": null
},
{
"item_basic": {
"itemid": 46754643581,
"shopid": 1583967244,
"name": "100% Original Smartwatch Apple Watch Series 10 46mm With Sport Band/ iWatch Series 10 Jam Pintar Tahan retak dan tahan debu dengan level IP6X AMOLED HD Display Bluetooth Call Sports Fitness Tracker Smartwatch Pernah Dipakai Pria Wanita Smartwatch iPhone",
"label_ids": [
2023641,
2068629,
2018619,
298938357,
1428713,
1718087960,
844931086908638,
844931064601283,
1059152,
1049122,
1718093079,
822059908662278,
825465608499232,
1119699,
2098629
],
"image": "id-11134207-8224t-mjgfzo36fj0m47",
"images": [
"id-11134207-8224t-mjgfzo36fj0m47",
"id-11134207-8224p-mjgfzo39a2h346",
"id-11134207-8224r-mjgfzo394g7b4c",
"id-11134207-8224p-mjgfzo395urra0",
"id-11134207-8224w-mjgfzo3979c777",
"id-11134207-8224u-mjgfzo39bh1j91",
"id-11134207-8224z-mjgfzo39foqv3d",
"id-11134207-8224v-mjgg4w2id8ub9b",
"id-11134207-8224z-mjgg4w2ibu9vc6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768359896,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 75350000000,
"price_min": 75350000000,
"price_max": 75350000000,
"price_min_before_discount": 629900000000,
"price_max_before_discount": 629900000000,
"hidden_price_display": null,
"price_before_discount": 629900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-88%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vemw-mjgg5esv22gyaf.16000081768359557.mp4",
"thumb_url": "id-11110105-6vemw-mjgg5esv22gyaf_cover",
"duration": 40,
"version": 2,
"vid": "id-11110105-6vemw-mjgg5esv22gyaf",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vemw-mjgg5esv22gyaf.16000081768359557.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mjgg5esv22gyaf.16000081768359557.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemw-mjgg5esv22gyaf.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Series 10-Midnight",
"Series 10-Starlight",
"Series 10-White",
"Series 10-Pink",
"Series 10 42mm-Pink",
"Series 10-Midnight."
],
"images": [
"id-11134207-8224z-mjgg4w2ilo8z2e",
"id-11134207-8224o-mjgg4w2in2tf7f",
"id-11134207-8224u-mjgg4w2iohdv56",
"id-11134207-82250-mjgg4w2ipvyb52",
"id-11134207-8224t-mjggc06rv5dt4e",
"id-11134207-8224z-mjgg4w2ilo8z2e"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 374234283262625,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp246RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227921218519040,
"price": 74020000000,
"strikethrough_price": 629900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1272267834540032,
"discount_text": "-88%",
"model_id": 355430871448,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1272267834540032,
"voucher_code": "E4U8ZZZZZ",
"voucher_discount": 1330000000,
"time_info": {
"start_time": 1762570560,
"end_time": 1769164380,
"valid_duration": null
},
"groups": [],
"min_spend": 10000000000
},
"recommended_platform_voucher_info": null,
"original_price": 629900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp246RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Maple Digital Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMjAwLjU1X3tiMTFiYTNhZjQ4NTU3ZWZhZTNhMWY4MjE5NDA0YTYwMDowMjAwMDAxMDA1NWEyMGJhOjAxMDAwMTQwNzYxOTlkZmZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTYyOTU3NDY4NTI0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46754643581,
"shopid": 1583967244,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjgfzo36fj0m47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2068629,2018619,298938357,1428713,1718087960,844931086908638,844931064601283,1059152,1049122,1718093079,822059908662278,825465608499232,1119699,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1694,\"model_id\":355430871448,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjgfzo36fj0m47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2068629,2018619,298938357,1428713,1718087960,844931086908638,844931064601283,1059152,1049122,1718093079,822059908662278,825465608499232,1119699,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":1694,\"model_id\":355430871448,\"model_source\":0,\"price_source\":0,\"relevance_level\":0,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46754643581",
"debug_info": null
},
{
"item_basic": {
"itemid": 55804632630,
"shopid": 57065371,
"name": "Samsung Galaxy smart watch 6 Clasic 47mm unit only",
"label_ids": [
844931086908638,
700000503,
1049116,
822059908662278,
825465608499232,
1119699
],
"image": "id-11134207-8224o-mjgfjks0bdabef",
"images": [
"id-11134207-8224o-mjgfjks0bdabef",
"id-11134207-8224o-mjgfjksfot1ga5",
"id-11134207-8224s-mjgfjkunr6dg1f",
"id-11134207-82252-mjgfjkw9jhfr32",
"id-11134207-8224u-mjgfjksh0kcl6a",
"id-11134207-8224x-mjgfjksh1yx1cb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768358848,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Samsung",
"cmt_count": 0,
"flag": 65536,
"cb_option": 0,
"item_status": "new",
"price": 200000000000,
"price_min": 200000000000,
"price_max": 200000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Ngawi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 200000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395430779599,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 200000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "anggapratama999",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55804632630,
"shopid": 57065371,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgfjks0bdabef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,700000503,1049116,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":563,\"model_id\":395430779599,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjgfjks0bdabef\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,700000503,1049116,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":563,\"model_id\":395430779599,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55804632630",
"debug_info": null
},
{
"item_basic": {
"itemid": 29744037010,
"shopid": 1615694320,
"name": "HOT!!! For Renault Emulator For Sam-sung Universal Steering Lock Emulator Simulator ESL ELV with Lock Sound",
"label_ids": [
844931064601283,
1059152,
700005489,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699
],
"image": "sg-11134201-8260t-mjgfoxo7focj48",
"images": [
"sg-11134201-8260t-mjgfoxo7focj48",
"sg-11134201-8260f-mjgfoxzwit53d0",
"sg-11134201-82614-mjgfoywq2vwl6e",
"sg-11134201-82601-mjgfozlsdqmd60",
"sg-11134201-825zm-mjgfozvj9vr9bc",
"sg-11134201-8262o-mjgfp0abwwlj08",
"sg-11134201-8261s-mjgfp0lq9ssl5f",
"sg-11134201-8260x-mjgfp0unv1frd8",
"sg-11134201-825zl-mjgfp144gcn5ea"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768358787,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 78785500000,
"price_min": 78785500000,
"price_max": 78785500000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"for RENAULIT"
],
"images": [
"sg-11134201-8260x-mjgfp0unv1frd8"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 77785500000,
"strikethrough_price": 78785500000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1330143046811648,
"discount_text": null,
"model_id": 430430786929,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1330143046811648,
"voucher_code": "DELLDELLA",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1768024980,
"end_time": 1774940580,
"valid_duration": null
},
"groups": [],
"min_spend": 10000000000
},
"recommended_platform_voucher_info": null,
"original_price": 78785500000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Della_x_shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 29744037010,
"shopid": 1615694320,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260t-mjgfoxo7focj48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":564,\"model_id\":430430786929,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260t-mjgfoxo7focj48\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,825465608497696,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":564,\"model_id\":430430786929,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_29744037010",
"debug_info": null
},
{
"item_basic": {
"itemid": 48854647402,
"shopid": 1723798333,
"name": "Kospet Tank S1 Rugged Smartwatch Amoled SPO2 For Women",
"label_ids": [
844931064601283,
1059152,
1049122,
822059908662278,
825465608499232
],
"image": "sg-11134201-8260r-mjgefsq8ds7572",
"images": [
"sg-11134201-8260r-mjgefsq8ds7572",
"sg-11134201-82623-mjgefszk969w5c",
"sg-11134201-82635-mjgeft77etj533",
"sg-11134201-82610-mjgefte4ffgm5c",
"sg-11134201-8260m-mjgeftka7htt41",
"sg-11134201-8262k-mjgeftqfvfnp76",
"sg-11134201-82603-mjgeftwloy698e",
"sg-11134201-8261n-mjgefu4y21vl94"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768356676,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 299900000000,
"price_min": 299900000000,
"price_max": 299900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Black",
"White"
],
"images": [
"sg-11134201-82603-mjgeftwloy698e",
"sg-11134201-8261n-mjgefu4y21vl94"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 299900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370430625485,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 299900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GaleriGadget",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48854647402,
"shopid": 1723798333,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260r-mjgefsq8ds7572\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":581,\"model_id\":370430625485,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260r-mjgefsq8ds7572\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":581,\"model_id\":370430625485,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48854647402",
"debug_info": null
},
{
"item_basic": {
"itemid": 53754632141,
"shopid": 1723798333,
"name": "Kospet Tank M3 Ultra Bluetooth Calling Smartwatch GPS Amoled Waterproof SPO2 Jam Tangan Digital",
"label_ids": [
844931064601283,
1059152,
1049122,
822059908662278,
825465608499232
],
"image": "sg-11134201-82619-mjgefbx3q1a9db",
"images": [
"sg-11134201-82619-mjgefbx3q1a9db",
"sg-11134201-8261d-mjgefc6o28ld85",
"sg-11134201-825zv-mjgefcfdhuyve3",
"sg-11134201-8262g-mjgefcohrcat0c",
"sg-11134201-8261t-mjgefcxtqwhvd3",
"sg-11134201-8261k-mjgefd4aap6v8a",
"sg-11134201-82632-mjgefdc15tz7e7",
"sg-11134201-82608-mjgefdmt4emca7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768356654,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 349900000000,
"price_min": 349900000000,
"price_max": 349900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "WARNA",
"options": [
"BLACK",
"SILVER"
],
"images": [
"sg-11134201-82632-mjgefdc15tz7e7",
"sg-11134201-82608-mjgefdmt4emca7"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 349900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 272332434445,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 349900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GaleriGadget",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53754632141,
"shopid": 1723798333,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82619-mjgefbx3q1a9db\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":583,\"model_id\":272332434445,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82619-mjgefbx3q1a9db\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":583,\"model_id\":272332434445,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53754632141",
"debug_info": null
},
{
"item_basic": {
"itemid": 48554647417,
"shopid": 1723798333,
"name": "Kospet Pulse Casual Sporty Smartwatch GPS 1.96โ Amoled 180+ Sports Modes Strava Support",
"label_ids": [
844931064601283,
1059152,
1049122,
822059908662278,
825465608499232
],
"image": "sg-11134201-8262q-mjgefkdxqkn70e",
"images": [
"sg-11134201-8262q-mjgefkdxqkn70e",
"sg-11134201-825zr-mjgefkojm29w4d",
"sg-11134201-82612-mjgefkyft72914",
"sg-11134201-8260i-mjgefl8u5jiaf6",
"sg-11134201-8260g-mjgeflhqkooy48",
"sg-11134201-82625-mjgefloolq8351",
"sg-11134201-82617-mjgeflvhr9xc3d",
"sg-11134201-8261b-mjgefm299s79e5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768356665,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 199900000000,
"price_min": 199900000000,
"price_max": 199900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "WARNA",
"options": [
"GRAPHITE GREY",
"ICY SILVER"
],
"images": [
"sg-11134201-82617-mjgeflvhr9xc3d",
"sg-11134201-8261b-mjgefm299s79e5"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425430617443,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GaleriGadget",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48554647417,
"shopid": 1723798333,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgefkdxqkn70e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":582,\"model_id\":425430617443,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262q-mjgefkdxqkn70e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":582,\"model_id\":425430617443,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48554647417",
"debug_info": null
},
{
"item_basic": {
"itemid": 40177999686,
"shopid": 919858849,
"name": "Huawei band 9",
"label_ids": [
844931064601283,
1049112,
1059151,
1718093079,
822059908662278,
825465608499232,
1119699
],
"image": "id-11134207-8224q-mjgd2dpp5laafd",
"images": [
"id-11134207-8224q-mjgd2dpp5laafd",
"id-11134207-82250-mjgd2dqr8jk1a3",
"id-11134207-82251-mjgd2dpo29dwa5",
"id-11134207-8224y-mjgd2dt077y9fe",
"id-11134207-8224q-mjgd2dpmf9j598",
"id-11134207-8224x-mjgd2dpmgo3l7b",
"id-11134207-82250-mjgd2dpmi2o1a5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768354581,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 25000000000,
"price_min": 25000000000,
"price_max": 25000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 25000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 315431070972,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 25000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Cuplis__",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40177999686,
"shopid": 919858849,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjgd2dpp5laafd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":603,\"model_id\":315431070972,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjgd2dpp5laafd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":603,\"model_id\":315431070972,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40177999686",
"debug_info": null
},
{
"item_basic": {
"itemid": 49554656290,
"shopid": 29809856,
"name": "Apple Watch SE 44mm 2020 gps",
"label_ids": [
1059152,
700005487,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
1718093079
],
"image": "id-11134207-8224p-mjgcylj08hs3f2",
"images": [
"id-11134207-8224p-mjgcylj08hs3f2",
"id-11134207-8224t-mjgcylike77qf7",
"id-11134207-8224v-mjgcylj38nifd0",
"id-11134207-8224x-mjgcyliu6rr8d4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768354344,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "new",
"price": 160000000000,
"price_min": 160000000000,
"price_max": 160000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 160000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395430459204,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 160000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "badCalyx",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49554656290,
"shopid": 29809856,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgcylj08hs3f2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,700005487,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":179,\"model_id\":395430459204,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjgcylj08hs3f2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,700005487,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":179,\"model_id\":395430459204,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49554656290",
"debug_info": null
},
{
"item_basic": {
"itemid": 46204642214,
"shopid": 313289285,
"name": "jam swatch, jam vintage, jam wanita, jam pria murah, bekas, second, bukan smartwatch, bukan casio",
"label_ids": [
844931086908638,
844931064601283,
1400066568,
1059152,
1049124,
822059908662278,
825465608493600,
825465608494624,
822120592861206,
825465608499232,
825465608497696,
2048660,
2048661,
1718093079
],
"image": "id-11134207-8224t-mjgcwovv1ngh59",
"images": [
"id-11134207-8224t-mjgcwovv1ngh59"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768354321,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Swatch.",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 30000000000,
"price_min": 30000000000,
"price_max": 30000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "jam",
"options": [
"stopwatch",
"denim"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 30000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 330430459106,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 30000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Brodiee.market",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46204642214,
"shopid": 313289285,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjgcwovv1ngh59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1059152,1049124,822059908662278,825465608493600,825465608494624,822120592861206,825465608499232,825465608497696,2048660,2048661,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":605,\"model_id\":330430459106,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjgcwovv1ngh59\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1059152,1049124,822059908662278,825465608493600,825465608494624,822120592861206,825465608499232,825465608497696,2048660,2048661,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":605,\"model_id\":330430459106,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46204642214",
"debug_info": null
},
{
"item_basic": {
"itemid": 50404626585,
"shopid": 1636998644,
"name": "Huawei Watch Fit 4 Pro",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608493600,
1119699
],
"image": "id-11134207-8224r-mjgcf8rp9gcmca",
"images": [
"id-11134207-8224r-mjgcf8rp9gcmca",
"id-11134207-8224s-mjgcf8rpaux1f4",
"id-11134207-8224r-mjgcf8rpc9hha6",
"id-11134207-8224y-mjgcf8rpdo1x19",
"id-11134207-82251-mjgcf8rpf2md46",
"id-11134207-82250-mjgcf8rpgh6tc2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768353671,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 230000000000,
"price_min": 230000000000,
"price_max": 230000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 230000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425430427554,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 230000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Leonscake",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50404626585,
"shopid": 1636998644,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjgcf8rp9gcmca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608493600,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":625,\"model_id\":425430427554,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjgcf8rp9gcmca\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608493600,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":625,\"model_id\":425430427554,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50404626585",
"debug_info": null
},
{
"item_basic": {
"itemid": 50454635555,
"shopid": 768348160,
"name": "KARTU HALO GPS TRACKER PAKET 1 TAHUN",
"label_ids": [
2068629,
2018619,
298938357,
844931064601283,
844931086908638,
1049116,
1049117,
822059908662278,
825465608499232,
825465608493600,
825465608494624,
1718093079,
1119699,
2098629
],
"image": "id-11134207-8224x-mjg9i216mf4052",
"images": [
"id-11134207-8224x-mjg9i216mf4052",
"id-11134207-8224p-mjg9i216ntog3a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768348470,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 22500000000,
"price_min": 22500000000,
"price_max": 22500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp75RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 22500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395430239631,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 22500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp75RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "surabayaย seller",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50454635555,
"shopid": 768348160,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjg9i216mf4052\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2068629,2018619,298938357,844931064601283,844931086908638,1049116,1049117,822059908662278,825465608499232,825465608493600,825465608494624,1718093079,1119699,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":662,\"model_id\":395430239631,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjg9i216mf4052\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2068629,2018619,298938357,844931064601283,844931086908638,1049116,1049117,822059908662278,825465608499232,825465608493600,825465608494624,1718093079,1119699,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":662,\"model_id\":395430239631,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50454635555",
"debug_info": null
},
{
"item_basic": {
"itemid": 57004621326,
"shopid": 977661595,
"name": "samsung galaxy fit 3 second mulus",
"label_ids": [
844931086908638,
844931064601283,
1049116,
700005519,
1718093079,
822059908662278,
825465608494624,
825465608499232,
1119699
],
"image": "id-11134207-8224t-mjg8w468mark70",
"images": [
"id-11134207-8224t-mjg8w468mark70",
"id-11134207-8224w-mjg8w464bsap08",
"id-11134207-8224x-mjg8w45ngyytbb",
"id-11134207-8224s-mjg8w45xhyx12d",
"id-11134207-8224q-mjg8w46daux2d1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768347441,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Samsung",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 55000000000,
"price_min": 55000000000,
"price_max": 55000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Malang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 55000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 415430213254,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 55000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Bakoelย Malang",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57004621326,
"shopid": 977661595,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjg8w468mark70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,700005519,1718093079,822059908662278,825465608494624,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":667,\"model_id\":415430213254,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjg8w468mark70\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,700005519,1718093079,822059908662278,825465608494624,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":667,\"model_id\":415430213254,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57004621326",
"debug_info": null
},
{
"item_basic": {
"itemid": 47454650771,
"shopid": 385129155,
"name": "SMARTWATCH PEJE REVO",
"label_ids": [
2023641,
844931064601283,
1059150,
700005498,
1718093079,
822059908662278,
825465608499232,
2048660,
2048661,
825465608494624,
1119699
],
"image": "id-11134207-8224q-mjg7n226wg77d7",
"images": [
"id-11134207-8224q-mjg7n226wg77d7",
"id-11134207-8224s-mjg7n226xurnd6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768345485,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "PEJE",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 74750000000,
"price_min": 74750000000,
"price_max": 74750000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "WARNA",
"options": [
"BIRU",
"HITAM"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Medan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 74550000000,
"strikethrough_price": 74750000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1292691635978240,
"discount_text": null,
"model_id": 435430169570,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1292691635978240,
"voucher_code": "LIMCFGF3B",
"voucher_discount": 200000000,
"time_info": {
"start_time": 1763560138,
"end_time": 1769435160,
"valid_duration": null
},
"groups": [],
"min_spend": 35000000000
},
"recommended_platform_voucher_info": null,
"original_price": 74750000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Limcollectionmedan",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47454650771,
"shopid": 385129155,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjg7n226wg77d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059150,700005498,1718093079,822059908662278,825465608499232,2048660,2048661,825465608494624,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":679,\"model_id\":435430169570,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjg7n226wg77d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059150,700005498,1718093079,822059908662278,825465608499232,2048660,2048661,825465608494624,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":679,\"model_id\":435430169570,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47454650771",
"debug_info": null
},
{
"item_basic": {
"itemid": 44904639647,
"shopid": 1567084017,
"name": "Smartwatch Aolon GTR - Panggilan Bluetooth, Layar Sentuh 1.39 Inci, Tahan Air",
"label_ids": [
2143597,
2143613,
844931086908638,
844931064601283,
2103651,
700005490,
700005495,
822059908662278,
825465608499232,
1119699
],
"image": "id-11134207-8224s-mjfme9d0kkcg82",
"images": [
"id-11134207-8224s-mjfme9d0kkcg82",
"id-11134207-8224q-mjfme9d0lyww44"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768337240,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 20000000000,
"price_min": 20000000000,
"price_max": 20000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "colour",
"options": [
"black",
"Hitam"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 20000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395430016270,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 20000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Shop new",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44904639647,
"shopid": 1567084017,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjfme9d0kkcg82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,2143613,844931086908638,844931064601283,2103651,700005490,700005495,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":723,\"model_id\":395430016270,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mjfme9d0kkcg82\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,2143613,844931086908638,844931064601283,2103651,700005490,700005495,822059908662278,825465608499232,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":723,\"model_id\":395430016270,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44904639647",
"debug_info": null
},
{
"item_basic": {
"itemid": 42227998734,
"shopid": 77799993,
"name": "Apple Watch SE Gen 3 iBox Midnight",
"label_ids": [
1400066568,
2018619,
1428713,
1718087960,
844931064601283,
1049112,
700000501,
822059908662278,
825465608497696,
825465608494624,
825465608499232,
1718093079,
298463379,
1119699,
1718088045,
298468389
],
"image": "id-11134207-8224y-mjg0b4xzywhy1d",
"images": [
"id-11134207-8224y-mjg0b4xzywhy1d",
"id-11134207-82252-mjg0b4xnitc4a5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768333119,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 410000000000,
"price_min": 410000000000,
"price_max": 410000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sukabumi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 410000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 365429930109,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 410000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "7JanuariStore",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 42227998734,
"shopid": 77799993,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjg0b4xzywhy1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1428713,1718087960,844931064601283,1049112,700000501,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,298463379,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":730,\"model_id\":365429930109,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjg0b4xzywhy1d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,1428713,1718087960,844931064601283,1049112,700000501,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,298463379,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":730,\"model_id\":365429930109,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_42227998734",
"debug_info": null
},
{
"item_basic": {
"itemid": 55554614715,
"shopid": 1720936191,
"name": "XEROCHA NEW GPS TRACKER OBD CY01 ORIGINAL/GPS MOBIL DAN MOTOR",
"label_ids": [
844931064601283,
1049116,
1049117,
822059908662278,
825465608497696,
825465608499232
],
"image": "id-11134201-82252-mjfzsog4rrie08",
"images": [
"id-11134201-82252-mjfzsog4rrie08",
"id-11134201-8224u-mjfzsq7ciscl92",
"id-11134201-8224w-mjfzss0nkt8ge3",
"id-11134201-8224w-mjfzst3bk5j745",
"id-11134201-8224x-mjfzsuw48miqd5",
"id-11134201-8224v-mjfzsvxlnithf1",
"id-11134201-8224o-mjfzswzs00041c",
"id-11134201-8224s-mjfzsytbd7us1a",
"id-11134201-8224x-mjfzsztv6p6tc5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768332074,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 38166600000,
"price_min": 38166600000,
"price_max": 38166600000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"warna Acak",
"hitam"
],
"images": [
"id-11134201-8224x-mjfzt2b7cxky2d",
"id-11134201-8224t-mjfzt44oqgw78f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 38066300000,
"strikethrough_price": 38166600000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1332399523119104,
"discount_text": null,
"model_id": 365429892840,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1332399523119104,
"voucher_code": "XEROXERO",
"voucher_discount": 100300000,
"time_info": {
"start_time": 1768293720,
"end_time": 1776099540,
"valid_duration": null
},
"groups": [],
"min_spend": 10000000000
},
"recommended_platform_voucher_info": null,
"original_price": 38166600000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "XEROCHA",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55554614715,
"shopid": 1720936191,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjfzsog4rrie08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":731,\"model_id\":365429892840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82252-mjfzsog4rrie08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608497696,825465608499232],\"matched_keywords\":[\"\"],\"merge_rank\":731,\"model_id\":365429892840,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55554614715",
"debug_info": null
},
{
"item_basic": {
"itemid": 56354620203,
"shopid": 355570056,
"name": "Samsung Galaxy Watch 8 40mm โ Black (SEIN)",
"label_ids": [
844931064601283,
1049136,
1049112,
822059908662278,
825465608497696,
825465608493600,
825465608499232,
1718093079,
1119699
],
"image": "id-11134207-8224x-mjfyfu17bpc292",
"images": [
"id-11134207-8224x-mjfyfu17bpc292",
"id-11134207-82250-mjfyfu17d3wi95",
"id-11134207-8224z-mjfyfu17eigy5f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768331460,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Samsung",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 350000000000,
"price_min": 350000000000,
"price_max": 350000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Depok",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 350000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435429873139,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 350000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Tari-Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56354620203,
"shopid": 355570056,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfyfu17bpc292\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049136,1049112,822059908662278,825465608497696,825465608493600,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":734,\"model_id\":435429873139,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfyfu17bpc292\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049136,1049112,822059908662278,825465608497696,825465608493600,825465608499232,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":734,\"model_id\":435429873139,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56354620203",
"debug_info": null
},
{
"item_basic": {
"itemid": 45154638995,
"shopid": 1136167890,
"name": "HUAWEI WATCH FIT 4 Pro | Sapphire Glass & Titanium | Pro-Level Outdoor Sports | ECG | 10-Day Battery Life",
"label_ids": [
1718087960,
1428713,
844931064601283,
844931086908638,
1049141,
700005513,
822059908662278,
825465608499232,
825465608497696,
825465608493600,
825465608494624
],
"image": "id-11134207-8224u-mjfx77gaioslb5",
"images": [
"id-11134207-8224u-mjfx77gaioslb5",
"id-11134207-8224s-mjfx9hy7kf0h4b",
"id-11134207-82252-mjfxaw0565ty87",
"id-11134207-8224o-mjfxb3qfqozkd4",
"id-11134207-8224r-mjfxbbrqxmv423",
"id-11134207-8224t-mjfxbjm9zldwb3",
"id-11134207-8224t-mjfxc1kn2dj91a",
"id-11134207-82252-mjfxcbjikv0kf4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768328048,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 299900000000,
"price_min": 299900000000,
"price_max": 299900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bantul",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 299400000000,
"strikethrough_price": 299900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1332467588808704,
"discount_text": null,
"model_id": 297331962187,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1332467588808704,
"voucher_code": "DEVAZKAL",
"voucher_discount": 500000000,
"time_info": {
"start_time": 1768301723,
"end_time": 1769943180,
"valid_duration": null
},
"groups": [],
"min_spend": 50000000000
},
"recommended_platform_voucher_info": null,
"original_price": 299900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Adaby Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45154638995,
"shopid": 1136167890,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfx77gaioslb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1049141,700005513,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624],\"matched_keywords\":[\"\"],\"merge_rank\":738,\"model_id\":297331962187,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfx77gaioslb5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,844931086908638,1049141,700005513,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624],\"matched_keywords\":[\"\"],\"merge_rank\":738,\"model_id\":297331962187,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45154638995",
"debug_info": null
},
{
"item_basic": {
"itemid": 46604634260,
"shopid": 319802020,
"name": "F0S$IL SMARTWACH GEN 5E (PRELOVED) Belum pernah dipakai",
"label_ids": [
844931086908638,
1049142,
1049143,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696
],
"image": "id-11134207-8224r-mjfwg9s25yio21",
"images": [
"id-11134207-8224r-mjfwg9s25yio21",
"id-11134207-82251-mjfwg9s2lero1a",
"id-11134207-8224r-mjfwg9rz1l36ee",
"id-11134207-8224s-mjfwg9rz4e87a2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768327216,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Fossil",
"cmt_count": 0,
"flag": 65536,
"cb_option": 0,
"item_status": "new",
"price": 180000000000,
"price_min": 180000000000,
"price_max": 180000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Pekanbaru",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 180000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 282331943463,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 180000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Raya_Store31",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46604634260,
"shopid": 319802020,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjfwg9s25yio21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049142,1049143,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":740,\"model_id\":282331943463,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjfwg9s25yio21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049142,1049143,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":740,\"model_id\":282331943463,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46604634260",
"debug_info": null
},
{
"item_basic": {
"itemid": 57354618456,
"shopid": 46889567,
"name": "Garmin instinct 1 Solar",
"label_ids": [
1000167,
2018619,
2023641,
700190019,
844931086908638,
844931064601283,
1049112,
700005494,
822059908662278,
825465608499232,
825465608497696,
840990690654214,
840955085144628,
1119699,
1718093079,
1718596,
2213765
],
"image": "id-11134207-8224w-mjfu4c8zxvd06b",
"images": [
"id-11134207-8224w-mjfu4c8zxvd06b",
"id-11134207-8224y-mjfu4c9vb7y82e",
"id-11134207-82251-mjfu4caklfya89",
"id-11134207-82250-mjfu4c933nd223"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768322757,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 215000000000,
"price_min": 215000000000,
"price_max": 215000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Cimahi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 215000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395429574606,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 215000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "missile LEVEL",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57354618456,
"shopid": 46889567,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjfu4c8zxvd06b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,2023641,700190019,844931086908638,844931064601283,1049112,700005494,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,1119699,1718093079,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":765,\"model_id\":395429574606,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjfu4c8zxvd06b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,2023641,700190019,844931086908638,844931064601283,1049112,700005494,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,1119699,1718093079,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":765,\"model_id\":395429574606,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57354618456",
"debug_info": null
},
{
"item_basic": {
"itemid": 47504638209,
"shopid": 155105317,
"name": "GARMIN FORERUNNER 55",
"label_ids": [
1000167,
700190019,
1428713,
1718087960,
844931064601283,
1059152,
1049122,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1718596,
1119699,
2213765
],
"image": "id-11134207-8224r-mjft8xkpspa990",
"images": [
"id-11134207-8224r-mjft8xkpspa990",
"id-11134207-8224t-mjft8xksq1vp57"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768321269,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 110000000000,
"price_min": 110000000000,
"price_max": 110000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 110000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 350429493653,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 110000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "maulana_yogi25",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47504638209,
"shopid": 155105317,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjft8xkpspa990\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,700190019,1428713,1718087960,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1718596,1119699,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":772,\"model_id\":350429493653,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjft8xkpspa990\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,700190019,1428713,1718087960,844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1718596,1119699,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":772,\"model_id\":350429493653,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47504638209",
"debug_info": null
},
{
"item_basic": {
"itemid": 50004604104,
"shopid": 1725009913,
"name": "Apple Watch Series 5 - Second",
"label_ids": [
844931064601283,
1059152,
700005489,
822059908662278,
825465608499232,
1718596,
2213765
],
"image": "id-11134207-8224o-mjft37z8elfqa0",
"images": [
"id-11134207-8224o-mjft37z8elfqa0",
"id-11134207-8224v-mjft37z7mi2s25",
"id-11134207-82250-mjft37z2wjcx13",
"id-11134207-82251-mjft37z3hlvm1c",
"id-11134207-82250-mjft37z3g7b6ed"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768321012,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 175000000000,
"price_min": 175000000000,
"price_max": 175000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 175000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410429495003,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 175000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "qkghm_vtbn",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50004604104,
"shopid": 1725009913,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjft37z8elfqa0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,822059908662278,825465608499232,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":773,\"model_id\":410429495003,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mjft37z8elfqa0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005489,822059908662278,825465608499232,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":773,\"model_id\":410429495003,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50004604104",
"debug_info": null
},
{
"item_basic": {
"itemid": 52304608636,
"shopid": 202435500,
"name": "Smartwatch amazfit bip 3 pro gps",
"label_ids": [
1400066568,
844931064601283,
700005490,
1049137,
822059908662278,
825465608499232,
1718093079,
1718596,
2213765,
1119699
],
"image": "id-11134207-8224w-mjft4q75gjk246",
"images": [
"id-11134207-8224w-mjft4q75gjk246",
"id-11134207-8224x-mjft4q71eghs42",
"id-11134207-8224z-mjft4q76phqdd1",
"id-11134207-8224t-mjft4q71h9mo22",
"id-11134207-8224t-mjft4q8phn2823",
"id-11134207-8224s-mjft4q8oh4au78"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768320928,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Amazfit",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 45800000000,
"price_min": 45800000000,
"price_max": 45800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Serang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 45800000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420429483868,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 45800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "e-Gadget Pro",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52304608636,
"shopid": 202435500,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjft4q75gjk246\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,1049137,822059908662278,825465608499232,1718093079,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":775,\"model_id\":420429483868,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjft4q75gjk246\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,1049137,822059908662278,825465608499232,1718093079,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":775,\"model_id\":420429483868,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52304608636",
"debug_info": null
},
{
"item_basic": {
"itemid": 53004612843,
"shopid": 6971655,
"name": "Iwatch Apple Watch SE Gen 2 IBOX",
"label_ids": [
844931064601283,
1049124,
1059152,
1718093079,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
1119699,
1718596,
2213765
],
"image": "id-11134207-8224q-mjfpctsrppfnd7",
"images": [
"id-11134207-8224q-mjfpctsrppfnd7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768314672,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 320000000000,
"price_min": 320000000000,
"price_max": 320000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 320000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355429156891,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 320000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "itsmewk",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53004612843,
"shopid": 6971655,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfpctsrppfnd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049124,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":804,\"model_id\":355429156891,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfpctsrppfnd7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049124,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":804,\"model_id\":355429156891,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53004612843",
"debug_info": null
},
{
"item_basic": {
"itemid": 56154612646,
"shopid": 1219785103,
"name": "C5S Smart Bracelet Color Screen Sports Pedometer Heart Rate Blood Oxygen Blood Pressure Sleep Health Monitoring Bracelet",
"label_ids": [
844931086908638,
1049120,
700005490,
1718093079,
822059908662278,
825465608499232,
1718596,
2213765,
1119699
],
"image": "sg-11134201-8262d-mjfov5jo9ddz8b",
"images": [
"sg-11134201-8262d-mjfov5jo9ddz8b",
"sg-11134201-825zt-mjfov9t2jgg15a",
"sg-11134201-8260t-mjfov7dcp8n649",
"sg-11134201-82628-mjfovagfw83l70",
"sg-11134201-82614-mjfovb61tmgz77",
"sg-11134201-82623-mjfov64yjkeaf8",
"sg-11134201-82629-mjfov6qinqite4",
"sg-11134201-8262f-mjfov8q7j9xf7f",
"sg-11134201-82626-mjfovcap1yww2d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768313683,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 65536,
"cb_option": 0,
"item_status": "new",
"price": 32257800000,
"price_min": 32257800000,
"price_max": 32257800000,
"price_min_before_discount": 53762900000,
"price_max_before_discount": 53762900000,
"hidden_price_display": null,
"price_before_discount": 53762900000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-40%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Black",
"Sky Blue",
"Pink",
"Dark blue",
"Red"
],
"images": [
"sg-11134201-8262d-mjfov5jo9ddz8b",
"sg-11134201-82623-mjfov64yjkeaf8",
"sg-11134201-82629-mjfov6qinqite4",
"sg-11134201-8260t-mjfov7dcp8n649",
"sg-11134201-8262f-mjfov8q7j9xf7f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 401394431705343,
"bundle_deal_label": "Pilih 2, diskon 10%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 802788855054336,
"price": 32257800000,
"strikethrough_price": 53762900000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-40%",
"model_id": 330429092277,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 53762900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "alpin510",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56154612646,
"shopid": 1219785103,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262d-mjfov5jo9ddz8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049120,700005490,1718093079,822059908662278,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":809,\"model_id\":330429092277,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262d-mjfov5jo9ddz8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049120,700005490,1718093079,822059908662278,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":809,\"model_id\":330429092277,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56154612646",
"debug_info": null
},
{
"item_basic": {
"itemid": 49504622846,
"shopid": 1088185358,
"name": "Olike Lumi R1 Smartwatch Curved HD Display Bluetooth Call IP68",
"label_ids": [
2018619,
700700063,
2023641,
844931064601283,
844931086908638,
1400005551,
700000538,
822059908662278,
825465608497696,
2048660,
2048661,
825465608499232,
1718596,
2213765,
700765096
],
"image": "id-11134207-82252-mjfniotgr8jr8d",
"images": [
"id-11134207-82252-mjfniotgr8jr8d",
"id-11134207-8224t-mjfniot2xzidc1",
"id-11134207-8224x-mjfniotg6610c1",
"id-11134207-8224x-mjfniotgsn4776",
"id-11134207-82252-mjfgssq5g4jm19",
"id-11134207-8224v-mjfniosvzyf7e3",
"id-11134207-8224p-mjfniotgu1on05",
"id-11134207-8224z-mjfniot2ij9hbd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768311604,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Olike",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 35200000000,
"price_min": 35200000000,
"price_max": 35200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Space Grey"
],
"images": [
"id-11134207-8224y-mjfniotgwutj79"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Pangkal Pinang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35050000000,
"strikethrough_price": 35200000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1328027155054592,
"discount_text": null,
"model_id": 360428954951,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1328027155054592,
"voucher_code": "ORIGSIMA",
"voucher_discount": 150000000,
"time_info": {
"start_time": 1767772740,
"end_time": 1769849940,
"valid_duration": null
},
"groups": [],
"min_spend": 17500000000
},
"recommended_platform_voucher_info": null,
"original_price": 35200000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "PARTSHOP ORIGINALLINE",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49504622846,
"shopid": 1088185358,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfniotgr8jr8d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,2023641,844931064601283,844931086908638,1400005551,700000538,822059908662278,825465608497696,2048660,2048661,825465608499232,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":815,\"model_id\":360428954951,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfniotgr8jr8d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700700063,2023641,844931064601283,844931086908638,1400005551,700000538,822059908662278,825465608497696,2048660,2048661,825465608499232,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":815,\"model_id\":360428954951,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49504622846",
"debug_info": null
},
{
"item_basic": {
"itemid": 48104636820,
"shopid": 24160882,
"name": "[Preloved] Apple Watch Ultra 2 49MM Titanium Blue Ocean Band Second ORIGINAL",
"label_ids": [
1400066568,
844931064601283,
700005509,
1049138,
822059908662278,
825465608499232,
1718596,
2213765,
1119699
],
"image": "id-11134207-8224y-mjfmsbv7jqiqc0",
"images": [
"id-11134207-8224y-mjfmsbv7jqiqc0",
"id-11134207-8224s-mjfmsg7k1bepbb",
"id-11134207-8224t-mjfmsg8464g1f5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768310535,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 900000000000,
"price_min": 900000000000,
"price_max": 900000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 900000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 365428921020,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 900000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "VAULTED",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48104636820,
"shopid": 24160882,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjfmsbv7jqiqc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005509,1049138,822059908662278,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":818,\"model_id\":365428921020,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjfmsbv7jqiqc0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005509,1049138,822059908662278,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":818,\"model_id\":365428921020,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48104636820",
"debug_info": null
},
{
"item_basic": {
"itemid": 49554631156,
"shopid": 37744937,
"name": "VIVAN Smart Watch VWX1 Titanium Grey GPS TRACK",
"label_ids": [
1000167,
2018619,
844931086908638,
844931064601283,
1059150,
700005498,
822059908662278,
2048660,
2048661,
825465608493600,
825465608494624,
825465608499232,
1119699,
1718596,
2213765,
700765096
],
"image": "id-11134207-8224x-mjfiwa45j75v3e",
"images": [
"id-11134207-8224x-mjfiwa45j75v3e",
"id-11134207-82250-mjfiwa45m0ar2f",
"id-11134207-8224u-mjfiwa45klqbe3",
"id-11134207-8224p-mjfiwa45nev7b9",
"id-11134207-8224x-mjfiwa45otfneb",
"id-11134207-8224y-mjfiwa45q8034e",
"id-11134207-8224x-mjfiwa45rmkj15"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768305624,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Vivan",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 99600000000,
"price_min": 99600000000,
"price_max": 99600000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Medan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 99100000000,
"strikethrough_price": 99600000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1286883155263488,
"discount_text": null,
"model_id": 325428551216,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1286883155263488,
"voucher_code": "ALEX9HJNR",
"voucher_discount": 500000000,
"time_info": {
"start_time": 1762867715,
"end_time": 1768742760,
"valid_duration": null
},
"groups": [],
"min_spend": 50000000000
},
"recommended_platform_voucher_info": null,
"original_price": 99600000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Alexandrechristie",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49554631156,
"shopid": 37744937,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfiwa45j75v3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931086908638,844931064601283,1059150,700005498,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,1119699,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":803,\"model_id\":325428551216,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfiwa45j75v3e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931086908638,844931064601283,1059150,700005498,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,1119699,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":803,\"model_id\":325428551216,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49554631156",
"debug_info": null
},
{
"item_basic": {
"itemid": 52154615708,
"shopid": 385129155,
"name": "VIVAN Smart Watch VWX1 Titanium Grey GPS TRACK",
"label_ids": [
2023641,
844931064601283,
1059150,
700005498,
1718093079,
822059908662278,
825465608499232,
2048660,
2048661,
825465608494624,
1718596,
2213765,
700765096
],
"image": "id-11134207-8224u-mjfiwa45klqbe3",
"images": [
"id-11134207-8224u-mjfiwa45klqbe3",
"id-11134207-8224x-mjfiwa45j75v3e",
"id-11134207-82250-mjfiwa45m0ar2f",
"id-11134207-8224p-mjfiwa45nev7b9",
"id-11134207-8224x-mjfiwa45otfneb",
"id-11134207-8224y-mjfiwa45q8034e",
"id-11134207-8224x-mjfiwa45rmkj15"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768305513,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Vivan",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 82550000000,
"price_min": 82550000000,
"price_max": 82550000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Medan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 82350000000,
"strikethrough_price": 82550000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1292691635978240,
"discount_text": null,
"model_id": 287331242463,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1292691635978240,
"voucher_code": "LIMCFGF3B",
"voucher_discount": 200000000,
"time_info": {
"start_time": 1763560138,
"end_time": 1769435160,
"valid_duration": null
},
"groups": [],
"min_spend": 35000000000
},
"recommended_platform_voucher_info": null,
"original_price": 82550000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Limcollectionmedan",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52154615708,
"shopid": 385129155,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfiwa45klqbe3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059150,700005498,1718093079,822059908662278,825465608499232,2048660,2048661,825465608494624,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":692,\"model_id\":287331242463,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfiwa45klqbe3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059150,700005498,1718093079,822059908662278,825465608499232,2048660,2048661,825465608494624,1718596,2213765,700765096],\"matched_keywords\":[\"\"],\"merge_rank\":692,\"model_id\":287331242463,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52154615708",
"debug_info": null
},
{
"item_basic": {
"itemid": 51554601614,
"shopid": 1320354112,
"name": "GPS Garmin Etrex H Bekas Lengkap",
"label_ids": [
844931064601283,
700005490,
700005495,
822059908662278,
825465608497696,
825465608499232,
1718093079,
1119699,
1718596,
2213765
],
"image": "id-11134207-8224x-mjfjwbv4w7wh81",
"images": [
"id-11134207-8224x-mjfjwbv4w7wh81",
"id-11134207-8224w-mjfjwbvdzi8536",
"id-11134207-82250-mjfjwbvdwp399d",
"id-11134207-8224s-mjfjwbva8npfdc",
"id-11134207-82251-mjfjwbve0wsl8f",
"id-11134207-8224u-mjfjwbvdy3npb8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768305510,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 235000000000,
"price_min": 235000000000,
"price_max": 235000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 235000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 267331460417,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 235000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "CVย ABIZARย SURVEY",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51554601614,
"shopid": 1320354112,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfjwbv4w7wh81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,825465608497696,825465608499232,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":473,\"model_id\":267331460417,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfjwbv4w7wh81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,825465608497696,825465608499232,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":473,\"model_id\":267331460417,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51554601614",
"debug_info": null
},
{
"item_basic": {
"itemid": 57654606273,
"shopid": 1690111895,
"name": "StrapStainlessAmazfitT-Rex3 tali jam metal steel huami trex 3 t rex 3",
"label_ids": [
844931064601283,
1428713,
1718087960,
1049112,
1059151,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699,
298463379,
1718596,
2213765,
1718088045,
298468389
],
"image": "id-11134207-7rbke-m6dmoubikqug21",
"images": [
"id-11134207-7rbke-m6dmoubikqug21",
"id-11134207-7rbk6-m6dmoubijca059",
"id-11134207-7rbk4-m6dmoubim5ew20",
"id-11134207-7rbk5-m6dmoubinjzc62"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768305463,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 31633200000,
"price_min": 31633200000,
"price_max": 31633200000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Silver"
],
"images": [
"id-11134207-7rbkb-m6dmoubiqd4870",
"id-11134207-7rbk2-m6dmoubirrooee"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 31633200000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370428543423,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 31633200000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMzYuMTMxX3tiMTFiYTNhZjQ4NTU3ZjEyZjc4NGVlMDdlNzBiYTQwMDowMjAwMDA1MDdlNDczZWJjOjAxMDAwMThkNjcyMzM5YjZ9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NjA3NDY4Njc3",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57654606273,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbke-m6dmoubikqug21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1428713,1718087960,1049112,1059151,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":840,\"model_id\":370428543423,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbke-m6dmoubikqug21\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1428713,1718087960,1049112,1059151,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":840,\"model_id\":370428543423,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57654606273",
"debug_info": null
},
{
"item_basic": {
"itemid": 57204611050,
"shopid": 372006663,
"name": "iWatch Series 4 44mm BH100% Stainless Steel Silver Fullset Mulus",
"label_ids": [
2018619,
844931064601283,
298463379,
1049141,
1049156,
1718093079,
822059908662278,
825465608494624,
825465608499232,
2048660,
2048661,
1718596,
2213765,
700765096,
1119699,
1718088045,
298468389
],
"image": "id-11134207-82252-mjfjwgqxsx6v64",
"images": [
"id-11134207-82252-mjfjwgqxsx6v64",
"id-11134207-8224s-mjfjwgr2n3lwde",
"id-11134207-8224s-mjfjwgqtqu4m2f",
"id-11134207-8224q-mjfjwgr2lp1g8a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768305399,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 227900000000,
"price_min": 227900000000,
"price_max": 227900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sleman",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 227900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 360428532427,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 227900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Timeseries",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57204611050,
"shopid": 372006663,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfjwgqxsx6v64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049141,1049156,1718093079,822059908662278,825465608494624,825465608499232,2048660,2048661,1718596,2213765,700765096,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":459,\"model_id\":360428532427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfjwgqxsx6v64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049141,1049156,1718093079,822059908662278,825465608494624,825465608499232,2048660,2048661,1718596,2213765,700765096,1119699,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":459,\"model_id\":360428532427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57204611050",
"debug_info": null
},
{
"item_basic": {
"itemid": 55254606182,
"shopid": 220255938,
"name": "APPLE WATCH SERI 7 45MM",
"label_ids": [
844931064601283,
1400066568,
1059152,
700005489,
1718093079,
822059908662278,
825465608492064,
825465608493600,
825465608499232,
1718596,
2213765,
1119699
],
"image": "id-11134207-8224u-mjfjlquf6a6f95",
"images": [
"id-11134207-8224u-mjfjlquf6a6f95",
"id-11134207-8224t-mjfjlqu4hekmef",
"id-11134207-82251-mjfjlqwdg2yoc2",
"id-11134207-8224x-mjfjlqy13ta9a9",
"id-11134207-82252-mjfjlqu4r8jr6e",
"id-11134207-8224o-mjfjlqu4u1on8f",
"id-11134207-8224y-mjfjlqu4vg9343"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768305373,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 140000000000,
"price_min": 140000000000,
"price_max": 140000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 140000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 360428541843,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 140000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "EXOTIC_MULTYCOLOUR",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55254606182,
"shopid": 220255938,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfjlquf6a6f95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059152,700005489,1718093079,822059908662278,825465608492064,825465608493600,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":845,\"model_id\":360428541843,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjfjlquf6a6f95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059152,700005489,1718093079,822059908662278,825465608492064,825465608493600,825465608499232,1718596,2213765,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":845,\"model_id\":360428541843,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55254606182",
"debug_info": null
},
{
"item_basic": {
"itemid": 50754615799,
"shopid": 1690111895,
"name": "Strap Stainless Huawei Watch D2 tali jam tangan smartwatch",
"label_ids": [
844931064601283,
1718087960,
1428713,
1059151,
1049112,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
298463379,
1718596,
2213765,
298468389,
1718088045
],
"image": "id-11134207-7rbk6-m76oy4uoz31wd3",
"images": [
"id-11134207-7rbk6-m76oy4uoz31wd3",
"id-11134207-7rbk3-m76f3f24es81a0",
"id-11134207-7rbk7-m76oy4sh2brd9b",
"id-11134207-7rbk8-m76oy4sh2bku67",
"id-11134207-7rbke-m76oy4sh2bu46a",
"id-11134207-7rbk7-m76oy4sh3qek29"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768305461,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 22179600000,
"price_min": 22179600000,
"price_max": 22179600000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Silver",
"Hitam"
],
"images": [
"id-11134207-7rbkd-m76oy4sh7y3w83",
"id-11134207-7rbke-m76oy4sh6jjgb9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 22179600000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390428538369,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 22179600000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50754615799,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-m76oy4uoz31wd3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718087960,1428713,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":842,\"model_id\":390428538369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7rbk6-m76oy4uoz31wd3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718087960,1428713,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":842,\"model_id\":390428538369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50754615799",
"debug_info": null
},
{
"item_basic": {
"itemid": 49954621711,
"shopid": 1690111895,
"name": "Strap Stainless Redmi Watch 3 Tali Jam Steel Xiaomi Mi Lite Wristband",
"label_ids": [
844931064601283,
1718087960,
1428713,
1059151,
1049112,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699,
298463379,
1718596,
2213765,
298468389,
1718088045
],
"image": "id-11134201-7qul5-lh3p0m2wv7ua03",
"images": [
"id-11134201-7qul5-lh3p0m2wv7ua03",
"id-11134201-7qukz-lh3p0m36utng63",
"id-11134201-7qul6-lh3p0m5or65664",
"id-11134201-7qukx-lh3p0m9klgvf12"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768305462,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 21943200000,
"price_min": 21943200000,
"price_max": 21943200000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Silver"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 21943200000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405428538407,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 21943200000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49954621711,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul5-lh3p0m2wv7ua03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718087960,1428713,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":841,\"model_id\":405428538407,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul5-lh3p0m2wv7ua03\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718087960,1428713,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":841,\"model_id\":405428538407,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49954621711",
"debug_info": null
},
{
"item_basic": {
"itemid": 43828001683,
"shopid": 1690111895,
"name": "Strap Silicone Suunto Spartan ULTRA silikon tali rubber karet",
"label_ids": [
1428713,
1718087960,
844931064601283,
1059151,
1049112,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
298463379,
1718596,
2213765,
298468389,
1718088045
],
"image": "id-11134207-7r98s-lqognhxb302m1c",
"images": [
"id-11134207-7r98s-lqognhxb302m1c",
"id-11134207-7r991-lqognhxb4en298",
"id-11134207-7r98x-lqognhxb5t7i20",
"id-11134207-7r98q-lqognhxb77ryb2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768305461,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 30906000000,
"price_min": 30906000000,
"price_max": 30906000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Biru"
],
"images": [
"id-11134207-7rasg-m0sux2pgzw2472",
"id-11134207-7rasc-m0sux2ph1amkc4"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 30906000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 375428533364,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 30906000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43828001683,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lqognhxb302m1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":843,\"model_id\":375428533364,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7r98s-lqognhxb302m1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":843,\"model_id\":375428533364,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43828001683",
"debug_info": null
},
{
"item_basic": {
"itemid": 49954626003,
"shopid": 722750817,
"name": "GPS Garmin 64s bekas komplit Murah",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
1119699,
1718596,
2213765
],
"image": "id-11134207-8224x-mjfjc6vi0mis54",
"images": [
"id-11134207-8224x-mjfjc6vi0mis54",
"id-11134207-8224o-mjfjc6vmcjk20a",
"id-11134207-8224q-mjfjc6wqxe6a36",
"id-11134207-8224s-mjfjc6vn1ts08f",
"id-11134207-8224r-mjfjc6vn38cg08",
"id-11134207-8224z-mjfjc6vn4mww83"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768304564,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 490000000000,
"price_min": 490000000000,
"price_max": 490000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 490000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 177375865902,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 490000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "FIKRY SURVEY",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49954626003,
"shopid": 722750817,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfjc6vi0mis54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":849,\"model_id\":177375865902,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjfjc6vi0mis54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":849,\"model_id\":177375865902,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49954626003",
"debug_info": null
},
{
"item_basic": {
"itemid": 44554626064,
"shopid": 1427950315,
"name": "Smartwatch Aolon GTR 3",
"label_ids": [
844931064601283,
844931086908638,
1059156,
700005579,
1718093079,
822059908662278,
825465608499232,
1119699,
1718596,
2213765
],
"image": "id-11134207-8224w-mjfics3eq29wd8",
"images": [
"id-11134207-8224w-mjfics3eq29wd8",
"id-11134207-8224y-mjfics0bk6bob0",
"id-11134207-82252-mjfics25p2wyfe",
"id-11134207-8224r-mjfics07uqdj06"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768302921,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Aolon",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 32000000000,
"price_min": 32000000000,
"price_max": 32000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Blora",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 32000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355428368779,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 32000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "KyoOs",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44554626064,
"shopid": 1427950315,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjfics3eq29wd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059156,700005579,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":854,\"model_id\":355428368779,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mjfics3eq29wd8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059156,700005579,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":854,\"model_id\":355428368779,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44554626064",
"debug_info": null
},
{
"item_basic": {
"itemid": 54854610531,
"shopid": 958183516,
"name": "Infinix Smart 10 Plus ram 8/128Fullset mulus",
"label_ids": [
2018619,
844931064601283,
298463379,
1049112,
700000515,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
1718596,
2213765,
1718088045,
298468389
],
"image": "id-11134207-8224t-mjfidvp0t98i8e",
"images": [
"id-11134207-8224t-mjfidvp0t98i8e",
"id-11134207-8224y-mjfidvpg83k3a0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768302843,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Infinix",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 130000000000,
"price_min": 130000000000,
"price_max": 130000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Hot 40i",
"options": [
"Fulset",
"Hp & cas",
"Hp only"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Karawang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 130000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310428942945,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 130000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "NauraPonsel1",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54854610531,
"shopid": 958183516,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjfidvp0t98i8e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,700000515,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":855,\"model_id\":310428942945,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjfidvp0t98i8e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,700000515,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":855,\"model_id\":310428942945,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54854610531",
"debug_info": null
},
{
"item_basic": {
"itemid": 57154600984,
"shopid": 1683202782,
"name": "Coros pace 3 normal mulus",
"label_ids": [
1400066568,
844931064601283,
1049130,
700005503,
822059908662278,
825465608499232,
1718093079,
1119699,
1718596,
2213765
],
"image": "id-11134207-8224v-mjfi5gi9yhvna1",
"images": [
"id-11134207-8224v-mjfi5gi9yhvna1",
"id-11134207-8224x-mjfi5gie677k64",
"id-11134207-8224q-mjfi5gi7az9e45",
"id-11134207-8224u-mjfi5ghv4q2u60",
"id-11134207-82252-mjfi5gi9x3b71c",
"id-11134207-8224p-mjfi5gi7dsea4c",
"id-11134207-82250-mjfi5gm0kl4wa3",
"id-11134207-8224u-mjfi5gi55q121f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768302660,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "COROS",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 280000000000,
"price_min": 280000000000,
"price_max": 280000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Balikpapan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 280000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 218798585900,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 280000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "penytri",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57154600984,
"shopid": 1683202782,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mjfi5gi9yhvna1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1049130,700005503,822059908662278,825465608499232,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":858,\"model_id\":218798585900,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mjfi5gi9yhvna1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1049130,700005503,822059908662278,825465608499232,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":858,\"model_id\":218798585900,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57154600984",
"debug_info": null
},
{
"item_basic": {
"itemid": 53404600897,
"shopid": 26887717,
"name": "Redmi Watch 5 Active - GARANSI RESMI",
"label_ids": [
1000167,
1012865,
1013217,
2023641,
2018619,
298938357,
298888358,
1428713,
1718087960,
298463379,
844931064601283,
700005509,
1049138,
822059908662278,
825465608497696,
825465608492064,
825465608499232,
1718093079,
1119699,
1718596,
2213765,
2098629,
2098628,
298468389,
298938368,
1718088045
],
"image": "sg-11134201-8262m-mjfidbkr4mx357",
"images": [
"sg-11134201-8262m-mjfidbkr4mx357",
"sg-11134201-8260g-mjfidbl8rjly26",
"sg-11134201-8261a-mjfidbmnkf0k62",
"sg-11134201-8262f-mjfidbo0htky23",
"sg-11134201-8261s-mjfidbobp05ge0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768302750,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Xiaomi",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 52900000000,
"price_min": 52900000000,
"price_max": 52900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "WARNA",
"options": [
"BLACK",
"SILVER"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp87RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 52700000000,
"strikethrough_price": 52900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1330324609449984,
"discount_text": null,
"model_id": 430428351372,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1330324609449984,
"voucher_code": "HAPE899",
"voucher_discount": 200000000,
"time_info": {
"start_time": 1768046820,
"end_time": 1774962420,
"valid_duration": null
},
"groups": [],
"min_spend": 5000000000
},
"recommended_platform_voucher_info": null,
"original_price": 52900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp87RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Hapeworld",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53404600897,
"shopid": 26887717,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjfidbkr4mx357\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1012865,1013217,2023641,2018619,298938357,298888358,1428713,1718087960,298463379,844931064601283,700005509,1049138,822059908662278,825465608497696,825465608492064,825465608499232,1718093079,1119699,1718596,2213765,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":857,\"model_id\":430428351372,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262m-mjfidbkr4mx357\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,1012865,1013217,2023641,2018619,298938357,298888358,1428713,1718087960,298463379,844931064601283,700005509,1049138,822059908662278,825465608497696,825465608492064,825465608499232,1718093079,1119699,1718596,2213765,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":857,\"model_id\":430428351372,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53404600897",
"debug_info": null
},
{
"item_basic": {
"itemid": 41028001329,
"shopid": 1285362927,
"name": "Xiaomi Redmi Watch 5 Lite",
"label_ids": [
2023641,
2068629,
2018619,
298938357,
1428713,
1718087960,
844931064601283,
298463379,
700005509,
700000498,
1718093079,
822059908662278,
825465608497696,
2048660,
2048661,
825465608494624,
825465608499232,
1119699,
1718596,
2213765,
700765096,
298468389,
1718088045,
2098628,
2098629,
298938368
],
"image": "sg-11134201-8262k-mjfi6qsk4pvo35",
"images": [
"sg-11134201-8262k-mjfi6qsk4pvo35",
"sg-11134201-82611-mjfi6qttcq2u01",
"sg-11134201-8262x-mjfi6quvmqrr29",
"sg-11134201-8260q-mjfi6qvw6vb8de",
"sg-11134201-8260i-mjfi6qwwa878e7",
"sg-11134201-825zn-mjfi6qxsxvyb85",
"sg-11134201-8261e-mjfi6qzh5a8353"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768302443,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Xiaomi",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 81900000000,
"price_min": 81900000000,
"price_max": 81900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "WARNA",
"options": [
"BLACK",
"GOLD"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Banjarbaru",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp272RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 81700000000,
"strikethrough_price": 81900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1330704411934720,
"discount_text": null,
"model_id": 435428345707,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1330704411934720,
"voucher_code": "HAPERMIHJ",
"voucher_discount": 200000000,
"time_info": {
"start_time": 1768091618,
"end_time": 1773793860,
"valid_duration": null
},
"groups": [],
"min_spend": 50000000000
},
"recommended_platform_voucher_info": null,
"original_price": 81900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp272RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Hapeworldย Banjarbaru",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 41028001329,
"shopid": 1285362927,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262k-mjfi6qsk4pvo35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2068629,2018619,298938357,1428713,1718087960,844931064601283,298463379,700005509,700000498,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,1718596,2213765,700765096,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":859,\"model_id\":435428345707,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8262k-mjfi6qsk4pvo35\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,2068629,2018619,298938357,1428713,1718087960,844931064601283,298463379,700005509,700000498,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,1718596,2213765,700765096,298468389,1718088045,2098628,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":859,\"model_id\":435428345707,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41028001329",
"debug_info": null
},
{
"item_basic": {
"itemid": 55854600010,
"shopid": 1671553148,
"name": "Icom MA-510TR AIS Transponder Dengan GPS Receiver",
"label_ids": [
844931064601283,
1059152,
1049122,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699,
1718596,
2213765
],
"image": "id-11134207-8224y-mjffw5yom7lua0",
"images": [
"id-11134207-8224y-mjffw5yom7lua0",
"id-11134207-8224v-mjffw5z31xq862",
"id-11134207-8224v-mjffw5z33caoc4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768298867,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "ICOM",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 1000450000000,
"price_min": 1000450000000,
"price_max": 1000450000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1000450000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 297330963678,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1000450000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "King Marine Service",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55854600010,
"shopid": 1671553148,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjffw5yom7lua0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":866,\"model_id\":297330963678,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjffw5yom7lua0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049122,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":866,\"model_id\":297330963678,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55854600010",
"debug_info": null
},
{
"item_basic": {
"itemid": 55804589599,
"shopid": 1632555156,
"name": "(NEW ORI)Smart Watch SAMSUNG Galaxy Watch 8 [44mm] HD AMOLED Waterproof GPS NFC Max Multifunctiona Pemantauan detak jantung oksigen darah Smartwatch pria wanita Bluetooth call Pengingat pemberitahuan wireless charging Waterproof Jam Tangan",
"label_ids": [
2018619,
2023641,
1718087960,
1428713,
844931064601283,
844931086908638,
1049112,
1059151,
1718093079,
822059908662278,
825465608499232,
1119699,
1718596,
2213765
],
"image": "id-11134207-8224q-mjff5z4mqx39f9",
"images": [
"id-11134207-8224q-mjff5z4mqx39f9",
"id-11134207-8224x-mjff5z4mwjcweb",
"id-11134207-8224x-mjff5z4mxxxc1e",
"id-11134207-8224u-mjff5z4n96gw20",
"id-11134207-8224p-mjff5z4n4yrk30",
"id-11134207-8224r-mjff5z4mzchsa3",
"id-11134207-8224y-mjff5z4n0r2812",
"id-11134207-8224u-mjff5z4n6dc0f3",
"id-11134207-8224o-mjff5z4n25mo4f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768298820,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 168800000000,
"price_min": 168800000000,
"price_max": 168800000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven4-mjffsxzcuwhy09.16000081768298438.mp4",
"thumb_url": "id-11110105-6ven4-mjffsxzcuwhy09_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6ven4-mjffsxzcuwhy09",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven4-mjffsxzcuwhy09.16000081768298438.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mjffsxzcuwhy09.16000081768298438.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven4-mjffsxzcuwhy09.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "color",
"options": [
"black",
"white",
"black."
],
"images": [
"id-11134207-8224v-mjffwburphj9b7",
"id-11134207-8224p-mjffwbuvdiwy3f",
"id-11134207-8224u-mjffwbuvexhe9d"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 166800000000,
"strikethrough_price": 168800000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1322940797304880,
"discount_text": null,
"model_id": 320428069751,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1322940797304880,
"voucher_code": "GITBZ1996",
"voucher_discount": 2000000000,
"time_info": {
"start_time": 1767166080,
"end_time": 1775205360,
"valid_duration": null
},
"groups": [],
"min_spend": 60800000000
},
"recommended_platform_voucher_info": null,
"original_price": 168800000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "3C Smart watch Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55804589599,
"shopid": 1632555156,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjff5z4mqx39f9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1049112,1059151,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":867,\"model_id\":320428069751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjff5z4mqx39f9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1718087960,1428713,844931064601283,844931086908638,1049112,1059151,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":867,\"model_id\":320428069751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55804589599",
"debug_info": null
},
{
"item_basic": {
"itemid": 54954584910,
"shopid": 6899812,
"name": "huawei smart watch GT5 brand new",
"label_ids": [
1400066568,
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699,
1718596,
2213765
],
"image": "id-11134207-8224u-mjffo93nnzt2fd",
"images": [
"id-11134207-8224u-mjffo93nnzt2fd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768298319,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 200000000000,
"price_min": 200000000000,
"price_max": 200000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 200000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405428028116,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 200000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "TY Furniture",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54954584910,
"shopid": 6899812,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjffo93nnzt2fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":870,\"model_id\":405428028116,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjffo93nnzt2fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":870,\"model_id\":405428028116,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54954584910",
"debug_info": null
},
{
"item_basic": {
"itemid": 51054594150,
"shopid": 22524188,
"name": "Redmi Watch 5 Lite - Tahan Air 5ATM, 150+ Mode Olahraga, Baterai Tahan 18 Hari",
"label_ids": [
2143597,
1049116,
700005542,
47,
2023641,
2018619,
2068629,
298938357,
2143613,
2103651,
298463379,
1428713,
1718087960,
844931064601283,
822059908662278,
825465608497696,
2048660,
2048661,
825465608499232,
1718093079,
1119699,
1718596,
2213765,
700765096,
2098629,
2098628,
298938368,
1718088045,
298468389
],
"image": "id-11134207-8224q-mjfey9nx93pc0b",
"images": [
"id-11134207-8224q-mjfey9nx93pc0b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768297311,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Xiaomi",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 72000000000,
"price_min": 72000000000,
"price_max": 72000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "color",
"options": [
"black"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Ponorogo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp240RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 72000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345427933959,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 72000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp240RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ArtoMoro Cellular ",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51054594150,
"shopid": 22524188,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfey9nx93pc0b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,1049116,700005542,47,2023641,2018619,2068629,298938357,2143613,2103651,298463379,1428713,1718087960,844931064601283,822059908662278,825465608497696,2048660,2048661,825465608499232,1718093079,1119699,1718596,2213765,700765096,2098629,2098628,298938368,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":873,\"model_id\":345427933959,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfey9nx93pc0b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2143597,1049116,700005542,47,2023641,2018619,2068629,298938357,2143613,2103651,298463379,1428713,1718087960,844931064601283,822059908662278,825465608497696,2048660,2048661,825465608499232,1718093079,1119699,1718596,2213765,700765096,2098629,2098628,298938368,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":873,\"model_id\":345427933959,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51054594150",
"debug_info": null
},
{
"item_basic": {
"itemid": 56854589098,
"shopid": 610802470,
"name": "IMOO Z7 pink, blue, white, spesial edisi spiderman",
"label_ids": [
1718093079,
1049127,
1049112,
822059908662278,
825465608493600,
825465608499232,
1119699,
1718596,
2213765
],
"image": "id-11134207-82252-mjfepbryhe6a0c",
"images": [
"id-11134207-82252-mjfepbryhe6a0c",
"id-11134207-82250-mjfepbs3a6127e",
"id-11134207-8224p-mjfepbryk7b625",
"id-11134207-8224s-mjfepbt8u4u8ae",
"id-11134207-8224t-mjfepbtp12ip76"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768297018,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Imoo",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "new",
"price": 280000000000,
"price_min": 280000000000,
"price_max": 280000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "BLUE",
"options": [
"BLUE"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "PINK",
"options": [
"PINK",
"WHITE"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 280000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 365427916868,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 280000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "IMOO & Olike",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56854589098,
"shopid": 610802470,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfepbryhe6a0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718093079,1049127,1049112,822059908662278,825465608493600,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":874,\"model_id\":365427916868,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjfepbryhe6a0c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718093079,1049127,1049112,822059908662278,825465608493600,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":874,\"model_id\":365427916868,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56854589098",
"debug_info": null
},
{
"item_basic": {
"itemid": 55554589188,
"shopid": 1690111895,
"name": "Strap Stainless A Quick Fit Garmin Approach S60 S62 S70 47mm MARQ EPIX Gen 2 Pro 47mm Steel Tali Jam",
"label_ids": [
1428713,
1718087960,
844931064601283,
1049112,
1059151,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
298463379,
1718596,
2213765,
1718088045,
298468389
],
"image": "id-11134201-7qul7-lh4xko7cg4f338",
"images": [
"id-11134201-7qul7-lh4xko7cg4f338",
"id-11134201-7qul9-lh4xko7cepun84",
"id-11134201-7qukw-lh4xkob8919s7d",
"id-11134201-7qul3-lh4xkod666pe8f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768296978,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 28724400000,
"price_min": 28724400000,
"price_max": 28724400000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"A , Hitam"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 28724400000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385427911287,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 28724400000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55554589188,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul7-lh4xko7cg4f338\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":875,\"model_id\":385427911287,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul7-lh4xko7cg4f338\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":875,\"model_id\":385427911287,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55554589188",
"debug_info": null
},
{
"item_basic": {
"itemid": 51604593968,
"shopid": 1690111895,
"name": "Strap Stainless A Quick Fit Garmin Forerunner 935XT 935 945 955 965 Steel Tali Jam",
"label_ids": [
1428713,
1718087960,
844931064601283,
1049112,
1059151,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
298463379,
1718596,
2213765,
1718088045,
298468389
],
"image": "id-11134201-7qul7-lh4xko7cg4f338",
"images": [
"id-11134201-7qul7-lh4xko7cg4f338",
"id-11134201-7qul9-lh4xko7cepun84",
"id-11134201-7qukw-lh4xkob8919s7d",
"id-11134201-7qul3-lh4xkod666pe8f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768296977,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 28724400000,
"price_min": 28724400000,
"price_max": 28724400000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"A , Hitam"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 28724400000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 420427920684,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 28724400000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51604593968,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul7-lh4xko7cg4f338\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":876,\"model_id\":420427920684,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul7-lh4xko7cg4f338\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":876,\"model_id\":420427920684,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51604593968",
"debug_info": null
},
{
"item_basic": {
"itemid": 48404609106,
"shopid": 1690111895,
"name": "Strap Silicone Suunto 5 silicon tali jam tangan karet rubber wristband",
"label_ids": [
1428713,
1718087960,
844931064601283,
1059151,
1049112,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699,
298463379,
1718596,
2213765,
1718088045,
298468389
],
"image": "id-11134207-7qul6-lhh8kqaonpfjb2",
"images": [
"id-11134207-7qul6-lhh8kqaonpfjb2",
"id-11134207-7qul6-lhh8kqaokwan47",
"id-11134207-7qul6-lhh8kqaomav359",
"id-11134207-7qul5-lhh8kqaop3zzeb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768296976,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 27633600000,
"price_min": 27633600000,
"price_max": 27633600000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Kuning",
"Hitam",
"Putih"
],
"images": [
"id-11134207-7rasi-m1m2e83t177a64",
"id-11134207-7rasc-m1m2e83sye2e32",
"id-11134207-7rasm-m1m2e83szsmu1c"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27633600000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405427920910,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27633600000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48404609106,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul6-lhh8kqaonpfjb2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":877,\"model_id\":405427920910,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul6-lhh8kqaonpfjb2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":877,\"model_id\":405427920910,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48404609106",
"debug_info": null
},
{
"item_basic": {
"itemid": 57154593878,
"shopid": 1690111895,
"name": "Strap Silicone Suunto M Series Silikon M 1 2 4 5 Quest Silicon Tali Karet Rubber",
"label_ids": [
844931064601283,
1049112,
1059151,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1428713,
1718087960,
1119699,
298463379,
1718596,
2213765,
1718088045,
298468389
],
"image": "id-11134207-7qul4-lhh56bk5dutwc1",
"images": [
"id-11134207-7qul4-lhh56bk5dutwc1",
"id-11134207-7qukx-lhh56bk5cg9g12",
"id-11134207-7qul4-lhh56bk5f9ecea",
"id-11134207-7qukz-lhh56bk5gnys37"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768296409,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 35632800000,
"price_min": 35632800000,
"price_max": 35632800000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Abu Abu",
"Biru"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35632800000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 282330834292,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35632800000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57154593878,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhh56bk5dutwc1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1428713,1718087960,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":888,\"model_id\":282330834292,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhh56bk5dutwc1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1428713,1718087960,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":888,\"model_id\":282330834292,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57154593878",
"debug_info": null
},
{
"item_basic": {
"itemid": 56654589081,
"shopid": 1690111895,
"name": "Strap Stainless Garmin Lily tali jam tangan steel smartwatch",
"label_ids": [
1718087960,
1428713,
844931064601283,
1049112,
1059151,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
298463379,
1718596,
2213765,
298468389,
1718088045
],
"image": "id-11134201-7qul3-lgzw0l3w54fnce",
"images": [
"id-11134201-7qul3-lgzw0l3w54fnce",
"id-11134201-7qukz-lgzw0l78098050",
"id-11134201-7qul1-lgzw0l8ly84wfb",
"id-11134201-7qul8-lgzw0l0aaevu98"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768296500,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 33587000000,
"price_min": 33587000000,
"price_max": 33587000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Lily , Hitam",
"Lily , Silver"
],
"images": [
"id-11134207-7rasf-m3oxbdfcfukwde",
"id-11134207-7rasb-m3oxbdfch95c64"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 33587000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390427859984,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 33587000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56654589081,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul3-lgzw0l3w54fnce\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":883,\"model_id\":390427859984,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-7qul3-lgzw0l3w54fnce\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":883,\"model_id\":390427859984,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56654589081",
"debug_info": null
},
{
"item_basic": {
"itemid": 47504609016,
"shopid": 1690111895,
"name": "StrapStainlessAmazfitT-Rex2 tali jam metal steel huami trex 2 t rex 2",
"label_ids": [
1049112,
1059151,
844931064601283,
1718087960,
1428713,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699,
298463379,
1718596,
2213765,
1718088045,
298468389
],
"image": "id-11134207-7qul3-lhurion1ym3fe9",
"images": [
"id-11134207-7qul3-lhurion1ym3fe9",
"id-11134207-7qul3-lhurion1x7iz8e",
"id-11134207-7qul0-lhurion200nvf3",
"id-11134207-7qukw-lhurion21f8b1b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768296444,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 32724000000,
"price_min": 32724000000,
"price_max": 32724000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Rose Gold",
"Silver",
"Hitam"
],
"images": [
"id-11134207-7rbk6-m6wmgejcaf56fc",
"id-11134207-7rbkb-m6wmgejc7m0aeb",
"id-11134207-7rbk3-m6wmgejc90kq09"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 32724000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370427863709,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 32724000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47504609016,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul3-lhurion1ym3fe9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049112,1059151,844931064601283,1718087960,1428713,822059908662278,825465608499232,825465608497696,1718093079,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":886,\"model_id\":370427863709,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul3-lhurion1ym3fe9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049112,1059151,844931064601283,1718087960,1428713,822059908662278,825465608499232,825465608497696,1718093079,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":886,\"model_id\":370427863709,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47504609016",
"debug_info": null
},
{
"item_basic": {
"itemid": 44954618571,
"shopid": 1690111895,
"name": "Strap Stainless Fitbit Tipe R tali jam steel versa 4 3 sense 2 1 smartwatch",
"label_ids": [
1428713,
1718087960,
844931064601283,
1059151,
1049112,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
298463379,
1718596,
2213765,
298468389,
1718088045
],
"image": "id-11134207-7qul4-lhytopy57r6cd3",
"images": [
"id-11134207-7qul4-lhytopy57r6cd3",
"id-11134207-7qul6-lhytopy56clw8a",
"id-11134207-7qul1-lhytopy595qsa4",
"id-11134207-7qula-lhytopy5akb8c2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768296500,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 24361200000,
"price_min": 24361200000,
"price_max": 24361200000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Tipe R , Silver",
"Tipe R , Hitam"
],
"images": [
"id-11134207-7rasl-m17wswciwaw506",
"id-11134207-7rask-m17wswciuwbpfa"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24361200000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380427869933,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24361200000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44954618571,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhytopy57r6cd3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":884,\"model_id\":380427869933,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhytopy57r6cd3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1059151,1049112,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":884,\"model_id\":380427869933,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44954618571",
"debug_info": null
},
{
"item_basic": {
"itemid": 44654604497,
"shopid": 1690111895,
"name": "Strap Stainless Mi Watch Lite 2 tali jam steel xiaomi redmi metal",
"label_ids": [
1428713,
1718087960,
844931064601283,
1049112,
1059151,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
298463379,
1718596,
2213765,
1718088045,
298468389
],
"image": "id-11134207-7qul4-lhvemwbvl0xg1c",
"images": [
"id-11134207-7qul4-lhvemwbvl0xg1c",
"id-11134207-7qula-lhvemwbvmfhw15",
"id-11134207-7qula-lhvemwbvnu2cca"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768296411,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "new",
"price": 20588800000,
"price_min": 20588800000,
"price_max": 20588800000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Silver"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 20588800000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 297330843110,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 20588800000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Calista Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44654604497,
"shopid": 1690111895,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhvemwbvl0xg1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":887,\"model_id\":297330843110,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-7qul4-lhvemwbvl0xg1c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1049112,1059151,1718093079,822059908662278,825465608499232,825465608497696,1119699,298463379,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":887,\"model_id\":297330843110,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44654604497",
"debug_info": null
},
{
"item_basic": {
"itemid": 48104613670,
"shopid": 288075780,
"name": "Smartwatch Huawei Fit 4",
"label_ids": [
844931064601283,
844931086908638,
1049148,
1049145,
1718093079,
822059908662278,
825465608499232,
1119699,
1718596,
2213765
],
"image": "id-11134207-8224q-mjfe4f4oitxe73",
"images": [
"id-11134207-8224q-mjfe4f4oitxe73"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768295869,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 135000000000,
"price_min": 135000000000,
"price_max": 135000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandar Lampung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 135000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 262331030978,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 135000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "mrbeads",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48104613670,
"shopid": 288075780,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfe4f4oitxe73\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049148,1049145,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":892,\"model_id\":262331030978,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjfe4f4oitxe73\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049148,1049145,1718093079,822059908662278,825465608499232,1119699,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":892,\"model_id\":262331030978,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48104613670",
"debug_info": null
},
{
"item_basic": {
"itemid": 48254618216,
"shopid": 1659072746,
"name": "[Penukaran Poin Anggota]CityJungle Smartwatch Strap warna krim 22mm-GPSSE/GPSScout1/NeoGPS/APEX 1/X3",
"label_ids": [
2018618,
298888358,
298938357,
1718087960,
1428713,
844931064601283,
844931086908638,
298463379,
700005490,
1049120,
1718093079,
822059908662278,
2048660,
2048661,
840955085144628,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
840990690654214,
1119699,
1718596,
2213765,
700765096,
2213652,
1718088045,
298468389,
2098628,
298938368,
2098629
],
"image": "id-11134207-8224y-mj895475ryf848",
"images": [
"id-11134207-8224y-mj895475ryf848",
"id-11134207-8224z-mj895475p5ac00",
"id-11134207-8224p-mj895475qjusfe"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768295080,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "CITYJUNGLE",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "new",
"price": 266000000000,
"price_min": 266000000000,
"price_max": 266000000000,
"price_min_before_discount": 280000000000,
"price_max_before_discount": 280000000000,
"hidden_price_display": null,
"price_before_discount": 280000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-5%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "1",
"options": [
"warna krim"
],
"images": [
"id-11134207-8224y-mj895475ryf848"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp423RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 773880025776128,
"price": 254000000000,
"strikethrough_price": 280000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1299792132456448,
"discount_text": "-5%",
"model_id": 440427716978,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1299792132456448,
"voucher_code": "CITYQD120",
"voucher_discount": 12000000000,
"time_info": {
"start_time": 1764406560,
"end_time": 1772470740,
"valid_duration": null
},
"groups": [],
"min_spend": 50000000000
},
"recommended_platform_voucher_info": null,
"original_price": 280000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp423RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "CITYJUNGLE Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48254618216,
"shopid": 1659072746,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj895475ryf848\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298888358,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,2213652,1718088045,298468389,2098628,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":899,\"model_id\":440427716978,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj895475ryf848\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298888358,298938357,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,1718093079,822059908662278,2048660,2048661,840955085144628,825465608493600,825465608494624,825465608499232,825465608497696,840990690654214,1119699,1718596,2213765,700765096,2213652,1718088045,298468389,2098628,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":899,\"model_id\":440427716978,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48254618216",
"debug_info": null
},
{
"item_basic": {
"itemid": 54554587626,
"shopid": 1639314000,
"name": "[READY STOK]Huawei band 10 smartband baru garansi resmi",
"label_ids": [
844931064601283,
844931086908638,
1059152,
700005489,
822059908662278,
825465608499232,
825465608497696,
1718596,
2213765
],
"image": "sg-11134201-8261d-mjfbq2vdoefbac",
"images": [
"sg-11134201-8261d-mjfbq2vdoefbac",
"sg-11134201-8262u-mjfbq34wne9v62",
"sg-11134201-82604-mjfbq3d5p24hfd",
"sg-11134201-8260o-mjfbq3mo5u6fb9",
"sg-11134201-8260h-mjfbq3u6y5tt0e",
"sg-11134201-82613-mjfbq42u2y9z9f",
"sg-11134201-8262m-mjfbq4c3km4je7",
"sg-11134201-8261r-mjfbq4khvzt2f4",
"sg-11134201-82616-mjfbq4w4edj8aa"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768291579,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 21000000000,
"price_min": 21000000000,
"price_max": 21000000000,
"price_min_before_discount": 42000000000,
"price_max_before_discount": 42000000000,
"hidden_price_display": null,
"price_before_discount": 42000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-50%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Blackmate alumunium",
"White alumunium",
"Green alumunium",
"Purple alumunium",
"Blue alumunium",
"Black polymer",
"Pink polymer"
],
"images": [
"sg-11134201-8261r-mjfbq4khvzt2f4",
"sg-11134201-82616-mjfbq4w4edj8aa",
"sg-11134201-825zr-mjfbq555w2yr88",
"sg-11134201-8261b-mjfbq5ed49vpb4",
"sg-11134201-82611-mjfbq5naxzid1d",
"sg-11134201-8260r-mjfbq5uhvaisc5",
"sg-11134201-825zm-mjfbq639ltz7b9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 415257642414095,
"bundle_deal_label": "Pilih 2, diskon Rp5.000"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 830510343962624,
"price": 21000000000,
"strikethrough_price": 42000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-50%",
"model_id": 390427321510,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 42000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "lionstarshop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54554587626,
"shopid": 1639314000,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjfbq2vdoefbac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,700005489,822059908662278,825465608499232,825465608497696,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":675,\"model_id\":390427321510,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8261d-mjfbq2vdoefbac\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,700005489,822059908662278,825465608499232,825465608497696,1718596,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":675,\"model_id\":390427321510,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54554587626",
"debug_info": null
},
{
"item_basic": {
"itemid": 55454569876,
"shopid": 1607976290,
"name": "Garmin GPSMAP 86s โ GPS Navigasi Handheld Original Garansi Resmi TAM 2 Tahun GPS MAP 86s 86 s",
"label_ids": [
2018619,
1718087960,
1428713,
844931064601283,
844931086908638,
298463379,
700005490,
700005495,
1718093079,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
1119699,
1718596,
2213765,
1718088045,
298468389
],
"image": "id-11134207-8224y-mjf2pdcb8xs401",
"images": [
"id-11134207-8224y-mjf2pdcb8xs401",
"id-11134207-8224s-mjf2pdcb4q2scf",
"id-11134207-8224u-mjf2pdcb7j7o8b",
"id-11134207-8224q-mjf2pdcbacckca",
"id-11134207-8224t-mjf2pdcb64n8a4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768280375,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 725060000000,
"price_min": 725060000000,
"price_max": 725060000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6venb-mjf4t8jr06io7a.16000081768279957.mp4",
"thumb_url": "id-11110105-6venb-mjf4t8jr06io7a_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6venb-mjf4t8jr06io7a",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6venb-mjf4t8jr06io7a.16000081768279957.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mjf4t8jr06io7a.16000081768279957.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venb-mjf4t8jr06io7a.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 725060000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410426348459,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 725060000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "RICOM - Radio Komunikasi & GPS",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55454569876,
"shopid": 1607976290,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjf2pdcb8xs401\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,1119699,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":562,\"model_id\":410426348459,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjf2pdcb8xs401\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,1119699,1718596,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":562,\"model_id\":410426348459,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55454569876",
"debug_info": null
},
{
"item_basic": {
"itemid": 57554564406,
"shopid": 884876226,
"name": "(FREE ANTIGORES) Huawei Watch Fit 3 NFC Grey Second Like New Garansi Panjang",
"label_ids": [
2018619,
2023641,
844931064601283,
298463379,
1049112,
700000535,
822059908662278,
825465608499232,
1718093079,
1400066568,
1119699,
1718596,
2213765,
298468389,
1718088045
],
"image": "id-11134207-8224t-mjf138c8tl3a31",
"images": [
"id-11134207-8224t-mjf138c8tl3a31",
"id-11134207-8224p-mjf138c8pddy7f",
"id-11134207-82250-mjf138c8z7d28e",
"id-11134207-8224w-mjf138c8we86d3",
"id-11134207-8224p-mjf138c8qrye4d",
"id-11134207-8224x-mjf138c8s6iu1d",
"id-11134207-8224s-mjf138c8uznqb9",
"id-11134207-82252-mjf138c8xssmbe",
"id-11134207-8224t-mjf138c90lxi7c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768274871,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 119000000000,
"price_min": 119000000000,
"price_max": 119000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Kuningan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 119000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380426001930,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 119000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "zee_smartstore",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57554564406,
"shopid": 884876226,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjf138c8tl3a31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049112,700000535,822059908662278,825465608499232,1718093079,1400066568,1119699,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":495,\"model_id\":380426001930,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjf138c8tl3a31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,298463379,1049112,700000535,822059908662278,825465608499232,1718093079,1400066568,1119699,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":495,\"model_id\":380426001930,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57554564406",
"debug_info": null
},
{
"item_basic": {
"itemid": 45104586928,
"shopid": 538235194,
"name": "GPS Garmin inreach explorer plus terbaru/GARMINย inReachย Explorer +",
"label_ids": [
844931064601283,
844931086908638,
298463379,
700005490,
700005495,
1718093079,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
1119699,
1718596,
2213765,
298468389,
1718088045
],
"image": "id-11134207-8224r-mjeq4iv02txj31",
"images": [
"id-11134207-8224r-mjeq4iv02txj31",
"id-11134207-8224u-mjeq4iuzey9sc3",
"id-11134207-8224z-mjeq4iuzc54wfe",
"id-11134207-8224z-mjeq4iuzdjpc80",
"id-11134207-8224z-mjeq4ixswhdu98",
"id-11134207-8224r-mjeq4j15e32cef",
"id-11134207-8224q-mjeq4ixsxvya42"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768255583,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 600000000000,
"price_min": 600000000000,
"price_max": 600000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6venc-mjewanisz1tse6.16000091768265649.mp4",
"thumb_url": "id-11110107-6venc-mjewanisz1tse6_cover",
"duration": 19,
"version": 2,
"vid": "id-11110107-6venc-mjewanisz1tse6",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6venc-mjewanisz1tse6.16000091768265649.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venc-mjewanisz1tse6.16000091768265649.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venc-mjewanisz1tse6.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 600000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435425209964,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 600000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Surveying Store Indonesia",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogamAQqjAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuODQuMjZfe2IxMWJhM2FmNDg1NTdmMmMzMzQ1YjE4ZjRkYTU5ODAwOjAyMDAwMDJkMWRjY2ExMTA6MDEwMDAxMjJjOGQ0MmY4MX1fc2VhcmNoLWJmZnNlYXJjaC1saXZlLWlkLjI2MDExMjE1NDg0OTgzNzk4Ni4yNjAxMTIxNjMzMTc0NzIzOTA=",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45104586928,
"shopid": 538235194,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjeq4iv02txj31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":148,\"model_id\":435425209964,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjeq4iv02txj31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":148,\"model_id\":435425209964,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45104586928",
"debug_info": null
},
{
"item_basic": {
"itemid": 49354577068,
"shopid": 22519421,
"name": "NEW GPS Garmin Montana 710 Pengganti Garmin Montana 700",
"label_ids": [
1400066568,
2023641,
2068629,
2018619,
298938357,
700025282,
1428713,
1718087960,
844931064601283,
844931086908638,
298463379,
700005490,
700005495,
1718093079,
822059908662278,
840955085144628,
825465608497696,
840990690654214,
825465608494624,
822120592861206,
2048661,
2048660,
825465608499232,
827380695406658,
1718596,
2213765,
700765096,
1119699,
298488495,
298938368,
298468389,
2098629,
1718088045,
2098628
],
"image": "id-11134207-8224p-mjee63v6f1ms57",
"images": [
"id-11134207-8224p-mjee63v6f1ms57",
"id-11134207-8224z-mjee63v6gg78df",
"id-11134207-8224z-mjef1pcbyknad0",
"id-11134207-8224x-mjef1pcnicqtd8",
"id-11134207-8224q-mjef1pcngy6dc7",
"id-11134207-82252-mjef1pcm8001e8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768236786,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 1500000000000,
"price_min": 1500000000000,
"price_max": 1500000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vemw-mjef26826nt368.16000071768236653.mp4",
"thumb_url": "id-11110107-6vemw-mjef26826nt368_cover",
"duration": 46,
"version": 2,
"vid": "id-11110107-6vemw-mjef26826nt368",
"formats": [
{
"format": 1600007,
"defn": "V640P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vemw-mjef26826nt368.16000071768236653.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemw-mjef26826nt368.16000071768236653.mp4",
"width": 640,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemw-mjef26826nt368.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp5JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1500000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370424371927,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1500000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp5JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "DEALER ALAT SURVEY INDONESIA",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49354577068,
"shopid": 22519421,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjee63v6f1ms57\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2023641,2068629,2018619,298938357,700025282,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,840955085144628,825465608497696,840990690654214,825465608494624,822120592861206,2048661,2048660,825465608499232,827380695406658,1718596,2213765,700765096,1119699,298488495,298938368,298468389,2098629,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":776,\"model_id\":370424371927,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjee63v6f1ms57\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2023641,2068629,2018619,298938357,700025282,1428713,1718087960,844931064601283,844931086908638,298463379,700005490,700005495,1718093079,822059908662278,840955085144628,825465608497696,840990690654214,825465608494624,822120592861206,2048661,2048660,825465608499232,827380695406658,1718596,2213765,700765096,1119699,298488495,298938368,298468389,2098629,1718088045,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":776,\"model_id\":370424371927,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49354577068",
"debug_info": null
},
{
"item_basic": {
"itemid": 58154536396,
"shopid": 1550488284,
"name": "Smartwatch JETE LUXE Jam Tangan 1.85\" AMOLED Screen Display ChatGPT NFC AI System Bluetooth Call IP68 Waterproof Tahan Air 100+ Sport Mode Heart Rate Sleep Monitoring Jam Pria Wanita",
"label_ids": [
2018619,
1718087960,
1428713,
844931064601283,
844931086908638,
700005509,
700000498,
822059908662278,
2048661,
825465608499232,
825465608497696,
2048660,
1718093079,
1119699,
1718596,
2213765,
700765096,
298488495,
299033478
],
"image": "id-11134207-8224v-mje3ldgy4ooy49",
"images": [
"id-11134207-8224v-mje3ldgy4ooy49",
"id-11134207-8224z-mje3ldgurvuo76",
"id-11134207-82251-mje3ldh2xgjr7a",
"id-11134207-8224s-mje3ldhouvpc42",
"id-11134207-8224p-mje3ldhxsjra34",
"id-11134207-8224p-mje3ldk5s3yecc",
"id-11134207-8224z-mje3ldk67k788d",
"id-11134207-8224x-mje3ldkft3wmf0",
"id-11134207-82250-mje3ldl1mbcz22"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768218208,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "JETE",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 89920000000,
"price_min": 89920000000,
"price_max": 89920000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Gold"
],
"images": [
"id-11134207-8224w-mje42lnlpmo37c",
"id-11134207-8224w-mje42ohob9c0bd"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarbaru",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 89920000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370423068158,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 89920000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Vanilla_rumahsoftcase",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 58154536396,
"shopid": 1550488284,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mje3ldgy4ooy49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,700005509,700000498,822059908662278,2048661,825465608499232,825465608497696,2048660,1718093079,1119699,1718596,2213765,700765096,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":567,\"model_id\":370423068158,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mje3ldgy4ooy49\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,700005509,700000498,822059908662278,2048661,825465608499232,825465608497696,2048660,1718093079,1119699,1718596,2213765,700765096,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":567,\"model_id\":370423068158,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_58154536396",
"debug_info": null
},
{
"item_basic": {
"itemid": 54004504855,
"shopid": 1691275497,
"name": "Ms Watch - MirrorSpace Watch Series Ultra Pro with Dynamic Island AMOLED 450mAh",
"label_ids": [
844931064601283,
1049112,
700000501,
822059908662278,
825465608499232,
1119699,
1718596,
2213765,
298488495,
2103625,
1718093079
],
"image": "id-11134207-8224z-mjdy7k99nbphfd",
"images": [
"id-11134207-8224z-mjdy7k99nbphfd",
"id-11134207-82251-mje0nquxnfnobf",
"id-11134207-8224w-mje0nqvpl69uad",
"id-11134207-8224y-mje0nqvrp0xw57",
"id-11134207-8224p-mje0nqvrnmdg48",
"id-11134207-8224r-mje0nqwqcd8g32",
"id-11134207-8224w-mje0nquobpxf9f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768212768,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 43000000000,
"price_min": 43000000000,
"price_max": 43000000000,
"price_min_before_discount": 130000000000,
"price_max_before_discount": 130000000000,
"hidden_price_display": null,
"price_before_discount": 130000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-67%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6venc-mje0ocvr68lfba.16000031768212466.mp4",
"thumb_url": "id-11110105-6venc-mje0ocvr68lfba_cover",
"duration": 21,
"version": 2,
"vid": "id-11110105-6venc-mje0ocvr68lfba",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6venc-mje0ocvr68lfba.16000031768212466.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mje0ocvr68lfba.16000031768212466.mp4",
"width": 640,
"height": 480
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6venc-mje0ocvr68lfba.default.mp4",
"width": 640,
"height": 480
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "type",
"options": [
"S9",
"S10"
],
"images": null,
"properties": [],
"type": 0
},
{
"name": "WARNA",
"options": [
"SPACE GREY",
"Putih"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 829648464822272,
"price": 41500000000,
"strikethrough_price": 130000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1331676920561664,
"discount_text": "-67%",
"model_id": 365422518792,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1331676920561664,
"voucher_code": "ZX2PKL",
"voucher_discount": 1500000000,
"time_info": {
"start_time": 1768207500,
"end_time": 1776246780,
"valid_duration": null
},
"groups": [],
"min_spend": 10000000000
},
"recommended_platform_voucher_info": null,
"original_price": 130000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "MirrorSpaces",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54004504855,
"shopid": 1691275497,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjdy7k99nbphfd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700000501,822059908662278,825465608499232,1119699,1718596,2213765,298488495,2103625,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":138,\"model_id\":365422518792,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjdy7k99nbphfd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,700000501,822059908662278,825465608499232,1119699,1718596,2213765,298488495,2103625,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":138,\"model_id\":365422518792,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54004504855",
"debug_info": null
},
{
"item_basic": {
"itemid": 48254533307,
"shopid": 1691275497,
"name": "Ms Watch - MirrorSpace Watch 10 with Dynamic Island AMOLED 46mm",
"label_ids": [
844931064601283,
700000501,
1049112,
822059908662278,
825465608499232,
1119699,
1718596,
2213765,
298488495,
2103625,
1718093079
],
"image": "id-11134207-8224y-mjdy7k99aolh51",
"images": [
"id-11134207-8224y-mjdy7k99aolh51",
"id-11134207-8224y-mjdy7k99c35x48",
"id-11134207-8224y-mjdy7k99dhqd97",
"id-11134207-82252-mjdy7k99j40544",
"id-11134207-82250-mjdy7k99ewat6e",
"id-11134207-8224v-mjdy7k99kikle7",
"id-11134207-8224y-mjdy7k99gav966",
"id-11134207-8224u-mjdy7k99hpfp02"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768209955,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 56000000000,
"price_min": 56000000000,
"price_max": 56000000000,
"price_min_before_discount": 190000000000,
"price_max_before_discount": 190000000000,
"hidden_price_display": null,
"price_before_discount": 190000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-71%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvf-mjdywde13ojpd2.16000101768209490.mp4",
"thumb_url": "id-11110105-6vdvf-mjdywde13ojpd2_cover",
"duration": 20,
"version": 2,
"vid": "id-11110105-6vdvf-mjdywde13ojpd2",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvf-mjdywde13ojpd2.16000101768209490.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mjdywde13ojpd2.16000101768209490.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mjdywde13ojpd2.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "UKURAN",
"options": [
"46MM"
],
"images": [
"id-11134207-8224y-mjdy7k99lx5143"
],
"properties": [],
"type": 0
},
{
"name": "WARNA",
"options": [
"HITAM",
"PUTIH",
"PINK"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 829648464822272,
"price": 54500000000,
"strikethrough_price": 190000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1331676920561664,
"discount_text": "-71%",
"model_id": 350422186128,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1331676920561664,
"voucher_code": "ZX2PKL",
"voucher_discount": 1500000000,
"time_info": {
"start_time": 1768207500,
"end_time": 1776246780,
"valid_duration": null
},
"groups": [],
"min_spend": 10000000000
},
"recommended_platform_voucher_info": null,
"original_price": 190000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "MirrorSpaces",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48254533307,
"shopid": 1691275497,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjdy7k99aolh51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000501,1049112,822059908662278,825465608499232,1119699,1718596,2213765,298488495,2103625,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":137,\"model_id\":350422186128,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjdy7k99aolh51\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000501,1049112,822059908662278,825465608499232,1119699,1718596,2213765,298488495,2103625,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":137,\"model_id\":350422186128,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48254533307",
"debug_info": null
},
{
"item_basic": {
"itemid": 44427934784,
"shopid": 1216583028,
"name": "TIMEVER NEW GPS mni jam Tangan Smartwatch GPS Strava Tahan Air 1ATM Jam Tangan Pintar Outdoor & Olahraga smart watch",
"label_ids": [
844931086908638,
844931064601283,
2018618,
2068629,
2018619,
700700063,
2153644,
298938357,
700005490,
1049120,
822059908662278,
825465608497696,
825465608494624,
825465608499232,
1718087960,
1428713,
1718596,
2213765,
2213652,
1015914,
700190087,
298488495,
2103625
],
"image": "id-11134207-8224q-mjdvohjy65mt7c",
"images": [
"id-11134207-8224q-mjdvohjy65mt7c",
"id-11134207-8224p-mj2wc5tjo5c274",
"id-11134207-8224o-mj2wc5tu7eo32f",
"id-11134207-8224s-mj2wc5tjmqrmbd",
"id-11134207-82252-mj2wc5topclc90",
"id-11134207-8224p-mj2wc5trxxqcc2",
"id-11134207-8224u-mj2wc5tony0w6f",
"id-11134207-8224v-mj2wc5tw1fd1a2",
"id-11134207-8224s-mj2wc5tw2txhe0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768204688,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100013,
"brand": "TIMEVER",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 42900000000,
"price_min": 42900000000,
"price_max": 42900000000,
"price_min_before_discount": 96000000000,
"price_max_before_discount": 96000000000,
"hidden_price_display": null,
"price_before_discount": 96000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-55%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "warna",
"options": [
"hitam",
"pink",
"hitam+hitam belt",
"hitam+Brown belt"
],
"images": [
"id-11134207-82252-mjdvohjqvhfna0",
"id-11134207-82250-mjdvohjqww03a2",
"id-11134207-8224r-mjdvohjqzp4zb3",
"id-11134207-82250-mjdvohjqyakj69"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 412910174351877,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp143RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227583065341953,
"price": 42900000000,
"strikethrough_price": 96000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-55%",
"model_id": 355421568998,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 96000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp143RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Timever Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44427934784,
"shopid": 1216583028,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjdvohjy65mt7c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,2018618,2068629,2018619,700700063,2153644,298938357,700005490,1049120,822059908662278,825465608497696,825465608494624,825465608499232,1718087960,1428713,1718596,2213765,2213652,1015914,700190087,298488495,2103625],\"matched_keywords\":[\"\"],\"merge_rank\":240,\"model_id\":355421568998,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjdvohjy65mt7c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,2018618,2068629,2018619,700700063,2153644,298938357,700005490,1049120,822059908662278,825465608497696,825465608494624,825465608499232,1718087960,1428713,1718596,2213765,2213652,1015914,700190087,298488495,2103625],\"matched_keywords\":[\"\"],\"merge_rank\":240,\"model_id\":355421568998,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44427934784",
"debug_info": null
},
{
"item_basic": {
"itemid": 50104515572,
"shopid": 1631362272,
"name": "GPS Geodetik EFIX F6 Vision IMU - RTK GNSS Receiver",
"label_ids": [
844931086908638,
844931064601283,
298463379,
1718093079,
700005495,
700005490,
822059908662278,
825465608494624,
825465608497696,
822120592861206,
825465608499232,
2048661,
2048660,
825465608493600,
1718596,
2213765,
700765096,
298488495,
2103625,
298468389,
1718088045
],
"image": "id-11134207-8224x-mjdv68u1mosg19",
"images": [
"id-11134207-8224x-mjdv68u1mosg19",
"id-11134207-8224u-mjdv68u1la8015",
"id-11134207-8224q-mjdv68u1jvnk48",
"id-11134207-8224z-mjdv68u1ih34a9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768204266,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "EFIX",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 11600000000000,
"price_min": 11600000000000,
"price_max": 11600000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 11600000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410421523244,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 11600000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Toko Afandi Survey DI",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50104515572,
"shopid": 1631362272,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjdv68u1mosg19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1718093079,700005495,700005490,822059908662278,825465608494624,825465608497696,822120592861206,825465608499232,2048661,2048660,825465608493600,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":868,\"model_id\":410421523244,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mjdv68u1mosg19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1718093079,700005495,700005490,822059908662278,825465608494624,825465608497696,822120592861206,825465608499232,2048661,2048660,825465608493600,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":868,\"model_id\":410421523244,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50104515572",
"debug_info": null
},
{
"item_basic": {
"itemid": 56454497452,
"shopid": 12524552,
"name": "Garmin Venu X1, Segel Box, Original",
"label_ids": [
2018619,
700025282,
700005574,
700005575,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
1718596,
2213765,
298488495,
2098621
],
"image": "id-11134207-8224z-mjdqy0p9i22o16",
"images": [
"id-11134207-8224z-mjdqy0p9i22o16",
"id-11134207-8224w-mjdqy0p7e7esfb",
"id-11134207-8224z-mjdqy0pa34li2b",
"id-11134207-8224w-mjdqy0pa1q129e",
"id-11134207-8224z-mjdqy0pao7455f",
"id-11134207-8224y-mjdqy0tpv85ceb"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768196268,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 1100000000000,
"price_min": 1100000000000,
"price_max": 1100000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Palu",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1100000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310421233922,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1100000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Pulsa gokil",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56454497452,
"shopid": 12524552,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjdqy0p9i22o16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,700005574,700005575,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":648,\"model_id\":310421233922,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjdqy0p9i22o16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700025282,700005574,700005575,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":648,\"model_id\":310421233922,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56454497452",
"debug_info": null
},
{
"item_basic": {
"itemid": 52704479700,
"shopid": 47037002,
"name": "smartwatch Samsung gear s3 classic minus",
"label_ids": [
844931064601283,
2018619,
1059156,
700005499,
822059908662278,
825465608493600,
825465608499232,
825465608497696,
298463379,
1718093079,
1119699,
1718596,
2213765,
298488495,
299033477,
298468389,
1718088045
],
"image": "id-11134207-82250-mjdlpxp4laf902",
"images": [
"id-11134207-82250-mjdlpxp4laf902",
"id-11134207-8224v-mjdlpxouivwla8",
"id-11134207-8224r-mjdlpxowv5z548"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768187692,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 45000000000,
"price_min": 45000000000,
"price_max": 45000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 45000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 415419977984,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 45000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Qodir_rif",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52704479700,
"shopid": 47037002,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mjdlpxp4laf902\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1059156,700005499,822059908662278,825465608493600,825465608499232,825465608497696,298463379,1718093079,1119699,1718596,2213765,298488495,299033477,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":600,\"model_id\":415419977984,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mjdlpxp4laf902\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,2018619,1059156,700005499,822059908662278,825465608493600,825465608499232,825465608497696,298463379,1718093079,1119699,1718596,2213765,298488495,299033477,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":600,\"model_id\":415419977984,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52704479700",
"debug_info": null
},
{
"item_basic": {
"itemid": 48454498846,
"shopid": 37744937,
"name": "VIVAN VWF18 Smartwatch Waterproof",
"label_ids": [
1000167,
2018619,
844931064601283,
844931086908638,
1059150,
700005498,
822059908662278,
2048661,
825465608493600,
825465608494624,
825465608499232,
2048660,
1718596,
2213765,
700765096,
298488495,
299033478
],
"image": "id-11134207-8224p-mjdjw8m07myvb8",
"images": [
"id-11134207-8224p-mjdjw8m07myvb8",
"id-11134207-8224p-mjdjw8lg71mv38",
"id-11134207-8224p-mjdjw8ly56v628",
"id-11134207-8224p-mjdjw8lxzklg26",
"id-11134207-8224v-mjdjw8m068e9f2",
"id-11134207-8224z-mjdjw8lwi70m4f",
"id-11134207-82252-mjdjw8lyvvnk94"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768184336,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Vivan",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 55500000000,
"price_min": 55500000000,
"price_max": 55500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"hitam",
"silver"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Medan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 55000000000,
"strikethrough_price": 55500000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1286883155263488,
"discount_text": null,
"model_id": 302326107502,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1286883155263488,
"voucher_code": "ALEX9HJNR",
"voucher_discount": 500000000,
"time_info": {
"start_time": 1762867715,
"end_time": 1768742760,
"valid_duration": null
},
"groups": [],
"min_spend": 50000000000
},
"recommended_platform_voucher_info": null,
"original_price": 55500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Alexandrechristie",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48454498846,
"shopid": 37744937,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjdjw8m07myvb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,844931086908638,1059150,700005498,822059908662278,2048661,825465608493600,825465608494624,825465608499232,2048660,1718596,2213765,700765096,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":568,\"model_id\":302326107502,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjdjw8m07myvb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,844931086908638,1059150,700005498,822059908662278,2048661,825465608493600,825465608494624,825465608499232,2048660,1718596,2213765,700765096,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":568,\"model_id\":302326107502,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48454498846",
"debug_info": null
},
{
"item_basic": {
"itemid": 57404463571,
"shopid": 89304769,
"name": "AMAZFIT CHEETAH SQUARE",
"label_ids": [
844931064601283,
844931086908638,
298463379,
1059151,
1049112,
822059908662278,
825465608492064,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
1718093079,
1119699,
1718596,
2213765,
298488495,
2103625,
1718088045,
298468389
],
"image": "id-11134207-8224p-mjdebcjsaubl07",
"images": [
"id-11134207-8224p-mjdebcjsaubl07"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768175428,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Amazfit",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 500000000000,
"price_min": 500000000000,
"price_max": 500000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 500000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 320419386780,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 500000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GG store bekasi",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57404463571,
"shopid": 89304769,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjdebcjsaubl07\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059151,1049112,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,2213765,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":255,\"model_id\":320419386780,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjdebcjsaubl07\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1059151,1049112,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,2213765,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":255,\"model_id\":320419386780,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57404463571",
"debug_info": null
},
{
"item_basic": {
"itemid": 53704460858,
"shopid": 21845807,
"name": "Huawei GT 4 46mm Green Fullset Second Mulus Normal",
"label_ids": [
1400066568,
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
1718093079,
1718596,
2213765,
1119699,
298488495,
299033477
],
"image": "id-11134207-8224y-mjdovvfhcnpd96",
"images": [
"id-11134207-8224y-mjdovvfhcnpd96",
"id-11134207-82250-mjdovvf80xzbcf",
"id-11134207-82251-mjdovvfi7k7846",
"id-11134207-8224o-mjdovvfhe29tbc",
"id-11134207-8224t-mjdovv2g2rk591",
"id-11134207-82251-mjdovv2r4a9sc1",
"id-11134207-8224s-mjdpuzlbl15117",
"id-11134207-8224q-mjfesl3vh8g690"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768136079,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 175000000000,
"price_min": 175000000000,
"price_max": 175000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vdv9-mjdpszxnfsaud0.16000081768194186.mp4",
"thumb_url": "id-11110107-6vdv9-mjdpszxnfsaud0_cover",
"duration": 39,
"version": 2,
"vid": "id-11110107-6vdv9-mjdpszxnfsaud0",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vdv9-mjdpszxnfsaud0.16000081768194186.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdv9-mjdpszxnfsaud0.16000081768194186.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdv9-mjdpszxnfsaud0.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 175000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385418330806,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 175000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "AnyWish",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53704460858,
"shopid": 21845807,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjdovvfhcnpd96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079,1718596,2213765,1119699,298488495,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":224,\"model_id\":385418330806,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mjdovvfhcnpd96\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,1059154,822059908662278,825465608499232,1718093079,1718596,2213765,1119699,298488495,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":224,\"model_id\":385418330806,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53704460858",
"debug_info": null
},
{
"item_basic": {
"itemid": 53204465605,
"shopid": 898289671,
"name": "Jam Smartwatch Bluetooth i8 Ultra 42mm Layar 1.9 Inci dengan TWS Earphone Charger Wireless 2 Tali Silikon Fitur Kesehatan Denyut Jantung Kalkulator Notif medsos custom walpaper Monitor - Hitam, Jam Ultra 1 Tali Saja",
"label_ids": [
1428713,
1718087960,
844931064601283,
298463379,
1049145,
700000557,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699,
1718596,
2213765,
299033478,
298488495,
1718088045,
298468389
],
"image": "sg-11134201-8260n-mjcqm88a7ugze7",
"images": [
"sg-11134201-8260n-mjcqm88a7ugze7",
"sg-11134201-82632-mjcqm8f2l98m2d",
"sg-11134201-8260r-mjcqm8miq3uod2",
"sg-11134201-82601-mjcqm8thgh6o83",
"sg-11134201-8260a-mjcqm900mfif2a",
"sg-11134201-82615-mjcqm9cfun7r54"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768135016,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 30000000000,
"price_min": 30000000000,
"price_max": 30000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Lampung Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 28500000000,
"strikethrough_price": 30000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1331060516732928,
"discount_text": null,
"model_id": 186355289047,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1331060516732928,
"voucher_code": "PUSASAFSV",
"voucher_discount": 1500000000,
"time_info": {
"start_time": 1768134540,
"end_time": 1774963740,
"valid_duration": null
},
"groups": [],
"min_spend": 16740000000
},
"recommended_platform_voucher_info": null,
"original_price": 30000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "pusatgrosirkekinian",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53204465605,
"shopid": 898289671,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjcqm88a7ugze7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1049145,700000557,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765,299033478,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":694,\"model_id\":186355289047,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-8260n-mjcqm88a7ugze7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,298463379,1049145,700000557,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,2213765,299033478,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":694,\"model_id\":186355289047,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53204465605",
"debug_info": null
},
{
"item_basic": {
"itemid": 44654464244,
"shopid": 337275633,
"name": "Coros Pace 4 White",
"label_ids": [
844931064601283,
1400066568,
1059156,
1049118,
1718093079,
822059908662278,
825465608499232,
1119699,
1718596,
2213765,
2103625,
298488495
],
"image": "id-11134207-8224t-mjcgh5v0hpmt9f",
"images": [
"id-11134207-8224t-mjcgh5v0hpmt9f",
"id-11134207-8224r-mjcgh5v0gb2d8c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768118150,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "COROS",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 420000000000,
"price_min": 420000000000,
"price_max": 420000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tegal",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 420000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 440417458369,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 420000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ARย Storeย 31",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44654464244,
"shopid": 337275633,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcgh5v0hpmt9f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059156,1049118,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":343,\"model_id\":440417458369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcgh5v0hpmt9f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059156,1049118,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":343,\"model_id\":440417458369,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44654464244",
"debug_info": null
},
{
"item_basic": {
"itemid": 50054443496,
"shopid": 70885987,
"name": "PRELOVED!! Samsung Galaxy Fit3 Smartwatch",
"label_ids": [
1000167,
2018619,
844931064601283,
1049116,
700000489,
1718093079,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
825465608494624,
1119699,
1718596,
2213765,
700765096,
2103625,
298488495
],
"image": "id-11134207-8224q-mjcchce001l35f",
"images": [
"id-11134207-8224q-mjcchce001l35f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768111434,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "Samsung",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 35000000000,
"price_min": 35000000000,
"price_max": 35000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Kediri",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 375417245804,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Miruuuuy.19",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50054443496,
"shopid": 70885987,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjcchce001l35f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1049116,700000489,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,1119699,1718596,2213765,700765096,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":370,\"model_id\":375417245804,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjcchce001l35f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1049116,700000489,1718093079,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608494624,1119699,1718596,2213765,700765096,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":370,\"model_id\":375417245804,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50054443496",
"debug_info": null
},
{
"item_basic": {
"itemid": 40177927794,
"shopid": 53244201,
"name": "Smartwatch Samsung Galaxy Fit 3 Black",
"label_ids": [
844931064601283,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
1119699,
1718596,
2213765,
299033477,
298488495
],
"image": "id-11134207-82252-mjc6k99suznpf5",
"images": [
"id-11134207-82252-mjc6k99suznpf5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768101592,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Samsung",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 70000000000,
"price_min": 70000000000,
"price_max": 70000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 70000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 340416958165,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 70000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Mons Store & Farm",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40177927794,
"shopid": 53244201,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjc6k99suznpf5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":129,\"model_id\":340416958165,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjc6k99suznpf5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":129,\"model_id\":340416958165,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40177927794",
"debug_info": null
},
{
"item_basic": {
"itemid": 52304451306,
"shopid": 1704575114,
"name": "Termurah Gps Garmin Etrex 10 Bekas",
"label_ids": [
1400066568,
844931064601283,
700005490,
700005495,
822059908662278,
825465608499232,
825465608497696,
825465608494624,
1718093079,
1119699,
1718596,
2213765,
299033478,
298488495
],
"image": "id-11134207-8224p-mjc3dj1r8cg088",
"images": [
"id-11134207-8224p-mjc3dj1r8cg088",
"id-11134207-8224w-mjc3dj1r9r0g4a",
"id-11134207-82252-mjc3dj1rb5kw6d",
"id-11134207-8224o-mjc3dj1rck5cf8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768096623,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 195000000000,
"price_min": 195000000000,
"price_max": 195000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 195000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 320416809416,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 195000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ajibsurveying97",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52304451306,
"shopid": 1704575114,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjc3dj1r8cg088\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1718596,2213765,299033478,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":808,\"model_id\":320416809416,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mjc3dj1r8cg088\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,1718596,2213765,299033478,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":808,\"model_id\":320416809416,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52304451306",
"debug_info": null
},
{
"item_basic": {
"itemid": 45054456452,
"shopid": 538235194,
"name": "GPS Garmin Montana 760i Original Pengganti Montana 750i",
"label_ids": [
844931064601283,
844931086908638,
298463379,
700005490,
700005495,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
1718093079,
1718596,
1119699,
2213765,
298488495,
298468389,
1718088045
],
"image": "id-11134207-8224t-mjb5s69dx9mt61",
"images": [
"id-11134207-8224t-mjb5s69dx9mt61",
"id-11134207-8224z-mjb5s6d2tjwgd2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768039538,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 2300000000000,
"price_min": 2300000000000,
"price_max": 2300000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 2300000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 340415259310,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 2300000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Surveying Store Indonesia",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45054456452,
"shopid": 538235194,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjb5s69dx9mt61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,700005490,700005495,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1718596,1119699,2213765,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":690,\"model_id\":340415259310,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjb5s69dx9mt61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,700005490,700005495,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1718596,1119699,2213765,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":690,\"model_id\":340415259310,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45054456452",
"debug_info": null
},
{
"item_basic": {
"itemid": 56554436244,
"shopid": 1093377887,
"name": "[garansi 3 bulan] JAM TANGAN PINTAR SMARTWATCH 10.000 mAh OLIKE META S2 ANTI AIR SYNC WIT STRAVA",
"label_ids": [
2018619,
2023641,
700700063,
844931064601283,
298463379,
700005509,
1049138,
1718093079,
822059908662278,
2048660,
2048661,
825465608499232,
825465608497696,
298888358,
298938357,
1718596,
2213765,
700765096,
1119699,
2103625,
298488495,
298468389,
2098628,
298938368,
2098629,
1718088045
],
"image": "id-11134207-8224r-mjb3nzxbcow6f5",
"images": [
"id-11134207-8224r-mjb3nzxbcow6f5",
"id-11134207-8224s-mjb3nzxha77m28",
"id-11134207-8224x-mjb3nzxodukjee",
"id-11134207-8224t-mjb3nzxc1z4568",
"id-11134207-82251-mjb3nzxj1ero60",
"id-11134207-82251-mjb3nzxyyigw08",
"id-11134207-8224t-mjb3nzzroumf28",
"id-11134207-8224y-mjb3o01ug6ptcd",
"id-11134207-8224w-mjb3o0227pqdfc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768039136,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 29900600000,
"price_min": 29900600000,
"price_max": 29900600000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vdvl-mjb5i8ulvpjae3.16000101768038985.mp4",
"thumb_url": "id-11110107-6vdvl-mjb5i8ulvpjae3_cover",
"duration": 60,
"version": 2,
"vid": "id-11110107-6vdvl-mjb5i8ulvpjae3",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vdvl-mjb5i8ulvpjae3.16000101768038985.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvl-mjb5i8ulvpjae3.16000101768038985.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvl-mjb5i8ulvpjae3.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "META S2",
"options": [
"Black",
"Silver"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp49RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 29750600000,
"strikethrough_price": 29900600000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1323801468616724,
"discount_text": null,
"model_id": 355415241860,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1323801468616724,
"voucher_code": "RUMAYE1CS",
"voucher_discount": 150000000,
"time_info": {
"start_time": 1767268680,
"end_time": 1769860560,
"valid_duration": null
},
"groups": [],
"min_spend": 25000000000
},
"recommended_platform_voucher_info": null,
"original_price": 29900600000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp49RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "rumahsoftcase_ID",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56554436244,
"shopid": 1093377887,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjb3nzxbcow6f5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,700700063,844931064601283,298463379,700005509,1049138,1718093079,822059908662278,2048660,2048661,825465608499232,825465608497696,298888358,298938357,1718596,2213765,700765096,1119699,2103625,298488495,298468389,2098628,298938368,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":256,\"model_id\":355415241860,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjb3nzxbcow6f5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,700700063,844931064601283,298463379,700005509,1049138,1718093079,822059908662278,2048660,2048661,825465608499232,825465608497696,298888358,298938357,1718596,2213765,700765096,1119699,2103625,298488495,298468389,2098628,298938368,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":256,\"model_id\":355415241860,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56554436244",
"debug_info": null
},
{
"item_basic": {
"itemid": 50354436073,
"shopid": 1631362272,
"name": "Jual Gps Garmin Gpsmap 76csx bekas kondis normal new",
"label_ids": [
844931086908638,
844931064601283,
298463379,
1400066568,
700005490,
700005495,
1718093079,
822059908662278,
825465608493600,
840990690654214,
2048661,
2048660,
825465608494624,
840955085144628,
822120592861206,
825465608499232,
825465608497696,
1718596,
2213765,
700765096,
2103625,
298488495,
1718088045,
298468389
],
"image": "id-11134207-82252-mjb46qywxpmu41",
"images": [
"id-11134207-82252-mjb46qywxpmu41",
"id-11134207-8224o-mjb46qywuwhyd2",
"id-11134207-8224u-mjb46qywwb2e2f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768037804,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 290000000000,
"price_min": 290000000000,
"price_max": 290000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 290000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 325415138610,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 290000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Toko Afandi Survey DI",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50354436073,
"shopid": 1631362272,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjb46qywxpmu41\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1400066568,700005490,700005495,1718093079,822059908662278,825465608493600,840990690654214,2048661,2048660,825465608494624,840955085144628,822120592861206,825465608499232,825465608497696,1718596,2213765,700765096,2103625,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":257,\"model_id\":325415138610,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mjb46qywxpmu41\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,298463379,1400066568,700005490,700005495,1718093079,822059908662278,825465608493600,840990690654214,2048661,2048660,825465608494624,840955085144628,822120592861206,825465608499232,825465608497696,1718596,2213765,700765096,2103625,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":257,\"model_id\":325415138610,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50354436073",
"debug_info": null
},
{
"item_basic": {
"itemid": 46004445630,
"shopid": 333504610,
"name": "Apple watch / Iwacth SE GEN 2 40MM starlight",
"label_ids": [
844931064601283,
700000539,
700000514,
822059908662278,
825465608497696,
825465608494624,
825465608499232,
1718093079,
1400066568,
1119699,
1718596,
2213765,
299033477,
298488495
],
"image": "id-11134207-8224u-mjayh7bgh53853",
"images": [
"id-11134207-8224u-mjayh7bgh53853",
"id-11134207-8224w-mjayh7bgfqis8d",
"id-11134207-82252-mjayh7bgijno81"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768031643,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 187500000000,
"price_min": 187500000000,
"price_max": 187500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Lombok Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 187500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405414702162,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 187500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Callmezn",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46004445630,
"shopid": 333504610,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjayh7bgh53853\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000539,700000514,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1400066568,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":428,\"model_id\":405414702162,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mjayh7bgh53853\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700000539,700000514,822059908662278,825465608497696,825465608494624,825465608499232,1718093079,1400066568,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":428,\"model_id\":405414702162,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46004445630",
"debug_info": null
},
{
"item_basic": {
"itemid": 55754408505,
"shopid": 122221577,
"name": "SMARTWATCH DIGITEC FITRACK PRIA ORGINAL Free Tali Rantai",
"label_ids": [
700700063,
2018619,
844931064601283,
298463379,
1059152,
700005489,
1718093079,
822059908662278,
825465608494624,
825465608499232,
2048660,
2048661,
825465608493600,
1119699,
1718596,
2213765,
700765096,
299033478,
298488495,
1718088045,
298468389
],
"image": "id-11134207-8224r-mjaoywzm5yiob6",
"images": [
"id-11134207-8224r-mjaoywzm5yiob6",
"id-11134207-8224z-mjaoywzh8yyt7e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768016220,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "DIGITEC",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 95000000000,
"price_min": 95000000000,
"price_max": 95000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vdva-mjaqtjsef8qrf6.16000091768014289.mp4",
"thumb_url": "id-11110107-6vdva-mjaqtjsef8qrf6_cover",
"duration": 30,
"version": 2,
"vid": "id-11110107-6vdva-mjaqtjsef8qrf6",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vdva-mjaqtjsef8qrf6.16000091768014289.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdva-mjaqtjsef8qrf6.16000091768014289.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdva-mjaqtjsef8qrf6.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 95000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 435413865996,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 95000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "liga_arloji_official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55754408505,
"shopid": 122221577,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjaoywzm5yiob6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,825465608494624,825465608499232,2048660,2048661,825465608493600,1119699,1718596,2213765,700765096,299033478,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":646,\"model_id\":435413865996,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mjaoywzm5yiob6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,825465608494624,825465608499232,2048660,2048661,825465608493600,1119699,1718596,2213765,700765096,299033478,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":646,\"model_id\":435413865996,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55754408505",
"debug_info": null
},
{
"item_basic": {
"itemid": 50704407773,
"shopid": 155233574,
"name": "XIAOMI REDMI WATCH 5-BLACK",
"label_ids": [
844931064601283,
1059156,
700000521,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699,
1718596,
2213765,
299033477,
298488495
],
"image": "id-11134207-82251-mjaovio27pqee4",
"images": [
"id-11134207-82251-mjaovio27pqee4",
"id-11134207-8224y-mjaovio24wlc2d",
"id-11134207-82252-mjaovio26b5s45"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1768011343,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Redmi",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 95000000000,
"price_min": 95000000000,
"price_max": 95000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vemx-mjaox6cgrlzb18.16000091768011129.mp4",
"thumb_url": "id-11110107-6vemx-mjaox6cgrlzb18_cover",
"duration": 25,
"version": 2,
"vid": "id-11110107-6vemx-mjaox6cgrlzb18",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vemx-mjaox6cgrlzb18.16000091768011129.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemx-mjaox6cgrlzb18.16000091768011129.mp4",
"width": 270,
"height": 330
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemx-mjaox6cgrlzb18.default.mp4",
"width": 288,
"height": 352
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Cilacap",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 95000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 325413615135,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 95000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Bapis Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50704407773,
"shopid": 155233574,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjaovio27pqee4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000521,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":29,\"model_id\":325413615135,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mjaovio27pqee4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000521,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":29,\"model_id\":325413615135,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50704407773",
"debug_info": null
},
{
"item_basic": {
"itemid": 54854384266,
"shopid": 1234858520,
"name": "Apple Watch SE IBOX",
"label_ids": [
844931064601283,
1049148,
1049145,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1718596,
2213765,
1119699,
299033477,
298488495
],
"image": "id-11134207-8224x-mj9x391cssn70b",
"images": [
"id-11134207-8224x-mj9x391cssn70b",
"id-11134207-8224z-mj9x250bin0g3d",
"id-11134207-82252-mj9x250dcnpd4c",
"id-11134207-8224t-mj9x250ufwg639",
"id-11134207-8224v-mj9x250sq3gida",
"id-11134207-8224p-mj9x250soow234",
"id-11134207-82251-mj9x2517e8zlb2"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767964421,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 200000000000,
"price_min": 200000000000,
"price_max": 200000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandar Lampung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 200000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 330412288099,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 200000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "3i1v4u",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54854384266,
"shopid": 1234858520,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj9x391cssn70b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049148,1049145,1718093079,822059908662278,825465608499232,825465608497696,1718596,2213765,1119699,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":825,\"model_id\":330412288099,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj9x391cssn70b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049148,1049145,1718093079,822059908662278,825465608499232,825465608497696,1718596,2213765,1119699,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":825,\"model_id\":330412288099,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54854384266",
"debug_info": null
},
{
"item_basic": {
"itemid": 44077891451,
"shopid": 44686230,
"name": "Garmin fenix 8 amoled sapphire",
"label_ids": [
2023641,
844931064601283,
1059156,
700000491,
1718093079,
822059908662278,
825465608494624,
825465608499232,
1718596,
2213765,
1119699,
299033477,
298488495
],
"image": "id-11134207-82252-mj9v76rtab5y1e",
"images": [
"id-11134207-82252-mj9v76rtab5y1e",
"id-11134207-8224t-mj9v76hqx72833",
"id-11134207-8224q-mj9v76iphq84a2",
"id-11134207-8224r-mj9v76ikxds08c",
"id-11134207-8224u-mj9v76k3jwucbb",
"id-11134207-8224u-mj9v76i67tol7a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767961171,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 1590000000000,
"price_min": 1590000000000,
"price_max": 1590000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Salatiga",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1590000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390412153638,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1590000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Candibaru_new",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44077891451,
"shopid": 44686230,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj9v76rtab5y1e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1718596,2213765,1119699,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":678,\"model_id\":390412153638,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj9v76rtab5y1e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1718596,2213765,1119699,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":678,\"model_id\":390412153638,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44077891451",
"debug_info": null
},
{
"item_basic": {
"itemid": 43027883179,
"shopid": 867661354,
"name": "Terbaru Jam Smartwatch Digitec FITRACK Original Garansi Resmi 1 Tahun - Built in GPS",
"label_ids": [
2018619,
2023641,
2068629,
298938357,
844931064601283,
298463379,
1059152,
700005489,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
1119699,
1718596,
2213765,
2103625,
298488495,
298468389,
298938368
],
"image": "id-11134207-82252-mj9cdhmhdwqpee",
"images": [
"id-11134207-82252-mj9cdhmhdwqpee",
"id-11134207-8224s-mj9cdhmhfbb570"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767930242,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "DIGITEC",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 79900000000,
"price_min": 79900000000,
"price_max": 79900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vemx-mj9cec5y08aucf.16000091767929507.mp4",
"thumb_url": "id-11110107-6vemx-mj9cec5y08aucf_cover",
"duration": 30,
"version": 2,
"vid": "id-11110107-6vemx-mj9cec5y08aucf",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vemx-mj9cec5y08aucf.16000091767929507.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemx-mj9cec5y08aucf.16000091767929507.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vemx-mj9cec5y08aucf.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp265RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 79750000000,
"strikethrough_price": 79900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1324374134374416,
"discount_text": null,
"model_id": 390409948976,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1324374134374416,
"voucher_code": "ORIGS3YYT",
"voucher_discount": 150000000,
"time_info": {
"start_time": 1767336983,
"end_time": 1769878740,
"valid_duration": null
},
"groups": [],
"min_spend": 50000000000
},
"recommended_platform_voucher_info": null,
"original_price": 79900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp265RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Origro",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43027883179,
"shopid": 867661354,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj9cdhmhdwqpee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,2068629,298938357,844931064601283,298463379,1059152,700005489,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,2103625,298488495,298468389,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":657,\"model_id\":390409948976,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj9cdhmhdwqpee\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,2068629,298938357,844931064601283,298463379,1059152,700005489,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,2103625,298488495,298468389,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":657,\"model_id\":390409948976,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43027883179",
"debug_info": null
},
{
"item_basic": {
"itemid": 52254371122,
"shopid": 1556951683,
"name": "SMARTWATCH DIGITEC ULTIMA",
"label_ids": [
844931064601283,
844931086908638,
1059150,
700005498,
822059908662278,
825465608499232,
825465608497696,
825465608493600,
825465608494624,
1718093079,
1119699,
1718596,
2213765,
2103625,
298488495
],
"image": "id-11134207-8224p-mj99lqmb5s0495",
"images": [
"id-11134207-8224p-mj99lqmb5s0495",
"id-11134207-8224t-mj99lqmjbcoy16",
"id-11134207-82252-mj99lqmlktms88"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767924938,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "DIGITEC",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 101200000000,
"price_min": 101200000000,
"price_max": 101200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Abu",
"Hitam",
"Biru"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Medan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 101200000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355409594872,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 101200000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Puppymiiloo",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52254371122,
"shopid": 1556951683,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mj99lqmb5s0495\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059150,700005498,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1718093079,1119699,1718596,2213765,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":226,\"model_id\":355409594872,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mj99lqmb5s0495\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059150,700005498,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1718093079,1119699,1718596,2213765,2103625,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":226,\"model_id\":355409594872,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52254371122",
"debug_info": null
},
{
"item_basic": {
"itemid": 43027867369,
"shopid": 1116200785,
"name": "Garmin Forerunner 570 47mm - Turquoise",
"label_ids": [
844931086908638,
1049112,
700005494,
822059908662278,
825465608494624,
825465608499232,
1718093079,
1119699,
1718596,
2213765,
299033477,
298488495
],
"image": "id-11134207-82252-mj95li2kf5zb81",
"images": [
"id-11134207-82252-mj95li2kf5zb81"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767918131,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 700000000000,
"price_min": 700000000000,
"price_max": 700000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Cimahi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 700000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395409265525,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 700000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "radix-sply",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43027867369,
"shopid": 1116200785,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj95li2kf5zb81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049112,700005494,822059908662278,825465608494624,825465608499232,1718093079,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":693,\"model_id\":395409265525,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj95li2kf5zb81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,1049112,700005494,822059908662278,825465608494624,825465608499232,1718093079,1119699,1718596,2213765,299033477,298488495],\"matched_keywords\":[\"\"],\"merge_rank\":693,\"model_id\":395409265525,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43027867369",
"debug_info": null
},
{
"item_basic": {
"itemid": 53254332409,
"shopid": 88702207,
"name": "Garmin Forerunner 35 Second Original",
"label_ids": [
1000167,
2018619,
844931064601283,
1400066568,
298463379,
700005499,
1059156,
1718093079,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
1119699,
1718596,
2213765,
298488495,
2098621,
1718088045,
298468389
],
"image": "id-11134207-82250-mj8607c5aux308",
"images": [
"id-11134207-82250-mj8607c5aux308",
"id-11134207-82252-mj8607bjammd41",
"id-11134207-8224v-mj8607bohg5ffc",
"id-11134207-8224s-mj8607blbo5e14",
"id-11134207-8224r-mj8607bkutc72b",
"id-11134207-8224u-mj8607blsiyu19",
"id-11134207-82252-mj8607brhlvoaf",
"id-11134207-8224r-mj8607blpptyf7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767860229,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 140000000000,
"price_min": 140000000000,
"price_max": 140000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 140000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 292318486586,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 140000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "gbike",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53254332409,
"shopid": 88702207,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj8607c5aux308\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1400066568,298463379,700005499,1059156,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":396,\"model_id\":292318486586,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj8607c5aux308\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,1400066568,298463379,700005499,1059156,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":396,\"model_id\":292318486586,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53254332409",
"debug_info": null
},
{
"item_basic": {
"itemid": 52904306850,
"shopid": 16387650,
"name": "Garmin Fenix 8 Solar Saphier 51mm",
"label_ids": [
2018619,
844931064601283,
844931086908638,
1400066568,
700005506,
1049135,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
298463379,
1718093079,
1119699,
1718596,
2213765,
298488495,
299033477,
1718088045,
298468389
],
"image": "id-11134207-8224t-mjcayhomzfnke9",
"images": [
"id-11134207-8224t-mjcayhomzfnke9",
"id-11134207-8224t-miwaio65fgu8f7",
"id-11134207-82252-miwaio6h4v7mef",
"id-11134207-82252-miwaio66ptky9f",
"id-11134207-8224w-miwaio6ckiro39",
"id-11134207-82252-miwaio95e685a8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767829142,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 1700000000000,
"price_min": 1700000000000,
"price_max": 1700000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Makassar",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1700000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 375404620460,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1700000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Toko Titoni",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52904306850,
"shopid": 16387650,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcayhomzfnke9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1400066568,700005506,1049135,822059908662278,825465608493600,825465608494624,825465608499232,298463379,1718093079,1119699,1718596,2213765,298488495,299033477,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":666,\"model_id\":375404620460,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mjcayhomzfnke9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1400066568,700005506,1049135,822059908662278,825465608493600,825465608494624,825465608499232,298463379,1718093079,1119699,1718596,2213765,298488495,299033477,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":666,\"model_id\":375404620460,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52904306850",
"debug_info": null
},
{
"item_basic": {
"itemid": 58104274336,
"shopid": 1367410104,
"name": "SmartWatch X10 pro max Wanita tahan air Jam Pintar bluetooth olahraga Smart Watch Gps peta NFC Smartwatch HD touchscreen Jam Tangan Pintar Bisa telpon bisa dan wallpaper IOS Android pria Digital Jam Tangan Monitor Detak Jantung",
"label_ids": [
2018619,
844931064601283,
844931086908638,
1049112,
700005486,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1718596,
2213765,
298488495,
2103625,
1400285055
],
"image": "sg-11134201-82623-mj73wua9tmh3f5",
"images": [
"sg-11134201-82623-mj73wua9tmh3f5",
"sg-11134201-8262h-mj73wufw661191",
"sg-11134201-82621-mj73wumarqbp03",
"sg-11134201-8260c-mj73wutd3dhcdb",
"sg-11134201-8262a-mj73wuyug5xf2b",
"sg-11134201-8261r-mj73wv67i03r51",
"sg-11134201-8260e-mj73wvecc07448",
"sg-11134201-82617-mj73wvpxio765d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767794166,
"sold": 9,
"historical_sold": 9,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 3,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 27450000000,
"price_min": 27450000000,
"price_max": 27450000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Black",
"White",
"Pink",
"Blue",
"Black+2strap",
"White+2strap",
"Pink+2strap"
],
"images": [
"sg-11134201-82617-mj73wvpxio765d",
"sg-11134201-8261d-mj73wvvq2lmr1b",
"sg-11134201-8262a-mj73ww1fb4sg45",
"sg-11134201-8262d-mj73ww8u49ogd1",
"sg-11134201-8260f-mj73wwf7ffnn93",
"sg-11134201-8262g-mj73wwomt79ief",
"sg-11134201-8261a-mj73wwuq92pv5e"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 3,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27440000000,
"strikethrough_price": 27450000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1301861090344960,
"discount_text": null,
"model_id": 350403743016,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1301861090344960,
"voucher_code": "RAEIJJKS8",
"voucher_discount": 10000000,
"time_info": {
"start_time": 1764653160,
"end_time": 1772260440,
"valid_duration": null
},
"groups": [],
"min_spend": 1000000000
},
"recommended_platform_voucher_info": null,
"original_price": 27450000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 9,
"rounded_local_monthly_sold_count": 9,
"local_monthly_sold_count_text": "9",
"rounded_display_sold_count": 9,
"display_sold_count_text": "9"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HOTOT_Sport",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDguMTkzLjc3X3tiMTFiYTNhZjQ4NTU3ZjQ0YjQyYTJkZGZjYzhkMjMwMDowMjAwMDAxOTk2MjlkNzllOjAxMDAwMTY2ZGVkYTQxMDB9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0ODAyNDY2NzU0",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 58104274336,
"shopid": 1367410104,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82623-mj73wua9tmh3f5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049112,700005486,1718093079,822059908662278,825465608499232,825465608497696,1718596,2213765,298488495,2103625,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":207,\"model_id\":350403743016,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82623-mj73wua9tmh3f5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049112,700005486,1718093079,822059908662278,825465608499232,825465608497696,1718596,2213765,298488495,2103625,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":207,\"model_id\":350403743016,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_58104274336",
"debug_info": null
},
{
"item_basic": {
"itemid": 46804313805,
"shopid": 1367410104,
"name": "Watch 10 Smartwatch fullScreen 2.3-inch IP68 Waterproof Bisa Telponan Dan Ganti Wallpapper Monitor Detak Jantung Tekanan Darah Smart Watch",
"label_ids": [
2018619,
844931086908638,
844931064601283,
1718093079,
700005486,
1049112,
822059908662278,
825465608499232,
825465608497696,
1119699,
1718596,
2213765,
298488495,
2103625,
700810080
],
"image": "sg-11134201-825zl-mj73ycjfbhfmdf",
"images": [
"sg-11134201-825zl-mj73ycjfbhfmdf",
"sg-11134201-82632-mj73yd7o76ddad",
"sg-11134201-8260i-mj73yduuq685fe",
"sg-11134201-8261v-mj73yej3yjuu21",
"sg-11134201-8261k-mj73yeqz5k3m48",
"sg-11134201-8262o-mj73yf5rbta8ff",
"sg-11134201-8260r-mj73yfelpvcz72",
"sg-11134201-8261z-mj73yfwzs7i81a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767794239,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 27450000000,
"price_min": 27450000000,
"price_max": 27450000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Black",
"Pink",
"White",
"Blue",
"Putih"
],
"images": [
"sg-11134201-82626-mj73yg9tlrlse4",
"sg-11134201-82617-mj73yggap88z1b",
"sg-11134201-8261s-mj73ygnq90cidc",
"sg-11134201-8261r-mj73yh0nclqeef",
"sg-11134201-8260a-mj73yh819dz66a"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27440000000,
"strikethrough_price": 27450000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1301861090344960,
"discount_text": null,
"model_id": 335403755232,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1301861090344960,
"voucher_code": "RAEIJJKS8",
"voucher_discount": 10000000,
"time_info": {
"start_time": 1764653160,
"end_time": 1772260440,
"valid_duration": null
},
"groups": [],
"min_spend": 1000000000
},
"recommended_platform_voucher_info": null,
"original_price": 27450000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HOTOT_Sport",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46804313805,
"shopid": 1367410104,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zl-mj73ycjfbhfmdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,1718093079,700005486,1049112,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2103625,700810080],\"matched_keywords\":[\"\"],\"merge_rank\":737,\"model_id\":335403755232,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-825zl-mj73ycjfbhfmdf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,1718093079,700005486,1049112,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,298488495,2103625,700810080],\"matched_keywords\":[\"\"],\"merge_rank\":737,\"model_id\":335403755232,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46804313805",
"debug_info": null
},
{
"item_basic": {
"itemid": 44804313772,
"shopid": 1367410104,
"name": "Curve 3 Smartwatch Original 12.7mm 22g Ultra-thin and lightweight | 240 hours battery life | IP68 Waterproof Tahan air | Smartwatch Pria Wanita Smart Watch Fit Aolon Official Store",
"label_ids": [
2018619,
844931064601283,
844931086908638,
700005486,
1049112,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699,
1718596,
2213765,
298488495,
2103625,
700810080,
1400285055
],
"image": "sg-11134201-82614-mj73vcydrg90fd",
"images": [
"sg-11134201-82614-mj73vcydrg90fd",
"sg-11134201-8260u-mj73vdcddhq848",
"sg-11134201-8260u-mj73vdnhgwzo87",
"sg-11134201-8261x-mj73ve1myz29a0",
"sg-11134201-825zl-mj73vechl2bl15",
"sg-11134201-8262n-mj73velutm9x54",
"sg-11134201-8260x-mj73vev50irp14",
"sg-11134201-8261h-mj73vf37gu8593"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767794108,
"sold": 9,
"historical_sold": 9,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 3,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 27450000000,
"price_min": 27450000000,
"price_max": 27450000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Black [2025 New]",
"Silver",
"Gold",
"Black Add Metal",
"Black Metal Film",
"Black Add Milan",
"Black Add Film",
"Black Add Leather",
"Black Add Megnet",
"Black Nylon GYGN",
"Black Nylon OGGN",
"Black Nylon REDYW",
"Silver Black Silicon",
"Silver Silicon Film",
"Silver Add Metal",
"Silver Add Milan",
"Silver Add Megnet",
"Silver Add Film",
"Silver Nylon GYGN",
"Silver Nylon OGGN",
"Silver Nylon REDYW",
"Gold Add Metal",
"Gold Add Megnet",
"Gold Black Silicon",
"Gold Add Film",
"Gold Nylon GYGN",
"Gold Nylon OGGN",
"Gold Nylon REDYW",
"CURVE 2 Silver",
"CURVE 2 Silver Milan",
"CURVE 2 Gold",
"[New Upgrade]"
],
"images": [
"sg-11134201-82602-mj73vfbl8jy8c7",
"sg-11134201-8261d-mj73vfmidwjq33",
"sg-11134201-8261j-mj73vfxjtt6o93",
"sg-11134201-8262h-mj73vg5f7vuu0c",
"sg-11134201-82613-mj73vge6q1hf36",
"sg-11134201-8260b-mj73vgnjsw0360",
"sg-11134201-82632-mj73vgv6sykh0e",
"sg-11134201-8262e-mj73vh3tuxvka5",
"sg-11134201-8260u-mj73vhbevdhiff",
"sg-11134201-82622-mj73vhipi60z01",
"sg-11134201-825zu-mj73vht66u4m1a",
"sg-11134201-82615-mj73vi3mpuddb6",
"sg-11134201-8260w-mj73vidqzsao92",
"sg-11134201-82605-mj73vimsu4ud8d",
"sg-11134201-82617-mj73viu14nb914",
"sg-11134201-82622-mj73vj2c4jk33d",
"sg-11134201-82600-mj73vj9r0hkw5f",
"sg-11134201-8262g-mj73vjim9ekg24",
"sg-11134201-82607-mj73vjrz9j454c",
"sg-11134201-82602-mj73vk4ia1hj65",
"sg-11134201-8261n-mj73vkedp4huff",
"sg-11134201-82617-mj73vkngxzwh89",
"sg-11134201-8262j-mj73vkugvyfafc",
"sg-11134201-82630-mj73vl7563gldf",
"sg-11134201-8260e-mj73vli4usjk83",
"sg-11134201-8260u-mj73vlsmxxxh03",
"sg-11134201-825zl-mj73vm2gkgea4b",
"sg-11134201-825zp-mj73vmdwafba97",
"sg-11134201-825zq-mj73vmnwl3b6d5",
"sg-11134201-82603-mj73vmwzacch8e",
"sg-11134201-8262r-mj73vn8rdog24a",
"sg-11134201-8261d-mj73vni84kci5f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 3,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27440000000,
"strikethrough_price": 27450000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1301861090344960,
"discount_text": null,
"model_id": 390403747567,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1301861090344960,
"voucher_code": "RAEIJJKS8",
"voucher_discount": 10000000,
"time_info": {
"start_time": 1764653160,
"end_time": 1772260440,
"valid_duration": null
},
"groups": [],
"min_spend": 1000000000
},
"recommended_platform_voucher_info": null,
"original_price": 27450000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 9,
"rounded_local_monthly_sold_count": 9,
"local_monthly_sold_count_text": "9",
"rounded_display_sold_count": 9,
"display_sold_count_text": "9"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HOTOT_Sport",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44804313772,
"shopid": 1367410104,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82614-mj73vcydrg90fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,700005486,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,298488495,2103625,700810080,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":208,\"model_id\":390403747567,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82614-mj73vcydrg90fd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,700005486,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,298488495,2103625,700810080,1400285055],\"matched_keywords\":[\"\"],\"merge_rank\":208,\"model_id\":390403747567,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44804313772",
"debug_info": null
},
{
"item_basic": {
"itemid": 55254275838,
"shopid": 644077619,
"name": "jam smartwatch Coros vertix 2 sapphire only",
"label_ids": [
2018619,
844931064601283,
298463379,
1049112,
700005512,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
2048660,
2048661,
1718093079,
1119699,
1718596,
2213765,
700765096,
298488495,
2103625,
298468389,
1718088045
],
"image": "id-11134207-8224t-mj6scsu8mh38d3",
"images": [
"id-11134207-8224t-mj6scsu8mh38d3",
"id-11134207-8224p-mj6scsu8i9dw58",
"id-11134207-8224o-mj6scsu8jnycb3",
"id-11134207-82251-mj6scsu8l2isc5",
"id-11134207-8224p-mj6scsu8nvno40",
"id-11134207-8224p-mj6scsu8pa84eb",
"id-11134207-8224p-mj6scsu8qosk59",
"id-11134207-8224w-mj6scsu8s3d077",
"id-11134207-8224q-mj6t8owqt05c71"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767776876,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "COROS",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 650000000000,
"price_min": 650000000000,
"price_max": 650000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vdve-mj6t9jnl6hok4f.16000091767776262.mp4",
"thumb_url": "id-11110107-6vdve-mj6t9jnl6hok4f_cover",
"duration": 21,
"version": 2,
"vid": "id-11110107-6vdve-mj6t9jnl6hok4f",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vdve-mj6t9jnl6hok4f.16000091767776262.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdve-mj6t9jnl6hok4f.16000091767776262.mp4",
"width": 270,
"height": 330
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdve-mj6t9jnl6hok4f.default.mp4",
"width": 288,
"height": 352
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 650000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 259138249427,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 650000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Araya0519",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55254275838,
"shopid": 644077619,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj6scsu8mh38d3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,700005512,822059908662278,825465608493600,825465608494624,825465608499232,2048660,2048661,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":786,\"model_id\":259138249427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj6scsu8mh38d3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,700005512,822059908662278,825465608493600,825465608494624,825465608499232,2048660,2048661,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":786,\"model_id\":259138249427,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55254275838",
"debug_info": null
},
{
"item_basic": {
"itemid": 46554225430,
"shopid": 192472371,
"name": "garmin fenix 7X sapphire dual power fullset",
"label_ids": [
2018619,
844931064601283,
1059156,
700000491,
1718093079,
822059908662278,
825465608494624,
825465608499232,
1119699,
1718596,
2213765,
298488495,
299033478,
298933384
],
"image": "id-11134207-8224z-mj5joqpae6tff2",
"images": [
"id-11134207-8224z-mj5joqpae6tff2",
"id-11134207-8224t-mj5joqpbrcp2ed",
"id-11134207-8224q-mj5joqpknm687c",
"id-11134207-8224t-mj5joqpkp0qoe5",
"id-11134207-8224o-mj5joqpkqfb464",
"id-11134207-8224v-mj5joqpkrtvk08",
"id-11134207-8224w-mj5joqpkt8g08e",
"id-11134207-8224r-mj5joqpkun0ga7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767699762,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 780000000000,
"price_min": 780000000000,
"price_max": 780000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Salatiga",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 780000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 440398363942,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 780000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "tephh's",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46554225430,
"shopid": 192472371,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mj5joqpae6tff2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,299033478,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":372,\"model_id\":440398363942,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mj5joqpae6tff2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,299033478,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":372,\"model_id\":440398363942,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46554225430",
"debug_info": null
},
{
"item_basic": {
"itemid": 54954192460,
"shopid": 1102849498,
"name": "Smartwatch JETE VOLT 2X PRO 1.43 Inch AMOLED Screen Display Jam Tangan AI Running 5 ATM Waterproof Watch 4GB Smart Watch With GPS Sport Flashlight Mode Heart Rate Jam Tangan Pria Wanita",
"label_ids": [
1428713,
1718087960,
844931064601283,
1012729,
2018618,
2018619,
2153644,
298463379,
1049117,
1049116,
822059908662278,
825465608499232,
834403089593352,
825465608497696,
825465608492064,
825465608494624,
1718093079,
1119699,
1718596,
2213765,
298488495,
2213652,
2103625,
2143647,
298468389,
1718088045
],
"image": "id-11134207-8224z-mjf4zplte1hh7c",
"images": [
"id-11134207-8224z-mjf4zplte1hh7c",
"sg-11134201-8261c-mj5e83yw5hj4cb",
"sg-11134201-82600-mj5e845wk9ae17",
"sg-11134201-825zw-mj5e84e8krgi2e",
"sg-11134201-82607-mj5e84nqx8na0b",
"sg-11134201-8262d-mj5e84v9sf0g64",
"sg-11134201-8260e-mj5e853kldkyca",
"sg-11134201-8262h-mj5e85h2zvgh61",
"sg-11134201-82631-mj5e85v48wsidc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767690441,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "JETE",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 155890000000,
"price_min": 155890000000,
"price_max": 155890000000,
"price_min_before_discount": 279990000000,
"price_max_before_discount": 279990000000,
"hidden_price_display": null,
"price_before_discount": 279990000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-44%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 824414367694848,
"price": 153890000000,
"strikethrough_price": 279990000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1327348507361280,
"discount_text": "-44%",
"model_id": 302313329431,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1327348507361280,
"voucher_code": "DORADIS4",
"voucher_discount": 2000000000,
"time_info": {
"start_time": 1767691860,
"end_time": 1774974660,
"valid_duration": null
},
"groups": [],
"min_spend": 30000000000
},
"recommended_platform_voucher_info": null,
"original_price": 279990000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Doran Authorized Store Yogyakarta",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54954192460,
"shopid": 1102849498,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjf4zplte1hh7c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1012729,2018618,2018619,2153644,298463379,1049117,1049116,822059908662278,825465608499232,834403089593352,825465608497696,825465608492064,825465608494624,1718093079,1119699,1718596,2213765,298488495,2213652,2103625,2143647,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":891,\"model_id\":302313329431,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjf4zplte1hh7c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,1012729,2018618,2018619,2153644,298463379,1049117,1049116,822059908662278,825465608499232,834403089593352,825465608497696,825465608492064,825465608494624,1718093079,1119699,1718596,2213765,298488495,2213652,2103625,2143647,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":891,\"model_id\":302313329431,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54954192460",
"debug_info": null
},
{
"item_basic": {
"itemid": 51654181914,
"shopid": 644077619,
"name": "jam smartwatch Coros pace 2",
"label_ids": [
1400066568,
2018619,
844931064601283,
298463379,
1049112,
700005512,
1718093079,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
2048660,
2048661,
1119699,
1718596,
2213765,
700765096,
298488495,
2103625,
1718088045,
298468389
],
"image": "id-11134207-82251-mj5856jwz9qe7d",
"images": [
"id-11134207-82251-mj5856jwz9qe7d",
"id-11134207-82251-mj5856jx22vaf5",
"id-11134207-8224x-mj5856jx0oau71",
"id-11134207-82250-mj5856jx4w06cc",
"id-11134207-8224s-mj5856jwxv5ydb",
"id-11134207-8224s-mj5856jx3hfq26",
"id-11134207-8224s-mj5856jx6akmd6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767684718,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "COROS",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 270000000000,
"price_min": 270000000000,
"price_max": 270000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6venf-mj5auukwdngm45.16000091767684775.mp4",
"thumb_url": "id-11110107-6venf-mj5auukwdngm45_cover",
"duration": 13,
"version": 2,
"vid": "id-11110107-6venf-mj5auukwdngm45",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6venf-mj5auukwdngm45.16000091767684775.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venf-mj5auukwdngm45.16000091767684775.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venf-mj5auukwdngm45.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 270000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355397147614,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 270000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Araya0519",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51654181914,
"shopid": 644077619,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj5856jwz9qe7d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,298463379,1049112,700005512,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":787,\"model_id\":355397147614,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj5856jwz9qe7d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,298463379,1049112,700005512,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":787,\"model_id\":355397147614,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51654181914",
"debug_info": null
},
{
"item_basic": {
"itemid": 50154185606,
"shopid": 999577,
"name": "Apple Watch SE Gen 2 40mm Black Midnight GPS",
"label_ids": [
844931064601283,
844931086908638,
298463379,
2018619,
1059152,
1059154,
822059908662278,
825465608493600,
822120592861206,
834403089593352,
825465608494624,
825465608497696,
840990690654214,
2048660,
2048661,
840955085144628,
827380695406658,
825465608499232,
1718093079,
1119699,
1718596,
2213765,
700765096,
298488495,
2103625,
298468389,
1718088045
],
"image": "id-11134207-8224x-mj58bjao0u11c4",
"images": [
"id-11134207-8224x-mj58bjao0u11c4",
"id-11134207-8224y-mj58bjao28lh7c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767681659,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 319900000000,
"price_min": 319900000000,
"price_max": 319900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 319900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 410396817211,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 319900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "lologrosir",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50154185606,
"shopid": 999577,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj58bjao0u11c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,2018619,1059152,1059154,822059908662278,825465608493600,822120592861206,834403089593352,825465608494624,825465608497696,840990690654214,2048660,2048661,840955085144628,827380695406658,825465608499232,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":498,\"model_id\":410396817211,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj58bjao0u11c4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,2018619,1059152,1059154,822059908662278,825465608493600,822120592861206,834403089593352,825465608494624,825465608497696,840990690654214,2048660,2048661,840955085144628,827380695406658,825465608499232,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":498,\"model_id\":410396817211,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50154185606",
"debug_info": null
},
{
"item_basic": {
"itemid": 55304179133,
"shopid": 204825196,
"name": "Peje Smartwatch ZW10 Silver Original",
"label_ids": [
2018619,
1428713,
1718087960,
844931064601283,
298463379,
1059152,
1059154,
1718093079,
822059908662278,
825465608493600,
825465608499232,
825465608497696,
2048660,
2048661,
1119699,
1718596,
2213765,
700765096,
298488495,
2103625,
298468389,
1718088045
],
"image": "id-11134207-8224w-mj57mz8s9a8359",
"images": [
"id-11134207-8224w-mj57mz8s9a8359",
"id-11134207-82250-mj57mz8s52is98"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767679492,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "PEJE",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 45000000000,
"price_min": 45000000000,
"price_max": 45000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 45000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 365396594227,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 45000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "mayaulfahh",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55304179133,
"shopid": 204825196,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj57mz8s9a8359\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608493600,825465608499232,825465608497696,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":376,\"model_id\":365396594227,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj57mz8s9a8359\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608493600,825465608499232,825465608497696,2048660,2048661,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":376,\"model_id\":365396594227,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55304179133",
"debug_info": null
},
{
"item_basic": {
"itemid": 44754200183,
"shopid": 204825196,
"name": "Xiaomi Redmi Watch 5 Lite White Original",
"label_ids": [
2018619,
1428713,
1718087960,
844931064601283,
298463379,
1059154,
1059152,
822059908662278,
2048661,
825465608493600,
825465608499232,
825465608497696,
2048660,
1718093079,
1119699,
1718596,
2213765,
700765096,
298488495,
2103625,
298468389,
1718088045
],
"image": "id-11134207-8224o-mj56v9nd6r5yc2",
"images": [
"id-11134207-8224o-mj56v9nd6r5yc2",
"id-11134207-8224p-mj56v9nmtpfnfb",
"id-11134207-82251-mj56v9n1hcskc1",
"id-11134207-82251-mj56v9nwupdv1f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767678204,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "Xiaomi",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 69000000000,
"price_min": 69000000000,
"price_max": 69000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 69000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 395396510441,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 69000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "mayaulfahh",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44754200183,
"shopid": 204825196,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mj56v9nd6r5yc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1059154,1059152,822059908662278,2048661,825465608493600,825465608499232,825465608497696,2048660,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":798,\"model_id\":395396510441,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mj56v9nd6r5yc2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1059154,1059152,822059908662278,2048661,825465608493600,825465608499232,825465608497696,2048660,1718093079,1119699,1718596,2213765,700765096,298488495,2103625,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":798,\"model_id\":395396510441,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44754200183",
"debug_info": null
},
{
"item_basic": {
"itemid": 50304177372,
"shopid": 1413055138,
"name": "Apple Watch ultra 49mm 100% asli set lengkap dengan garansi internasional-Fungsi panggilan - pengingat pesan - pemantauan tubuh",
"label_ids": [
2018619,
1428713,
1718087960,
844931064601283,
844931086908638,
298463379,
1718093079,
1059152,
1049122,
822059908662278,
825465608499232,
1119699,
1718596,
2213765,
298488495,
298933384,
298468389,
1718088045
],
"image": "id-11134207-82252-mj51r25513b56f",
"images": [
"id-11134207-82252-mj51r25513b56f",
"id-11134207-82250-mj51r254ya69f2",
"id-11134207-8224x-mj51r254zoqpe4",
"id-11134207-8224r-mj51r254wvlt66"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767669668,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 5,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 55000000000,
"price_min": 55000000000,
"price_max": 55000000000,
"price_min_before_discount": 68000000000,
"price_max_before_discount": 68000000000,
"hidden_price_display": null,
"price_before_discount": 68000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-19%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Model",
"options": [
"49mm Oranye"
],
"images": [
"id-11134207-8224u-mj51r2552hvl54"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227928957005824,
"price": 55000000000,
"strikethrough_price": 68000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-19%",
"model_id": 267312524885,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 68000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "iBOX Mall Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50304177372,
"shopid": 1413055138,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj51r25513b56f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,1119699,1718596,2213765,298488495,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":592,\"model_id\":267312524885,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj51r25513b56f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,844931086908638,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,1119699,1718596,2213765,298488495,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":592,\"model_id\":267312524885,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50304177372",
"debug_info": null
},
{
"item_basic": {
"itemid": 47054183551,
"shopid": 1413055138,
"name": "iwatch apple Watch Ultra 1 ultra 2 2022 2023 LikeNew 100% original",
"label_ids": [
2018619,
1718087960,
1428713,
844931086908638,
844931064601283,
298463379,
1718093079,
1059152,
1049122,
822059908662278,
825465608499232,
1119699,
1718596,
2213765,
298488495,
298933384,
298468389,
1718088045
],
"image": "id-11134207-8224w-mj51r255kr9ccc",
"images": [
"id-11134207-8224w-mj51r255kr9ccc",
"id-11134207-8224q-mj4zulxc7rpe3d",
"id-11134207-8224u-mj4zulxcakuac9",
"id-11134207-8224y-mj4zulxc969u66"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767669534,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 55000000000,
"price_min": 55000000000,
"price_max": 55000000000,
"price_min_before_discount": 68000000000,
"price_max_before_discount": 68000000000,
"hidden_price_display": null,
"price_before_discount": 68000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-19%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Model",
"options": [
"49mm Oranye"
],
"images": [
"id-11134207-8224o-mj51r254vh1d4f"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227928957005824,
"price": 55000000000,
"strikethrough_price": 68000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-19%",
"model_id": 360395957935,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 68000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "iBOX Mall Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47054183551,
"shopid": 1413055138,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj51r255kr9ccc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,1119699,1718596,2213765,298488495,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":593,\"model_id\":360395957935,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj51r255kr9ccc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,1059152,1049122,822059908662278,825465608499232,1119699,1718596,2213765,298488495,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":593,\"model_id\":360395957935,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47054183551",
"debug_info": null
},
{
"item_basic": {
"itemid": 55454176284,
"shopid": 40512799,
"name": "jam tangan amazfit active 2",
"label_ids": [
1000167,
2018619,
844931064601283,
298463379,
1059152,
1049124,
1718093079,
822059908662278,
825465608494624,
825465608499232,
1119699,
1718596,
2213765,
298488495,
2103625,
1718088045,
298468389
],
"image": "id-11134207-82251-mj4ys5ki991h95",
"images": [
"id-11134207-82251-mj4ys5ki991h95",
"id-11134207-8224y-mj4ys5jqjxtsc7",
"id-11134207-8224v-mj4ys5kj9rt3c1",
"id-11134207-8224p-mj4ys5kfpy4i6c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767664554,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Amazfit",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 200000000000,
"price_min": 200000000000,
"price_max": 200000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 200000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 262312319382,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 200000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HMadhy",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55454176284,
"shopid": 40512799,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj4ys5ki991h95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,298463379,1059152,1049124,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":805,\"model_id\":262312319382,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj4ys5ki991h95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,298463379,1059152,1049124,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,2103625,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":805,\"model_id\":262312319382,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55454176284",
"debug_info": null
},
{
"item_basic": {
"itemid": 47154190219,
"shopid": 1660662643,
"name": "GPS Garmin 64s second murah",
"label_ids": [
844931086908638,
844931064601283,
1400066568,
1428713,
1718087960,
700005490,
700005495,
1718093079,
822059908662278,
825465608499232,
1119699,
1718596,
2213765,
298488495,
299033478
],
"image": "id-11134207-82251-mj4nuq3h8sn767",
"images": [
"id-11134207-82251-mj4nuq3h8sn767",
"id-11134207-8224r-mj4nuq3ha77n77",
"id-11134207-82252-mj4nuq3hbls362"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767646539,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 360000000000,
"price_min": 360000000000,
"price_max": 360000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vdvh-mjghbs7fkiyp3a.16000071768361534.mp4",
"thumb_url": "id-11110107-6vdvh-mjghbs7fkiyp3a_cover",
"duration": 17,
"version": 2,
"vid": "id-11110107-6vdvh-mjghbs7fkiyp3a",
"formats": [
{
"format": 1600007,
"defn": "V640P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vdvh-mjghbs7fkiyp3a.16000071768361534.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvh-mjghbs7fkiyp3a.16000071768361534.mp4",
"width": 640,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvh-mjghbs7fkiyp3a.default.mp4",
"width": 540,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 360000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 370395211177,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 360000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Geonavigator11",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47154190219,
"shopid": 1660662643,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj4nuq3h8sn767\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1428713,1718087960,700005490,700005495,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":607,\"model_id\":370395211177,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mj4nuq3h8sn767\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1428713,1718087960,700005490,700005495,1718093079,822059908662278,825465608499232,1119699,1718596,2213765,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":607,\"model_id\":370395211177,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47154190219",
"debug_info": null
},
{
"item_basic": {
"itemid": 56204159572,
"shopid": 1660662643,
"name": "Gps Garmin 66s Bekas Lengkap Original",
"label_ids": [
844931086908638,
844931064601283,
1400066568,
1428713,
1718087960,
700005495,
700005490,
822059908662278,
825465608499232,
1718093079,
1119699,
1718596,
2213765,
298488495,
299033478
],
"image": "id-11134207-8224y-mj4l5qvv9jwnb9",
"images": [
"id-11134207-8224y-mj4l5qvv9jwnb9",
"id-11134207-8224w-mj4l5qvvayh331",
"id-11134207-8224w-mj4l5qvvcd1jbf",
"id-11134207-8224x-mj4lglvojaiu21",
"id-11134207-8224o-mj4lglvoyqrn41"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767642204,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 560000000000,
"price_min": 560000000000,
"price_max": 560000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 560000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 340395130157,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 560000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Geonavigator11",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56204159572,
"shopid": 1660662643,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj4l5qvv9jwnb9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1428713,1718087960,700005495,700005490,822059908662278,825465608499232,1718093079,1119699,1718596,2213765,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":608,\"model_id\":340395130157,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mj4l5qvv9jwnb9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,1428713,1718087960,700005495,700005490,822059908662278,825465608499232,1718093079,1119699,1718596,2213765,298488495,299033478],\"matched_keywords\":[\"\"],\"merge_rank\":608,\"model_id\":340395130157,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56204159572",
"debug_info": null
},
{
"item_basic": {
"itemid": 46904163155,
"shopid": 192472371,
"name": "garmin forerunner 570 fullset",
"label_ids": [
2018619,
844931064601283,
1059156,
700000491,
1718093079,
822059908662278,
825465608494624,
825465608499232,
1119699,
1718596,
2213765,
298488495,
299033477
],
"image": "id-11134207-82250-mj42uvxnnv2a15",
"images": [
"id-11134207-82250-mj42uvxnnv2a15",
"id-11134207-8224z-mj42uvxnp9mqe3",
"id-11134207-8224z-mj42uvxnqo765d",
"id-11134207-8224w-mj42uvxns2rm08",
"id-11134207-8224o-mj42uvxnthc208",
"id-11134207-8224q-mj42uvxnuvwic0",
"id-11134207-8224p-mj42uvyg59mt32",
"id-11134207-8224u-mj42uvyg6o7910",
"id-11134207-8224v-mj42uvyg82rp25"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767613160,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 720000000000,
"price_min": 720000000000,
"price_max": 720000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Salatiga",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 720000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 307311257821,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 720000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "tephh's",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46904163155,
"shopid": 192472371,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj42uvxnnv2a15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":373,\"model_id\":307311257821,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj42uvxnnv2a15\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,1059156,700000491,1718093079,822059908662278,825465608494624,825465608499232,1119699,1718596,2213765,298488495,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":373,\"model_id\":307311257821,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46904163155",
"debug_info": null
},
{
"item_basic": {
"itemid": 48904166675,
"shopid": 1349665689,
"name": "WISELION Z138 Smartwatch 1.39 inch Layar HD Bluetooth Calls 123 Sport Mode Fitness Tracker Waterproof Health Monitoring Wallpaperย Kustom Long Battery Jamย Tanganย Pintar",
"label_ids": [
2068629,
2018618,
700700063,
298938357,
2153644,
1428713,
1718087960,
844931064601283,
844931086908638,
298463379,
1059151,
1049112,
1718093079,
822059908662278,
825465608497696,
825465608499232,
1119699,
1718596,
2213765,
2213652,
298488495,
1015914,
700190087,
298468389,
2098628,
2098629,
1718088045,
298938368
],
"image": "id-11134207-8224w-mj3ytnedjy1275",
"images": [
"id-11134207-8224w-mj3ytnedjy1275",
"id-11134207-82252-mj3ytne5jzlxaf",
"id-11134207-8224v-mj3ytne5edc5fe",
"id-11134207-8224t-mj3ytne5h6h189",
"id-11134207-82251-mj3ytne5msqt59",
"id-11134207-82252-mj3ytne5frwl7e",
"id-11134207-8224q-mj3ytne5il1hd1",
"id-11134207-8224p-mj3ytne5o7b99e",
"id-11134207-82252-mj3ytne5le6de5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767606749,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100013,
"brand": "WISELION",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 21999900000,
"price_min": 21999900000,
"price_max": 21999900000,
"price_min_before_discount": 99999900000,
"price_max_before_discount": 99999900000,
"hidden_price_display": null,
"price_before_discount": 99999900000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-78%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vemz-mj40g83tk6pv9f.16000101767606748.mp4",
"thumb_url": "id-11110105-6vemz-mj40g83tk6pv9f_cover",
"duration": 32,
"version": 2,
"vid": "id-11110105-6vemz-mj40g83tk6pv9f",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vemz-mj40g83tk6pv9f.16000101767606748.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mj40g83tk6pv9f.16000101767606748.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vemz-mj40g83tk6pv9f.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Emas sampanye"
],
"images": [
"id-11134207-8224y-mj3ytne5plvpd9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp73RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 731627622301696,
"price": 21999900000,
"strikethrough_price": 99999900000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-78%",
"model_id": 310394352773,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 99999900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp73RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Wiselion Indonesia ",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48904166675,
"shopid": 1349665689,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj3ytnedjy1275\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2068629,2018618,700700063,298938357,2153644,1428713,1718087960,844931064601283,844931086908638,298463379,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,2213652,298488495,1015914,700190087,298468389,2098628,2098629,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":820,\"model_id\":310394352773,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mj3ytnedjy1275\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2068629,2018618,700700063,298938357,2153644,1428713,1718087960,844931064601283,844931086908638,298463379,1059151,1049112,1718093079,822059908662278,825465608497696,825465608499232,1119699,1718596,2213765,2213652,298488495,1015914,700190087,298468389,2098628,2098629,1718088045,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":820,\"model_id\":310394352773,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48904166675",
"debug_info": null
},
{
"item_basic": {
"itemid": 56454155470,
"shopid": 590871202,
"name": "Apple Watch SE 2 40mm inter second",
"label_ids": [
2018619,
1718087960,
1428713,
844931064601283,
700005509,
1049138,
822059908662278,
825465608499232,
825465608497696,
1119699,
1718596,
2213765,
2098621,
1718093079,
298488495,
298933384
],
"image": "id-11134207-8224t-mj3zhlh6cd8jd5",
"images": [
"id-11134207-8224t-mj3zhlh6cd8jd5",
"id-11134207-8224o-mj3zhlh6drsz37",
"id-11134207-8224s-mj3zhlh6f6df21",
"id-11134207-8224u-mj3zhlh6gkxvf0",
"id-11134207-82252-mj3zhlh6hzibe5",
"id-11134207-8224x-mj3zhlh6je2r78",
"id-11134207-8224p-mj3zhlhhp4hy27",
"id-11134207-8224s-mj3zhlhhqj2e70"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767605937,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 185000000000,
"price_min": 185000000000,
"price_max": 185000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 185000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310394284010,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 185000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Nst Corporation",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56454155470,
"shopid": 590871202,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj3zhlh6cd8jd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,700005509,1049138,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,2098621,1718093079,298488495,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":652,\"model_id\":310394284010,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj3zhlh6cd8jd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,700005509,1049138,822059908662278,825465608499232,825465608497696,1119699,1718596,2213765,2098621,1718093079,298488495,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":652,\"model_id\":310394284010,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56454155470",
"debug_info": null
},
{
"item_basic": {
"itemid": 41177745495,
"shopid": 409991250,
"name": "Garmin edge 810 matot / (untuk part)",
"label_ids": [
2018619,
844931064601283,
298463379,
1059152,
1059154,
822059908662278,
825465608493600,
825465608499232,
1718093079,
1119699,
1718596,
2213765,
2103625,
298488495,
298468389,
1718088045
],
"image": "id-11134207-8224t-mj3b4wdiir5z8f",
"images": [
"id-11134207-8224t-mj3b4wdiir5z8f",
"id-11134207-8224v-mj3b4wdik5qfd5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767564968,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 30000000000,
"price_min": 30000000000,
"price_max": 30000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 30000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 302309610999,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 30000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sahabat Toko18",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 41177745495,
"shopid": 409991250,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj3b4wdiir5z8f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059152,1059154,822059908662278,825465608493600,825465608499232,1718093079,1119699,1718596,2213765,2103625,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":771,\"model_id\":302309610999,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mj3b4wdiir5z8f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059152,1059154,822059908662278,825465608493600,825465608499232,1718093079,1119699,1718596,2213765,2103625,298488495,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":771,\"model_id\":302309610999,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41177745495",
"debug_info": null
},
{
"item_basic": {
"itemid": 52504120014,
"shopid": 409991250,
"name": "layar lcd Garmin 60csx",
"label_ids": [
2018619,
844931064601283,
298463379,
1059152,
1059154,
1718093079,
822059908662278,
825465608499232,
825465608493600,
1119699,
1718596,
2213765,
2103625,
298488495,
1718088045,
298468389
],
"image": "id-11134207-8224r-mj3b4wdf0c1w16",
"images": [
"id-11134207-8224r-mj3b4wdf0c1w16",
"id-11134207-8224u-mj3b4we5gp37e3",
"id-11134207-8224s-mj3b4wdihclj43"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767564524,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 35000000000,
"price_min": 35000000000,
"price_max": 35000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 320391292900,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sahabat Toko18",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52504120014,
"shopid": 409991250,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mj3b4wdf0c1w16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608493600,1119699,1718596,2213765,2103625,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":770,\"model_id\":320391292900,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mj3b4wdf0c1w16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059152,1059154,1718093079,822059908662278,825465608499232,825465608493600,1119699,1718596,2213765,2103625,298488495,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":770,\"model_id\":320391292900,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52504120014",
"debug_info": null
},
{
"item_basic": {
"itemid": 51954079713,
"shopid": 130071787,
"name": "Original Apple Sport Loop Band Strap Watch 41mm 45mm Tali Jam",
"label_ids": [
2018619,
2068629,
2023641,
1400095067,
1400285005,
298938357,
1400066568,
844931086908638,
844931064601283,
298463379,
1059152,
700005489,
822059908662278,
825465608499232,
825465608497696,
2048660,
2048661,
825465608493600,
825465608494624,
1718093079,
1119699,
1718596,
700765096,
298488495,
2103625,
2213765,
2098629,
298468389,
1718088045,
2098628,
298938368
],
"image": "id-11134207-82250-mj1yd6mvkt8ia8",
"images": [
"id-11134207-82250-mj1yd6mvkt8ia8",
"id-11134207-8224v-mj1yd6mvglj4dd",
"id-11134207-8224s-mj1yd6mvi03k69",
"id-11134207-8224r-mj1yd6mvkt8gc9",
"id-11134207-82250-mj1yd6mvm7swd2",
"id-11134207-8224x-mj1yd6mvnmdce7",
"id-11134207-8224x-mj1yd6mvp0xsf0",
"id-11134207-8224w-mj1yd6mvqfi8bc",
"id-11134207-8224t-mj1yd6mvru2o8c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767483939,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 21900000000,
"price_min": 21900000000,
"price_max": 21900000000,
"price_min_before_discount": 84900000000,
"price_max_before_discount": 84900000000,
"hidden_price_display": null,
"price_before_discount": 84900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-74%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"41mm S/M Storm Blue",
"41mm M/L Storm Blue",
"45mm S/M Storm Blue",
"45mm M/L Storm Blue",
"41mm S/M Starlight",
"41mm M/L Starlight",
"45mm S/M Starlight",
"45mm M/L Starlight",
"41mm S/M Black",
"41mm M/L Black",
"45mm S/M Black",
"45mm M/L Black",
"41mm S/M Clay",
"41mm M/L Clay",
"45mm S/M Clay",
"45mm M/L Clay",
"41mm S/M Pink",
"41mm M/L Pink",
"45mm S/M Pink",
"45mm M/L Pink",
"41mm S/M Red",
"41mm M/L Red",
"45mm S/M Red",
"45mm M/L Red",
"45mm Loop Starlight",
"45mm Loop WinterBlue",
"45mm Loop Cypress",
"45mm Loop Light Pink"
],
"images": [
"id-11134207-8224p-mj1z6tx9ciys06",
"id-11134207-8224z-mj1z6tx9b4ec6b",
"id-11134207-82251-mj1z6tx99ptw5f",
"id-11134207-8224x-mj1z6tx98b9g85",
"id-11134207-8224u-mj1z6tx96wp09b",
"id-11134207-8224s-mj1z6tx95i4ke7",
"id-11134207-82250-mj1z6tx943k4f5",
"id-11134207-8224y-mj1z6tx9qkn779",
"id-11134207-8224v-mj1z6tx9dxj897",
"id-11134207-8224w-mj1z46gkxgxx6a",
"id-11134207-8224x-mj1z46gkw2dha6",
"id-11134207-8224y-mj1z46gkunt179",
"id-11134207-8224z-mj1z46gkt98l51",
"id-11134207-82252-mj1z46gkruo5e1",
"id-11134207-8224v-mj1z46gkqg3pae",
"id-11134207-8224u-mj1z46gkp1j949",
"id-11134207-8224w-mj1z46gknmytcb",
"id-11134207-82252-mj1z46gkm8ed6c",
"id-11134207-8224o-mj1z46gkkttx53",
"id-11134207-8224v-mj1z46gc6tqa92",
"id-11134207-8224x-mj1za12modfn31",
"id-11134207-8224s-mj1z6tx9gqo4b2",
"id-11134207-8224o-mj1z6tx9fc3oa3",
"id-11134207-8224t-mj1yd6mvru2o8c",
"id-11134207-8224v-mj1yd6mvglj4dd",
"id-11134207-8224x-mj1yd6mvp0xsf0",
"id-11134207-8224r-mj1yd6mvkt8gc9",
"id-11134207-8224p-mj1yd6mvt8n4c7"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp73RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 823581051781120,
"price": 21900000000,
"strikethrough_price": 84900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-74%",
"model_id": 435387775782,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 84900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp73RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "jap.id",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51954079713,
"shopid": 130071787,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj1yd6mvkt8ia8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,2023641,1400095067,1400285005,298938357,1400066568,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,1718093079,1119699,1718596,700765096,298488495,2103625,2213765,2098629,298468389,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":191,\"model_id\":435387775782,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mj1yd6mvkt8ia8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,2023641,1400095067,1400285005,298938357,1400066568,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,825465608499232,825465608497696,2048660,2048661,825465608493600,825465608494624,1718093079,1119699,1718596,700765096,298488495,2103625,2213765,2098629,298468389,1718088045,2098628,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":191,\"model_id\":435387775782,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51954079713",
"debug_info": null
},
{
"item_basic": {
"itemid": 47654090172,
"shopid": 35612410,
"name": "Samsung Galaxy Fit3 Gray / New / Segel",
"label_ids": [
2018619,
844931064601283,
844931086908638,
1049112,
1049127,
822059908662278,
825465608492064,
825465608499232,
1718093079,
1119699,
1718596,
299033477,
298488495,
2213765,
298933384
],
"image": "id-11134207-8224x-mj0zyxbb0nwhad",
"images": [
"id-11134207-8224x-mj0zyxbb0nwhad",
"id-11134207-8224v-mj0zz9trxw5ja9",
"id-11134207-8224z-mj0zz9tpbs3o00",
"id-11134207-8224t-mj0zz9uc1amf89",
"id-11134207-8224u-mj0zz9v7d8n4de"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767424687,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "Samsung",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 62000000000,
"price_min": 62000000000,
"price_max": 62000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 62000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 335385731631,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 62000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "alaisyah11",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47654090172,
"shopid": 35612410,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj0zyxbb0nwhad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049112,1049127,822059908662278,825465608492064,825465608499232,1718093079,1119699,1718596,299033477,298488495,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":791,\"model_id\":335385731631,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mj0zyxbb0nwhad\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049112,1049127,822059908662278,825465608492064,825465608499232,1718093079,1119699,1718596,299033477,298488495,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":791,\"model_id\":335385731631,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47654090172",
"debug_info": null
},
{
"item_basic": {
"itemid": 41977710940,
"shopid": 1460524924,
"name": "Oppo Watch X Gen 1 superlikenew Mei 2026 resmi second seken bekas",
"label_ids": [
844931086908638,
844931064601283,
1049116,
1049117,
1718093079,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
2048660,
2048661,
1119699,
1718596,
700765096,
2103625,
298488495,
2213765,
1400066568
],
"image": "id-11134207-82252-mj06h1hewc8xf1",
"images": [
"id-11134207-82252-mj06h1hewc8xf1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767374882,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "Oppo",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 202500000000,
"price_min": 202500000000,
"price_max": 202500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 202500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 365384381635,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 202500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GadgetTechno",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 41977710940,
"shopid": 1460524924,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj06h1hewc8xf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,1049117,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,1119699,1718596,700765096,2103625,298488495,2213765,1400066568],\"matched_keywords\":[\"\"],\"merge_rank\":792,\"model_id\":365384381635,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mj06h1hewc8xf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,1049117,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2048660,2048661,1119699,1718596,700765096,2103625,298488495,2213765,1400066568],\"matched_keywords\":[\"\"],\"merge_rank\":792,\"model_id\":365384381635,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_41977710940",
"debug_info": null
},
{
"item_basic": {
"itemid": 57954033277,
"shopid": 43857941,
"name": "Huawei GT5",
"label_ids": [
1000167,
844931086908638,
844931064601283,
298463379,
1718093079,
1119699,
1718596,
298488495,
2213765,
1400285055,
2103625,
700005490,
700005495,
822059908662278,
825465608492064,
825465608499232,
298468389,
1718088045
],
"image": "id-11134207-8224u-mizmf9909q1165",
"images": [
"id-11134207-8224u-mizmf9909q1165",
"id-11134207-8224q-mizmf990b4lh5f",
"id-11134207-8224o-mizmf990cj5xf5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767341710,
"sold": 6,
"historical_sold": 6,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 3,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 220000000000,
"price_min": 220000000000,
"price_max": 220000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Biru jeams",
"Coklat"
],
"images": [
"id-11134207-82252-mizmf990dxqd5e",
"id-11134207-8224z-mizmf990fcat88"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
3,
0,
0,
0,
0,
3
],
"rcount_with_context": 2,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 220000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 302305549659,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 220000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 6,
"rounded_local_monthly_sold_count": 6,
"local_monthly_sold_count_text": "6",
"rounded_display_sold_count": 6,
"display_sold_count_text": "6"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "CantikMenarik",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57954033277,
"shopid": 43857941,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mizmf9909q1165\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931086908638,844931064601283,298463379,1718093079,1119699,1718596,298488495,2213765,1400285055,2103625,700005490,700005495,822059908662278,825465608492064,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":202,\"model_id\":302305549659,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mizmf9909q1165\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931086908638,844931064601283,298463379,1718093079,1119699,1718596,298488495,2213765,1400285055,2103625,700005490,700005495,822059908662278,825465608492064,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":202,\"model_id\":302305549659,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57954033277",
"debug_info": null
},
{
"item_basic": {
"itemid": 43927698656,
"shopid": 1592612908,
"name": "Apple Watch iWatch Ultra 2 Titanium 49mm Fullset Original like new",
"label_ids": [
844931086908638,
844931064601283,
700005490,
700005510,
822059908662278,
825465608499232,
825465608493600,
825465608494624,
1718093079,
1119699,
1718596,
298488495,
2213765,
298933384,
2098621
],
"image": "id-11134207-8224z-mizfx4fwxfcxf1",
"images": [
"id-11134207-8224z-mizfx4fwxfcxf1",
"id-11134207-8224q-mizfx4f4snwl85",
"id-11134207-8224x-mizfx4f2x8n5a8",
"id-11134207-8224x-mizfx4f52hvm04",
"id-11134207-8224w-mizfx4f53wg2ed",
"id-11134207-8224z-mizfx4f55b0i20",
"id-11134207-8224o-mizfx4f56pky01"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767330119,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "Apple",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 815000000000,
"price_min": 815000000000,
"price_max": 815000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 815000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 350382488131,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 815000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SecondMariel",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43927698656,
"shopid": 1592612908,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mizfx4fwxfcxf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005490,700005510,822059908662278,825465608499232,825465608493600,825465608494624,1718093079,1119699,1718596,298488495,2213765,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":204,\"model_id\":350382488131,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mizfx4fwxfcxf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,700005490,700005510,822059908662278,825465608499232,825465608493600,825465608494624,1718093079,1119699,1718596,298488495,2213765,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":204,\"model_id\":350382488131,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43927698656",
"debug_info": null
},
{
"item_basic": {
"itemid": 40477691852,
"shopid": 251163251,
"name": "GPS Geodetik Hi-Target V700s Rover Only | GNSS SLAM RTK",
"label_ids": [
2018619,
1718087960,
1428713,
844931064601283,
298463379,
700005495,
700005490,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
1718093079,
1119699,
1718596,
299033478,
298488495,
2213765,
1718088045,
298468389
],
"image": "id-11134207-82251-miy8parkd1c111",
"images": [
"id-11134207-82251-miy8parkd1c111",
"id-11134207-82251-miyay8421p8j9f",
"id-11134207-82252-miyay84dvbb46d",
"id-11134207-8224s-miy8parkfugx55",
"id-11134207-8224t-miy8parkbmrl63"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767261318,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Hi-Target",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 10250000000000,
"price_min": 10250000000000,
"price_max": 10250000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 10250000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425380949578,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 10250000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GEMILANG SURVEY",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40477691852,
"shopid": 251163251,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-miy8parkd1c111\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,298463379,700005495,700005490,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,299033478,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":524,\"model_id\":425380949578,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-miy8parkd1c111\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,298463379,700005495,700005490,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,299033478,298488495,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":524,\"model_id\":425380949578,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40477691852",
"debug_info": null
},
{
"item_basic": {
"itemid": 55004003386,
"shopid": 251163251,
"name": "GPS Geodetik Hi-Target V30+Plus Base Station RTK GNSS Receiver",
"label_ids": [
2018619,
1428713,
1718087960,
844931064601283,
298463379,
700005490,
700005495,
1718093079,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
1119699,
1718596,
299033478,
298488495,
2213765,
298468389,
1718088045
],
"image": "id-11134207-8224q-miy8badshv5z65",
"images": [
"id-11134207-8224q-miy8badshv5z65",
"id-11134207-82251-miy8badsdngn3c",
"id-11134207-8224r-miy8badsj9qf72",
"id-11134207-8224y-miy8badskoav09",
"id-11134207-8224o-miuyira4rxtyd5",
"id-11134207-8224w-miy8badsgglj8c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767257292,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Hi-Target",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 5500000000000,
"price_min": 5500000000000,
"price_max": 5500000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 5500000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 320380811755,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 5500000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GEMILANG SURVEY",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55004003386,
"shopid": 251163251,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-miy8badshv5z65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,700005490,700005495,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,299033478,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":523,\"model_id\":320380811755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-miy8badshv5z65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,700005490,700005495,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,299033478,298488495,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":523,\"model_id\":320380811755,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55004003386",
"debug_info": null
},
{
"item_basic": {
"itemid": 53104008030,
"shopid": 107164849,
"name": "PRELOVED Jam tangan wanita jam tangan pintar huawei band 7",
"label_ids": [
844931064601283,
1718093079,
1049112,
700000505,
822059908662278,
825465608499232,
1119699,
1718596,
298488495,
2213765,
2098621
],
"image": "id-11134207-8224y-miy7nfwdotfrc9",
"images": [
"id-11134207-8224y-miy7nfwdotfrc9",
"id-11134207-8224p-miy7nfwg5b7n69",
"id-11134207-8224y-miy7o8r3d347da",
"id-11134207-8224s-miy7o8r67mkl90",
"id-11134207-8224p-miy7o8r0jy8207"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767255853,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 29000000000,
"price_min": 29000000000,
"price_max": 29000000000,
"price_min_before_discount": 30000000000,
"price_max_before_discount": 30000000000,
"hidden_price_display": null,
"price_before_discount": 30000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-3%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Ciamis",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 826224620929024,
"price": 29000000000,
"strikethrough_price": 30000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-3%",
"model_id": 370380746548,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 30000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Preloved_Mpush",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53104008030,
"shopid": 107164849,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-miy7nfwdotfrc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049112,700000505,822059908662278,825465608499232,1119699,1718596,298488495,2213765,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":190,\"model_id\":370380746548,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-miy7nfwdotfrc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1049112,700000505,822059908662278,825465608499232,1119699,1718596,298488495,2213765,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":190,\"model_id\":370380746548,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53104008030",
"debug_info": null
},
{
"item_basic": {
"itemid": 50504011876,
"shopid": 1563877591,
"name": "H4inoT3ko ST 7+earbud smartwatch waterproof",
"label_ids": [
844931064601283,
844931086908638,
1718093079,
1059152,
700005489,
822059908662278,
825465608497696,
825465608493600,
825465608494624,
825465608499232,
1119699,
1718596,
299033478,
298488495,
2213765
],
"image": "id-11134207-82251-miy3kc371ceaa1",
"images": [
"id-11134207-82251-miy3kc371ceaa1",
"id-11134207-8224p-miy3kc372qyq99"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767249245,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 80000000000,
"price_min": 80000000000,
"price_max": 80000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 80000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405380523473,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 80000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Modeniatrendy.shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50504011876,
"shopid": 1563877591,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-miy3kc371ceaa1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1059152,700005489,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1119699,1718596,299033478,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":691,\"model_id\":405380523473,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-miy3kc371ceaa1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1718093079,1059152,700005489,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1119699,1718596,299033478,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":691,\"model_id\":405380523473,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50504011876",
"debug_info": null
},
{
"item_basic": {
"itemid": 49454031425,
"shopid": 13504045,
"name": "APPLE WATCH GEN 2 ORI !! BISA NEGO",
"label_ids": [
2018619,
1718087960,
1428713,
844931086908638,
844931064601283,
298463379,
1718093079,
700005506,
1049135,
822059908662278,
825465608499232,
1119699,
1718596,
298488495,
2213765,
2098621,
298468389,
1718088045
],
"image": "id-11134207-8224y-mixyetrjybydcf",
"images": [
"id-11134207-8224y-mixyetrjybydcf",
"id-11134207-8224r-mixyetry9udc30",
"id-11134207-82252-mixyetrxyltu6c",
"id-11134207-8224t-mixyets0nj0kc6",
"id-11134207-8224u-mixyetrnte6a39",
"id-11134207-8224w-mixyetrnw7b6d3",
"id-11134207-82252-mixyetrxx79e6a",
"id-11134207-8224v-mixyetrnusqqfa",
"id-11134207-8224x-mixyetrkqfb7b8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767240279,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 280000000000,
"price_min": 280000000000,
"price_max": 280000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6venf-mixyfh7o7x8h96.16000081767240136.mp4",
"thumb_url": "id-11110107-6venf-mixyfh7o7x8h96_cover",
"duration": 16,
"version": 2,
"vid": "id-11110107-6venf-mixyfh7o7x8h96",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6venf-mixyfh7o7x8h96.16000081767240136.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venf-mixyfh7o7x8h96.16000081767240136.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venf-mixyfh7o7x8h96.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Makassar",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 280000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355380305062,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 280000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "preloved.kotamks",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49454031425,
"shopid": 13504045,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mixyetrjybydcf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,700005506,1049135,822059908662278,825465608499232,1119699,1718596,298488495,2213765,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":220,\"model_id\":355380305062,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mixyetrjybydcf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931086908638,844931064601283,298463379,1718093079,700005506,1049135,822059908662278,825465608499232,1119699,1718596,298488495,2213765,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":220,\"model_id\":355380305062,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49454031425",
"debug_info": null
},
{
"item_basic": {
"itemid": 44754025665,
"shopid": 242759263,
"name": "Xiaomi Smart Band 9 Active",
"label_ids": [
844931064601283,
700005490,
1049120,
822059908662278,
825465608494624,
825465608499232,
1718093079,
1119699,
1718596,
299033477,
298488495,
2213765
],
"image": "id-11134207-8224w-mixm2317sgzqab",
"images": [
"id-11134207-8224w-mixm2317sgzqab"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767219910,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Xiaomi",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 40000000000,
"price_min": 40000000000,
"price_max": 40000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 40000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 340379865057,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 40000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Aksstore_tgr",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogalAQqiAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuOS40NV97YjExYmEzYWY0ODU1N2Y1YzgyOWVhMGNlMDk1MWQ5MDA6MDIwMDAwZTE5M2JlZTM2OTowMTAwMDEyNjU3YmNmYTI4fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2NDAwMjQ1MDI1NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44754025665,
"shopid": 242759263,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mixm2317sgzqab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,1049120,822059908662278,825465608494624,825465608499232,1718093079,1119699,1718596,299033477,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":852,\"model_id\":340379865057,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mixm2317sgzqab\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,1049120,822059908662278,825465608494624,825465608499232,1718093079,1119699,1718596,299033477,298488495,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":852,\"model_id\":340379865057,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44754025665",
"debug_info": null
},
{
"item_basic": {
"itemid": 53753998375,
"shopid": 884876226,
"name": "(FREE ANTIGORES) Huawei Watch Fit 3 Good Condition Second Like New",
"label_ids": [
1400066568,
2018619,
2023641,
844931064601283,
298463379,
1049112,
700000535,
1718093079,
822059908662278,
825465608499232,
1718596,
1119699,
298488495,
2213765,
2098621,
1718088045,
298468389
],
"image": "id-11134207-8224v-mix8udl8v8cj80",
"images": [
"id-11134207-8224v-mix8udl8v8cj80",
"id-11134207-8224p-mix8udl8tts3cc",
"id-11134207-8224w-mix8udl8y1hf6e",
"id-11134207-8224z-mix8udl8wmwz59",
"id-11134207-82251-mix8udl90umb09",
"id-11134207-8224u-mix8udl8zg1v97",
"id-11134207-8224o-mix8udl93nr7dc",
"id-11134207-8224t-mix8udl9296rb9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767197562,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 124500000000,
"price_min": 124500000000,
"price_max": 124500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Kuningan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 124500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345379484185,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 124500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "zee_smartstore",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53753998375,
"shopid": 884876226,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mix8udl8v8cj80\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,2023641,844931064601283,298463379,1049112,700000535,1718093079,822059908662278,825465608499232,1718596,1119699,298488495,2213765,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":496,\"model_id\":345379484185,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mix8udl8v8cj80\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,2023641,844931064601283,298463379,1049112,700000535,1718093079,822059908662278,825465608499232,1718596,1119699,298488495,2213765,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":496,\"model_id\":345379484185,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53753998375",
"debug_info": null
},
{
"item_basic": {
"itemid": 28043908924,
"shopid": 1102849498,
"name": "Smartwatch JETE VOLT 2 AMOLED 1.6 Inch Screen Display Jam Tangan AI Running 5 ATM Waterproof Watch 4GB Smart Watch With GPS Sport Mode Heart Rate Jam Tangan Pria Wanita",
"label_ids": [
2018618,
2018619,
1012729,
2153644,
1718087960,
1428713,
844931064601283,
298463379,
1049116,
1049117,
822059908662278,
834403089593352,
825465608497696,
825465608492064,
825465608494624,
825465608499232,
1718093079,
1718596,
1119699,
298488495,
2213652,
2143647,
2213765,
2098621,
298468389,
1718088045
],
"image": "id-11134207-8224z-mjf4zpltfg1x4b",
"images": [
"id-11134207-8224z-mjf4zpltfg1x4b",
"sg-11134201-81zu7-mivddxos2e4nd8",
"sg-11134201-81zuu-mivddxvs5xc2b7",
"sg-11134201-81zuu-mivddy45gqo26a",
"sg-11134201-81zvo-mivddyb7qxojb8",
"sg-11134201-81zu5-mivddyk5rmkj75",
"sg-11134201-81zwm-mivddyrvqgavd3",
"sg-11134201-81ztk-mivddz12q7t340",
"sg-11134201-81zvf-mivddz941ssg94"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767083687,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "JETE",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 155890000000,
"price_min": 155890000000,
"price_max": 155890000000,
"price_min_before_discount": 279900000000,
"price_max_before_discount": 279900000000,
"hidden_price_display": null,
"price_before_discount": 279900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-44%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 824381568253952,
"price": 153890000000,
"strikethrough_price": 279900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1327348507361280,
"discount_text": "-44%",
"model_id": 320373764916,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1327348507361280,
"voucher_code": "DORADIS4",
"voucher_discount": 2000000000,
"time_info": {
"start_time": 1767691860,
"end_time": 1774974660,
"valid_duration": null
},
"groups": [],
"min_spend": 30000000000
},
"recommended_platform_voucher_info": null,
"original_price": 279900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Doran Authorized Store Yogyakarta",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 28043908924,
"shopid": 1102849498,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjf4zpltfg1x4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2018619,1012729,2153644,1718087960,1428713,844931064601283,298463379,1049116,1049117,822059908662278,834403089593352,825465608497696,825465608492064,825465608494624,825465608499232,1718093079,1718596,1119699,298488495,2213652,2143647,2213765,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":890,\"model_id\":320373764916,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mjf4zpltfg1x4b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2018619,1012729,2153644,1718087960,1428713,844931064601283,298463379,1049116,1049117,822059908662278,834403089593352,825465608497696,825465608492064,825465608494624,825465608499232,1718093079,1718596,1119699,298488495,2213652,2143647,2213765,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":890,\"model_id\":320373764916,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_28043908924",
"debug_info": null
},
{
"item_basic": {
"itemid": 49053934464,
"shopid": 9073097,
"name": "fitbit versa 1 strap pink",
"label_ids": [
2018619,
844931064601283,
844931086908638,
298463379,
1049126,
700000529,
822059908662278,
825465608499232,
1718093079,
1119699,
1718596,
298488495,
2213765,
299033477,
2023641,
298468389,
1718088045
],
"image": "id-11134207-8224x-miv10q0sw0sm47",
"images": [
"id-11134207-8224x-miv10q0sw0sm47",
"id-11134207-8224x-miv10q0sxfd214"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767066170,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 40000000000,
"price_min": 40000000000,
"price_max": 40000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Buleleng",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 40000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 228228284973,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 40000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "abdhe17",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49053934464,
"shopid": 9073097,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-miv10q0sw0sm47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1049126,700000529,822059908662278,825465608499232,1718093079,1119699,1718596,298488495,2213765,299033477,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":571,\"model_id\":228228284973,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-miv10q0sw0sm47\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1049126,700000529,822059908662278,825465608499232,1718093079,1119699,1718596,298488495,2213765,299033477,2023641,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":571,\"model_id\":228228284973,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49053934464",
"debug_info": null
},
{
"item_basic": {
"itemid": 53503910434,
"shopid": 69163627,
"name": "smartwatch suunto 9 gps g1 second mulus",
"label_ids": [
844931086908638,
298463379,
2068629,
298938357,
2018619,
700025282,
1718093079,
1059152,
1049124,
822059908662278,
825465608499232,
825465608497696,
1718596,
1119699,
298488495,
299033477,
2213765,
2098629,
1718088045,
2098628,
298938368,
298468389
],
"image": "id-11134207-8224x-mittv5dzki69f1",
"images": [
"id-11134207-8224x-mittv5dzki69f1",
"id-11134207-8224t-mittv5d45r0o14",
"id-11134207-8224u-mittv5d475l467",
"id-11134207-82250-mittv5d48k5k24",
"id-11134207-8224v-mittv5dzj3ltb2",
"id-11134207-82250-mjb6wuh28e837d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1767024711,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 7,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 65536,
"cb_option": 0,
"item_status": "normal",
"price": 217500000000,
"price_min": 217500000000,
"price_max": 217500000000,
"price_min_before_discount": 219000000000,
"price_max_before_discount": 219000000000,
"hidden_price_display": null,
"price_before_discount": 219000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-1%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6venc-miue3z7mghs7e2.16000091767024367.mp4",
"thumb_url": "id-11110107-6venc-miue3z7mghs7e2_cover",
"duration": 27,
"version": 2,
"vid": "id-11110107-6venc-miue3z7mghs7e2",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6venc-miue3z7mghs7e2.16000091767024367.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venc-miue3z7mghs7e2.16000091767024367.mp4",
"width": 270,
"height": 482
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venc-miue3z7mghs7e2.default.mp4",
"width": 358,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp725RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 803261561503744,
"price": 217500000000,
"strikethrough_price": 219000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-1%",
"model_id": 244132335550,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 219000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp725RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "aivana",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53503910434,
"shopid": 69163627,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mittv5dzki69f1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,298463379,2068629,298938357,2018619,700025282,1718093079,1059152,1049124,822059908662278,825465608499232,825465608497696,1718596,1119699,298488495,299033477,2213765,2098629,1718088045,2098628,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":836,\"model_id\":244132335550,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mittv5dzki69f1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,298463379,2068629,298938357,2018619,700025282,1718093079,1059152,1049124,822059908662278,825465608499232,825465608497696,1718596,1119699,298488495,299033477,2213765,2098629,1718088045,2098628,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":836,\"model_id\":244132335550,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53503910434",
"debug_info": null
},
{
"item_basic": {
"itemid": 49603891603,
"shopid": 985959400,
"name": "Xiaomi Redmi Watch 5 Lite | 1.96โ AMOLED DISPLAY | NEW SEALED ORI",
"label_ids": [
2018619,
844931064601283,
298463379,
1049112,
1049147,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
1718596,
298488495,
2213765,
2098621,
1400285055,
1718088045,
298468389
],
"image": "id-11134207-8224p-mitjoq0ys2yp07",
"images": [
"id-11134207-8224p-mitjoq0ys2yp07"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766973360,
"sold": 1,
"historical_sold": 1,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100013,
"brand": "Xiaomi",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 69000000000,
"price_min": 69000000000,
"price_max": 69000000000,
"price_min_before_discount": 100000000000,
"price_max_before_discount": 100000000000,
"hidden_price_display": null,
"price_before_discount": 100000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-31%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Black",
"Light Gold"
],
"images": [
"id-11134207-8224q-mitjrc39w8hu79",
"id-11134207-8224p-mitjrfrku5mo37"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 822166707306496,
"price": 69000000000,
"strikethrough_price": 100000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-31%",
"model_id": 345367495334,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 100000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SKINSCARED.ID",
"shop_icon": null,
"is_lowest_price": true,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49603891603,
"shopid": 985959400,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mitjoq0ys2yp07\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,1049147,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2213765,2098621,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":557,\"model_id\":345367495334,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mitjoq0ys2yp07\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1049112,1049147,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2213765,2098621,1400285055,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":557,\"model_id\":345367495334,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49603891603",
"debug_info": null
},
{
"item_basic": {
"itemid": 43177592422,
"shopid": 1682094106,
"name": "Tali Strap Magnetic Silicone Premium untuk lWatch 4 5 6 7 8 SE Ultra 45m Ukuran 38-49MM Pengait Strap Magnet UrvoiKuat - Maroon, 49MM Ultra",
"label_ids": [
844931064601283,
700005490,
700005495,
822059908662278,
825465608499232,
825465608497696,
1119699,
1718596,
2098621,
1718093079,
298488495,
700810080,
2213765
],
"image": "sg-11134201-81zuc-mir177plansz2a",
"images": [
"sg-11134201-81zuc-mir177plansz2a",
"sg-11134201-81zub-mir17837zrbceb",
"sg-11134201-81zwp-mir178blyepseb",
"sg-11134201-81zvu-mir178jh6woy77",
"sg-11134201-81zte-mir178vg5f5y9e",
"sg-11134201-81ztf-mir1791p1wjl61",
"sg-11134201-81zwi-mir179f2f75w4c",
"sg-11134201-81zwv-mir179s5nbpg1d",
"sg-11134201-81zwt-mir179y11slj71"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766821056,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 31439000000,
"price_min": 31439000000,
"price_max": 31439000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Maroon",
"Biru Navy",
"Abu-Abu Muda",
"Abu-Abu Tua",
"Orange",
"Krem",
"Merah",
"Hijau",
"Hitam"
],
"images": [
"sg-11134201-81zuc-mir177plansz2a",
"sg-11134201-81ztf-mir1791p1wjl61",
"sg-11134201-81zwi-mir179f2f75w4c",
"sg-11134201-81zwv-mir179s5nbpg1d",
"sg-11134201-81zwt-mir179y11slj71",
"sg-11134201-81zur-mir17a3ox7gge3",
"sg-11134201-81ztz-mir17a9z89a910",
"sg-11134201-81zu7-mir17akvy5ms66",
"sg-11134201-81zv1-mir17ar5ecjode"
],
"properties": [],
"type": 0
},
{
"name": "Ukuran",
"options": [
"42/44/45MM",
"38/40/41MM",
"49MM Ultra"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 31439000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 335362433480,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 31439000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "sxvtneqdji",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43177592422,
"shopid": 1682094106,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuc-mir177plansz2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,1718596,2098621,1718093079,298488495,700810080,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":722,\"model_id\":335362433480,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zuc-mir177plansz2a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,1718596,2098621,1718093079,298488495,700810080,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":722,\"model_id\":335362433480,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43177592422",
"debug_info": null
},
{
"item_basic": {
"itemid": 51353782885,
"shopid": 48378955,
"name": "Oraimo x Tahilalats Smartwatch 5 Max OSW - 804. Large Screen 2,01\" Jam tangan Bluetooth With Al Dial 100+ Mode olahraga Sport Waterproof IP68. Warna Pink",
"label_ids": [
2018619,
844931064601283,
844931086908638,
1059150,
1049111,
1718093079,
822059908662278,
825465608499232,
825465608493600,
1119699,
1718596,
298488495,
299033477,
2213765
],
"image": "id-11134207-8224t-mipirqmxoyywb8",
"images": [
"id-11134207-8224t-mipirqmxoyywb8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766761457,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "ORAIMO",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 22000000000,
"price_min": 22000000000,
"price_max": 22000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Deli Serdang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 22000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445360259979,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 22000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "MiarlyCitra",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51353782885,
"shopid": 48378955,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mipirqmxoyywb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1059150,1049111,1718093079,822059908662278,825465608499232,825465608493600,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":542,\"model_id\":445360259979,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mipirqmxoyywb8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1059150,1049111,1718093079,822059908662278,825465608499232,825465608493600,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":542,\"model_id\":445360259979,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51353782885",
"debug_info": null
},
{
"item_basic": {
"itemid": 46053802795,
"shopid": 48378955,
"name": "Oraimo x Tahilalats Smartwatch 5 Max . OSW -804. Large screen 2,01\". Jam tangan Bluetooth with Al Dial 100+ Mode olahraga Sport Waterproof IP 68. Warna Black",
"label_ids": [
2018619,
844931064601283,
844931086908638,
1049111,
1059150,
822059908662278,
825465608499232,
825465608493600,
1718093079,
1119699,
1718596,
298488495,
299033477,
2213765
],
"image": "id-11134207-82252-mipirqmxnkeg5b",
"images": [
"id-11134207-82252-mipirqmxnkeg5b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766761172,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "ORAIMO",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 22000000000,
"price_min": 22000000000,
"price_max": 22000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Deli Serdang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 22000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385360256365,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 22000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "MiarlyCitra",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46053802795,
"shopid": 48378955,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mipirqmxnkeg5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049111,1059150,822059908662278,825465608499232,825465608493600,1718093079,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":872,\"model_id\":385360256365,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mipirqmxnkeg5b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1049111,1059150,822059908662278,825465608499232,825465608493600,1718093079,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":872,\"model_id\":385360256365,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46053802795",
"debug_info": null
},
{
"item_basic": {
"itemid": 43227578516,
"shopid": 142474980,
"name": "oraimo x Tahilalats Smartwatch Watch 6 Max OSW-8001N 1.83\"TFT Full Touch Screen Jam Tangan Bluetooth With AI",
"label_ids": [
700700063,
2018619,
844931064601283,
298463379,
700000543,
1049116,
1718093079,
822059908662278,
825465608492064,
825465608499232,
1718596,
1119699,
298488495,
2213765,
2098621,
1718088045,
298468389
],
"image": "id-11134207-8224z-mipspau4y9dt95",
"images": [
"id-11134207-8224z-mipspau4y9dt95",
"id-11134207-8224t-mipspau4zny9d4",
"id-11134207-8224o-mipspau512ipa3",
"id-11134207-8224x-mipt01n6sp3af8",
"id-11134207-82251-mipspau52h3551",
"id-11134207-82252-mipt01n573sy69",
"id-11134207-8224u-mipspau4wutddd",
"id-11134207-8224q-mipspau53vnl08"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766746812,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "ORAIMO",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 23880000000,
"price_min": 23880000000,
"price_max": 23880000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Probolinggo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 23880000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445359580932,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 23880000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Asian Cellular",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43227578516,
"shopid": 142474980,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mipspau4y9dt95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,298463379,700000543,1049116,1718093079,822059908662278,825465608492064,825465608499232,1718596,1119699,298488495,2213765,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":860,\"model_id\":445359580932,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mipspau4y9dt95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700700063,2018619,844931064601283,298463379,700000543,1049116,1718093079,822059908662278,825465608492064,825465608499232,1718596,1119699,298488495,2213765,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":860,\"model_id\":445359580932,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43227578516",
"debug_info": null
},
{
"item_basic": {
"itemid": 40627578021,
"shopid": 345303165,
"name": "imoo smartwatch smartphone kids Z1",
"label_ids": [
2018619,
844931064601283,
844931086908638,
298463379,
1718093079,
700005490,
700005495,
822059908662278,
825465608499232,
825465608497696,
1119699,
1718596,
298488495,
299033477,
2213765,
298933384,
298468389,
1718088045
],
"image": "id-11134207-8224z-mipp00ul50qv17",
"images": [
"id-11134207-8224z-mipp00ul50qv17",
"id-11134207-8224v-mipp00ul6fbb7a",
"id-11134207-8224s-mipp00ul0t1j92",
"id-11134207-8224s-mipp00ul27lz69"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766741136,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100013,
"brand": "Imoo",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 73000000000,
"price_min": 73000000000,
"price_max": 73000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vdvg-mippfma3lxj4ba.16000091766740735.mp4",
"thumb_url": "id-11110107-6vdvg-mippfma3lxj4ba_cover",
"duration": 23,
"version": 2,
"vid": "id-11110107-6vdvg-mippfma3lxj4ba",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vdvg-mippfma3lxj4ba.16000091766740735.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvg-mippfma3lxj4ba.16000091766740735.mp4",
"width": 270,
"height": 480
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvg-mippfma3lxj4ba.default.mp4",
"width": 360,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 73000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 415359223770,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 73000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Malikashopjaktim",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40627578021,
"shopid": 345303165,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mipp00ul50qv17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1718093079,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,299033477,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":70,\"model_id\":415359223770,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mipp00ul50qv17\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,298463379,1718093079,700005490,700005495,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,299033477,2213765,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":70,\"model_id\":415359223770,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40627578021",
"debug_info": null
},
{
"item_basic": {
"itemid": 56203665124,
"shopid": 372006663,
"name": "iWatch Series 4 40mm BH100% Stainless Steel Silver Fullset Mulus",
"label_ids": [
1400066568,
2018619,
844931064601283,
298463379,
1049141,
1049156,
822059908662278,
825465608494624,
825465608499232,
2048660,
2048661,
1718093079,
1119699,
1718596,
700765096,
2098621,
298488495,
298933384,
2213765,
1718088045,
298468389
],
"image": "id-11134207-8224p-mio44bhfqps280",
"images": [
"id-11134207-8224p-mio44bhfqps280",
"id-11134207-8224p-mio44bhoslj86c",
"id-11134207-82252-mio44bhelzb83e",
"id-11134207-8224z-mio44bho7j0he7",
"id-11134207-8224w-mio44bhoveo445"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766644532,
"sold": 1,
"historical_sold": 1,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 220000000000,
"price_min": 220000000000,
"price_max": 220000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sleman",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 220000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 440349087162,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 220000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Timeseries",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56203665124,
"shopid": 372006663,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mio44bhfqps280\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,298463379,1049141,1049156,822059908662278,825465608494624,825465608499232,2048660,2048661,1718093079,1119699,1718596,700765096,2098621,298488495,298933384,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":460,\"model_id\":440349087162,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mio44bhfqps280\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,298463379,1049141,1049156,822059908662278,825465608494624,825465608499232,2048660,2048661,1718093079,1119699,1718596,700765096,2098621,298488495,298933384,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":460,\"model_id\":440349087162,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56203665124",
"debug_info": null
},
{
"item_basic": {
"itemid": 57853567777,
"shopid": 301061531,
"name": "Smartwatch Hainoteko ST-7 Watch Buds Premium Waterproof AMOLED Jam Tangan pintar Pantau 24H Kesehatan dan Olahraga",
"label_ids": [
834230400556567,
2018619,
2023641,
844931086908638,
844931064601283,
298463379,
1059152,
700005489,
1718093079,
822059908662278,
825465608497696,
825465608494624,
825465608499232,
1119699,
1718596,
298488495,
2098621,
2213765,
298933384,
1718088045,
298468389
],
"image": "id-11134207-8224r-mimqqa7qwemb63",
"images": [
"id-11134207-8224r-mimqqa7qwemb63",
"id-11134201-8224s-mimqpnhth43r34",
"id-11134207-8224p-mimqqa7x2cchff",
"id-11134207-8224r-mimqqa7x3qwx96",
"id-11134207-8224u-mimqqa7x55hd51",
"id-11134207-8224s-mimqqa7x6k1t48",
"id-11134207-82252-mimqqa7x7ym9d0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766567007,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "HAINO TEKO",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 80000000000,
"price_min": 80000000000,
"price_max": 80000000000,
"price_min_before_discount": 95000000000,
"price_max_before_discount": 95000000000,
"hidden_price_display": null,
"price_before_discount": 95000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-16%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdv9-mimr7hjmtr0o00.16000031766562127.mp4",
"thumb_url": "id-11110105-6vdv9-mimr7hjmtr0o00_cover",
"duration": 36,
"version": 2,
"vid": "id-11110105-6vdv9-mimr7hjmtr0o00",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv9-mimr7hjmtr0o00.16000031766562127.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv9-mimr7hjmtr0o00.16000031766562127.mp4",
"width": 480,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv9-mimr7hjmtr0o00.default.mp4",
"width": 480,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "WARNA",
"options": [
"BLACK",
"SILVER"
],
"images": [
"id-11134207-8224x-mimqqa7x9d6p0e",
"id-11134207-8224y-mimqqa7xc6bl83"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 811587221389312,
"price": 80000000000,
"strikethrough_price": 95000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-16%",
"model_id": 188792336912,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 95000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HainoTeko.Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57853567777,
"shopid": 301061531,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mimqqa7qwemb63\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931086908638,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718596,298488495,2098621,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":587,\"model_id\":188792336912,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mimqqa7qwemb63\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931086908638,844931064601283,298463379,1059152,700005489,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,1119699,1718596,298488495,2098621,2213765,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":587,\"model_id\":188792336912,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57853567777",
"debug_info": null
},
{
"item_basic": {
"itemid": 47153578324,
"shopid": 468975110,
"name": "Smartwatch Hainoteko ST-7 Watch Buds Premium Waterproof AMOLED Jam Tangan Pantau 24H Kesehatan dan Olahraga",
"label_ids": [
834230400556567,
2018619,
2023641,
1428713,
1718087960,
844931086908638,
844931064601283,
298463379,
1059152,
700005489,
822059908662278,
840990690654214,
840955085144628,
825465608494624,
825465608499232,
825465608497696,
1718093079,
1119699,
1718596,
298488495,
2098621,
2213765,
298468389,
1718088045
],
"image": "id-11134207-8224u-mimm7067cnb8a9",
"images": [
"id-11134207-8224u-mimm7067cnb8a9",
"id-11134207-8224u-mimm7067e1voaf",
"id-11134207-8224y-mimm7067fgg436",
"id-11134207-8224u-mimm7067gv0ke9",
"id-11134207-8224z-mimm7067i9l06c",
"id-11134207-8224y-mimm7067jo5g0b",
"id-11134207-8224q-mimm7067l2pw04"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766557302,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "HAINO TEKO",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 85000000000,
"price_min": 85000000000,
"price_max": 85000000000,
"price_min_before_discount": 95000000000,
"price_max_before_discount": 95000000000,
"hidden_price_display": null,
"price_before_discount": 95000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-11%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvi-mimn1qonvax4ce.16000031766555147.mp4",
"thumb_url": "id-11110105-6vdvi-mimn1qonvax4ce_cover",
"duration": 36,
"version": 2,
"vid": "id-11110105-6vdvi-mimn1qonvax4ce",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvi-mimn1qonvax4ce.16000031766555147.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mimn1qonvax4ce.16000031766555147.mp4",
"width": 480,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvi-mimn1qonvax4ce.default.mp4",
"width": 480,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "warna",
"options": [
"Silver",
"Hitam"
],
"images": [
"id-11134207-8224v-mimm7067mhacd9",
"id-11134207-82250-mimm7067nvus83"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 811591944159232,
"price": 85000000000,
"strikethrough_price": 95000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-11%",
"model_id": 390340997892,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 95000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "CANDY STORE76 by ITC Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47153578324,
"shopid": 468975110,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mimm7067cnb8a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,840990690654214,840955085144628,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":837,\"model_id\":390340997892,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mimm7067cnb8a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,1428713,1718087960,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,840990690654214,840955085144628,825465608494624,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":837,\"model_id\":390340997892,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47153578324",
"debug_info": null
},
{
"item_basic": {
"itemid": 45253549049,
"shopid": 1496740329,
"name": "TIRG Jam Tangan GT5 PRO 2026 Original Smartwatch Hitam,Pelacakan Kesehatan Olahraga IP68 Waterproof",
"label_ids": [
2018619,
2023641,
1428713,
1718087960,
844931064601283,
844931086908638,
298463379,
822059908662278,
825465608493600,
825465608499232,
825465608497696,
1718093079,
1119699,
1718596,
1059152,
1049122,
298488495,
299033477,
2213765,
1015914,
700190087,
1718088045,
298468389
],
"image": "id-11134207-8224v-mimbhl1m8f0h9c",
"images": [
"id-11134207-8224v-mimbhl1m8f0h9c",
"id-11134207-8224r-mimbhl1iby8691",
"id-11134207-8224s-mimbhl1iajnq0c",
"id-11134207-8224s-mimbhl1idcsm08",
"id-11134207-8224w-mimbhl1ierd206",
"id-11134207-8224v-mimbhl1i953ae0",
"id-11134207-8224z-mijmlrhztrm077",
"id-11134207-82251-mijmlri0270o27",
"id-11134207-8224r-mimbhl1ikdmu80"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766538685,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "TIRG KAIROZ",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 32900000000,
"price_min": 32900000000,
"price_max": 32900000000,
"price_min_before_discount": 89000000000,
"price_max_before_discount": 89000000000,
"hidden_price_display": null,
"price_before_discount": 89000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-63%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvf-mimcnnzz4sg0a7.16000081766537649.mp4",
"thumb_url": "id-11110105-6vdvf-mimcnnzz4sg0a7_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6vdvf-mimcnnzz4sg0a7",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvf-mimcnnzz4sg0a7.16000081766537649.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mimcnnzz4sg0a7.16000081766537649.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvf-mimcnnzz4sg0a7.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Putih Silikon",
"Hitam Silikon",
"Putih Rantai",
"Hitam Rantai"
],
"images": [
"id-11134207-8224s-mimd5kdhydxc68",
"id-11134207-8224r-mimd5kdhwzcw40",
"id-11134207-8224z-mimd5kdhvksge6",
"id-11134207-8224s-mimd5kdcapkz9e"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 227149068124161,
"price": 32900000000,
"strikethrough_price": 89000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-63%",
"model_id": 380339336236,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 89000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "TIRG Kairoz Watch Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45253549049,
"shopid": 1496740329,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mimbhl1m8f0h9c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,822059908662278,825465608493600,825465608499232,825465608497696,1718093079,1119699,1718596,1059152,1049122,298488495,299033477,2213765,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":847,\"model_id\":380339336236,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mimbhl1m8f0h9c\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,1428713,1718087960,844931064601283,844931086908638,298463379,822059908662278,825465608493600,825465608499232,825465608497696,1718093079,1119699,1718596,1059152,1049122,298488495,299033477,2213765,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":847,\"model_id\":380339336236,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45253549049",
"debug_info": null
},
{
"item_basic": {
"itemid": 54253429187,
"shopid": 1679174629,
"name": "STRAP WATCH TALI JAM LEATHER KULIT RUBBER SAMSUNG GALAXY ACTIVE 1 2 - Black Red",
"label_ids": [
844931064601283,
844931086908638,
298463379,
1718093079,
1049112,
700005517,
822059908662278,
825465608499232,
825465608497696,
1119699,
1718596,
298488495,
700700063,
299033478,
1428713,
1718087960,
2213765,
1718088045,
298468389
],
"image": "sg-11134201-81zwu-miju9qxt2hvm16",
"images": [
"sg-11134201-81zwu-miju9qxt2hvm16",
"sg-11134201-81zvf-miju9reqm41u0b",
"sg-11134201-81zvl-miju9s52dfycba",
"sg-11134201-81zue-miju9sbmv401ef",
"sg-11134201-81zvy-micjfj8vlqfa35",
"sg-11134201-81zto-micjfk115a8707",
"sg-11134201-81zuv-miju9tkbqz9e48",
"sg-11134201-81zws-miju9u601hqe6d",
"sg-11134201-81zve-miju9uo27d3ae1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766385663,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 21648000000,
"price_min": 21648000000,
"price_max": 21648000000,
"price_min_before_discount": 22550000000,
"price_max_before_discount": 22550000000,
"hidden_price_display": null,
"price_before_discount": 22550000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-4%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Full Black",
"Dark Brown",
"Brown",
"Black Red"
],
"images": [
"sg-11134201-81zuv-miju9tkbqz9e48",
"sg-11134201-81zws-miju9u601hqe6d",
"sg-11134201-81zve-miju9uo27d3ae1",
"sg-11134201-81zwu-miju9qxt2hvm16"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 410241183527092,
"bundle_deal_label": "Pilih 3, diskon 3%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bandung Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 820482828468224,
"price": 21248000000,
"strikethrough_price": 22550000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1314269383901184,
"discount_text": "-4%",
"model_id": 234629555496,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1314269383901184,
"voucher_code": "7V5ETYUIO",
"voucher_discount": 400000000,
"time_info": {
"start_time": 1766132880,
"end_time": 1771493280,
"valid_duration": null
},
"groups": [],
"min_spend": 100000000
},
"recommended_platform_voucher_info": null,
"original_price": 22550000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Mentari Starr",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54253429187,
"shopid": 1679174629,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwu-miju9qxt2hvm16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049112,700005517,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,700700063,299033478,1428713,1718087960,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":686,\"model_id\":234629555496,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zwu-miju9qxt2hvm16\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1718093079,1049112,700005517,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,700700063,299033478,1428713,1718087960,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":686,\"model_id\":234629555496,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54253429187",
"debug_info": null
},
{
"item_basic": {
"itemid": 53153437808,
"shopid": 1679174629,
"name": "paket lengkap tulltra ( bisa cod ) Smart +tws+2 strap+jam digital - NAVY, PAKET 7 BARANG",
"label_ids": [
844931064601283,
844931086908638,
298463379,
1049112,
700005517,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
1718596,
298488495,
700700063,
299033478,
1428713,
1718087960,
2213765,
1718088045,
298468389
],
"image": "sg-11134201-81ztq-miju66n3er5u95",
"images": [
"sg-11134201-81ztq-miju66n3er5u95"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766385492,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 29520000000,
"price_min": 29520000000,
"price_max": 29520000000,
"price_min_before_discount": 30750000000,
"price_max_before_discount": 30750000000,
"hidden_price_display": null,
"price_before_discount": 30750000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-4%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"NAVY",
"HITAM",
"PURPLE",
"PUTIH",
"CREAM",
"ORANGE"
],
"images": [
"sg-11134201-81ztq-miju66n3er5u95",
"sg-11134201-81ztq-miju66n3er5u95",
"sg-11134201-81ztq-miju66n3er5u95",
"sg-11134201-81ztq-miju66n3er5u95",
"sg-11134201-81ztq-miju66n3er5u95",
"sg-11134201-81ztq-miju66n3er5u95"
],
"properties": [],
"type": 0
},
{
"name": "PILIH YA",
"options": [
"CUMA TALI SAJA",
"PAKET 7 BARANG"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 410241183527092,
"bundle_deal_label": "Pilih 3, diskon 3%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bandung Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 820482828468224,
"price": 28820000000,
"strikethrough_price": 30750000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1314269895475200,
"discount_text": "-4%",
"model_id": 262274641698,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1314269895475200,
"voucher_code": "7V5EBNMKL",
"voucher_discount": 700000000,
"time_info": {
"start_time": 1766132880,
"end_time": 1771493280,
"valid_duration": null
},
"groups": [],
"min_spend": 25000000000
},
"recommended_platform_voucher_info": null,
"original_price": 30750000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Mentari Starr",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53153437808,
"shopid": 1679174629,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztq-miju66n3er5u95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1049112,700005517,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,700700063,299033478,1428713,1718087960,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":559,\"model_id\":262274641698,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81ztq-miju66n3er5u95\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,298463379,1049112,700005517,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,700700063,299033478,1428713,1718087960,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":559,\"model_id\":262274641698,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53153437808",
"debug_info": null
},
{
"item_basic": {
"itemid": 56353427726,
"shopid": 1705202322,
"name": "realme Watch 5 | Compass & Independent GPS | 460mAh 14-day Battery Life | Accurateย Sportsย &ย Health | AMOLED 600nits | IP68ย Waterย Resistant",
"label_ids": [
844931064601283,
1718093079,
1119699,
1718596,
298488495,
700005490,
1049120,
822059908662278,
825465608499232,
2213765,
298933384
],
"image": "id-11134207-8224w-mijppztpzhflb4",
"images": [
"id-11134207-8224w-mijppztpzhflb4",
"id-11134207-8224r-mijppztq3p4x6e",
"id-11134207-8224x-mijppztq0w018f",
"id-11134207-82251-mijppztq53pd5e",
"id-11134207-8224v-mijppztq2akhcf",
"id-11134207-8224w-mijppztq6i9t86",
"id-11134207-8224q-mijq1qbvzxmw15"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766378735,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Realme",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 79900000000,
"price_min": 79900000000,
"price_max": 79900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Titanium Black",
"Titanium Silver"
],
"images": [
"id-11134207-8224s-mijq1qbyat502a",
"id-11134207-8224u-mijq1qbyc7pga2"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 79900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390330222388,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 79900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "realme AIOT Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56353427726,
"shopid": 1705202322,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mijppztpzhflb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,1718596,298488495,700005490,1049120,822059908662278,825465608499232,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":242,\"model_id\":390330222388,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mijppztpzhflb4\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,1718596,298488495,700005490,1049120,822059908662278,825465608499232,2213765,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":242,\"model_id\":390330222388,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56353427726",
"debug_info": null
},
{
"item_basic": {
"itemid": 52803430192,
"shopid": 1584818210,
"name": "Samsung Galaxy Watch8 40Mm / Watch 8 40Mm",
"label_ids": [
844931064601283,
1059152,
1049124,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1718596,
298488495,
299033478,
2213765
],
"image": "sg-11134275-81zu1-mijjlvswujus56",
"images": [
"sg-11134275-81zu1-mijjlvswujus56",
"sg-11134275-81zwr-mijjlvo2lblz63",
"sg-11134275-81zv9-mijjlw29p0jl5c",
"sg-11134275-81zwb-mijjlvspqy2v46",
"sg-11134275-81zwu-mijjlw48fo5j1c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766367809,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 908300000000,
"price_min": 908300000000,
"price_max": 908300000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "warna",
"options": [
"Graphite",
"Silver"
],
"images": [
"sg-11134275-81zw9-mijjlw9mzbpg18",
"sg-11134275-81zu4-mijjlwdyqqrl33"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 908050000000,
"strikethrough_price": 908300000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1322848052854788,
"discount_text": null,
"model_id": 238223723072,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1322848052854788,
"voucher_code": "COCOFOOD2",
"voucher_discount": 250000000,
"time_info": {
"start_time": 1767155520,
"end_time": 1774935120,
"valid_duration": null
},
"groups": [],
"min_spend": 30000000000
},
"recommended_platform_voucher_info": null,
"original_price": 908300000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "cocofoodiest",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52803430192,
"shopid": 1584818210,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-81zu1-mijjlvswujus56\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,1718093079,822059908662278,825465608499232,825465608497696,1718596,298488495,299033478,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":212,\"model_id\":238223723072,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-81zu1-mijjlvswujus56\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1049124,1718093079,822059908662278,825465608499232,825465608497696,1718596,298488495,299033478,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":212,\"model_id\":238223723072,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52803430192",
"debug_info": null
},
{
"item_basic": {
"itemid": 56203405700,
"shopid": 157066193,
"name": "Garmin Watch VENUE SQ/Jam Tangan Garmin VENUE SQ Promo",
"label_ids": [
2018619,
1428713,
1718087960,
844931064601283,
298463379,
1718093079,
1119699,
1718596,
700765096,
298488495,
298933384,
2213765,
2023641,
1059152,
1059154,
822059908662278,
2048661,
834403089593352,
825465608497696,
840955085144628,
825465608494624,
825465608493600,
2048660,
822120592861206,
827380695406658,
825465608499232,
840990690654214,
1718088045,
298468389
],
"image": "id-11134207-8224r-miiho8fahp8m8a",
"images": [
"id-11134207-8224r-miiho8fahp8m8a",
"id-11134207-8224x-miiho8faj3t2d0",
"id-11134207-82251-miiho8fakidibc",
"id-11134207-8224x-miiho8falwxy22"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766304191,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 4,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 180000000000,
"price_min": 180000000000,
"price_max": 180000000000,
"price_min_before_discount": 300000000000,
"price_max_before_discount": 300000000000,
"hidden_price_display": null,
"price_before_discount": 300000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-40%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 813684616658944,
"price": 180000000000,
"strikethrough_price": 300000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-40%",
"model_id": 430327337487,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 300000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "MOSES KITCHEN&MCC FASHIONS",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56203405700,
"shopid": 157066193,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-miiho8fahp8m8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1718093079,1119699,1718596,700765096,298488495,298933384,2213765,2023641,1059152,1059154,822059908662278,2048661,834403089593352,825465608497696,840955085144628,825465608494624,825465608493600,2048660,822120592861206,827380695406658,825465608499232,840990690654214,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":561,\"model_id\":430327337487,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-miiho8fahp8m8a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931064601283,298463379,1718093079,1119699,1718596,700765096,298488495,298933384,2213765,2023641,1059152,1059154,822059908662278,2048661,834403089593352,825465608497696,840955085144628,825465608494624,825465608493600,2048660,822120592861206,827380695406658,825465608499232,840990690654214,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":561,\"model_id\":430327337487,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56203405700",
"debug_info": null
},
{
"item_basic": {
"itemid": 27493856579,
"shopid": 308000918,
"name": "Samsung Watch Ultra (Second)",
"label_ids": [
700185071,
700190019,
844931064601283,
298463379,
1059156,
700005500,
1718093079,
822059908662278,
825465608493600,
825465608499232,
825465608497696,
1119699,
1718596,
298488495,
299033477,
2048660,
2048661,
2213765,
700765096,
298468389,
1718088045
],
"image": "id-11134207-8224w-mihllnbhdg5k50",
"images": [
"id-11134207-8224w-mihllnbhdg5k50",
"id-11134207-8224t-mihllnbgzeh3bc",
"id-11134207-8224w-mihllnbjbojn3a",
"id-11134207-8224x-mihllnbja9z742",
"id-11134207-8224x-mihllnbk3rwhf8",
"id-11134207-8224q-mihllnboh3ie58",
"id-11134207-8224t-mihllnbr0efb94"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766250591,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Samsung",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 562000000000,
"price_min": 562000000000,
"price_max": 562000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sukoharjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 562000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 292271626442,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 562000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Mr. O Phone",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 27493856579,
"shopid": 308000918,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mihllnbhdg5k50\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700185071,700190019,844931064601283,298463379,1059156,700005500,1718093079,822059908662278,825465608493600,825465608499232,825465608497696,1119699,1718596,298488495,299033477,2048660,2048661,2213765,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":418,\"model_id\":292271626442,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mihllnbhdg5k50\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700185071,700190019,844931064601283,298463379,1059156,700005500,1718093079,822059908662278,825465608493600,825465608499232,825465608497696,1119699,1718596,298488495,299033477,2048660,2048661,2213765,700765096,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":418,\"model_id\":292271626442,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_27493856579",
"debug_info": null
},
{
"item_basic": {
"itemid": 47903399791,
"shopid": 69095641,
"name": "GARMIN FORERUNNER 45s",
"label_ids": [
2018619,
2023641,
2068629,
298938357,
844931064601283,
298463379,
1059152,
700005489,
1400066568,
822059908662278,
825465608494624,
825465608499232,
2048660,
2048661,
1718093079,
1718596,
700765096,
1119699,
298488495,
2213765,
298933384,
2098628,
298938368,
298468389,
2098629,
1718088045
],
"image": "id-11134207-8224v-mihhdwcphdkw08",
"images": [
"id-11134207-8224v-mihhdwcphdkw08",
"id-11134207-82252-mihhdwcpk6ps88",
"id-11134207-8224s-mihhdwcplla8b3",
"id-11134207-82252-mihhdwcpis5c13"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766243439,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 6,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 150000000000,
"price_min": 150000000000,
"price_max": 150000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp500RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 150000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 360325580307,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 150000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp500RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "shutterbox",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47903399791,
"shopid": 69095641,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mihhdwcphdkw08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,2068629,298938357,844931064601283,298463379,1059152,700005489,1400066568,822059908662278,825465608494624,825465608499232,2048660,2048661,1718093079,1718596,700765096,1119699,298488495,2213765,298933384,2098628,298938368,298468389,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":774,\"model_id\":360325580307,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mihhdwcphdkw08\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,2068629,298938357,844931064601283,298463379,1059152,700005489,1400066568,822059908662278,825465608494624,825465608499232,2048660,2048661,1718093079,1718596,700765096,1119699,298488495,2213765,298933384,2098628,298938368,298468389,2098629,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":774,\"model_id\":360325580307,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47903399791",
"debug_info": null
},
{
"item_basic": {
"itemid": 57253361618,
"shopid": 1702271466,
"name": "HK10 Ultra A Smartwatch NFC - Panggilan Bluetooth, IP67, Mode Olahraga | Unisex | Impor Jerman | Cocok Android IOS",
"label_ids": [
844931064601283,
844931086908638,
1059152,
1049122,
1400066568,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1718596,
298488495,
298933384,
299033478,
2213765,
298463379,
1718088045,
298468389
],
"image": "id-11134207-8224u-migy7en8c4xt3f",
"images": [
"id-11134207-8224u-migy7en8c4xt3f",
"id-11134207-8224u-migy7en6dwjsc3",
"id-11134207-8224t-migy7en6b3ew9d",
"id-11134207-8224u-migy7en66vpke4",
"id-11134207-8224s-migy7en6chzcee",
"id-11134207-8224w-migy7en68aa0b3",
"id-11134207-8224z-migy7en6gpoo12"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766213268,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Smart Watch",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 40000000000,
"price_min": 40000000000,
"price_max": 40000000000,
"price_min_before_discount": 200000000000,
"price_max_before_discount": 200000000000,
"hidden_price_display": null,
"price_before_discount": 200000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-80%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdva-migyftf5ko3o7c.16000101766211069.mp4",
"thumb_url": "id-11110105-6vdva-migyftf5ko3o7c_cover",
"duration": 32,
"version": 2,
"vid": "id-11110105-6vdva-migyftf5ko3o7c",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdva-migyftf5ko3o7c.16000101766211069.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdva-migyftf5ko3o7c.16000101766211069.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdva-migyftf5ko3o7c.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"HK10U-Putih",
"HK10U-hitam",
"HK10U-Jeruk",
"HK10U-Acak",
"HK10P-green",
"HK10P-silver",
"HK10P-black"
],
"images": [
"id-11134207-8224y-migy7en6fb48d4",
"id-11134207-8224r-migy7en6i494dd",
"id-11134207-82250-migy7en6jitkd9",
"id-11134207-8224r-migy7en6i494dd",
"id-11134207-8224x-mj733axsi32809",
"id-11134207-8224o-mj733axsjhmodc",
"id-11134207-8224q-mj733axskw745b"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 812263016022016,
"price": 39000000000,
"strikethrough_price": 200000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1314293552005120,
"discount_text": "-80%",
"model_id": 345403718828,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1314293552005120,
"voucher_code": "SQLY301",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1766135640,
"end_time": 1773738840,
"valid_duration": null
},
"groups": [],
"min_spend": 30000000000
},
"recommended_platform_voucher_info": null,
"original_price": 200000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Globe Prima Tech Jam",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57253361618,
"shopid": 1702271466,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-migy7en8c4xt3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,1400066568,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,298933384,299033478,2213765,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":427,\"model_id\":345403718828,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-migy7en8c4xt3f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,1400066568,822059908662278,825465608499232,825465608497696,1718093079,1718596,298488495,298933384,299033478,2213765,298463379,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":427,\"model_id\":345403718828,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57253361618",
"debug_info": null
},
{
"item_basic": {
"itemid": 57203279093,
"shopid": 301061531,
"name": "New! Smartwatch Amoled HainoTeko Germany HT-28 WaterProoft Super Slim Jam Tangan Touch Screen Layar Amoled Sport Health Monitoring Kesehatan & Olahraga 3 Pairs Strap",
"label_ids": [
834230400556567,
2018619,
2023641,
844931086908638,
844931064601283,
298463379,
1059152,
700005489,
822059908662278,
825465608499232,
825465608497696,
825465608494624,
1718093079,
1718596,
298488495,
2098621,
2213765,
298468389,
1718088045
],
"image": "id-11134207-8224x-mief26vg8poo85",
"images": [
"id-11134207-8224x-mief26vg8poo85",
"id-11134207-82252-mief26vfjfgi8a",
"id-11134207-8224v-mief26vfku0y7e",
"id-11134207-8224u-mief26vfm8le96"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766057944,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 68500000000,
"price_min": 68500000000,
"price_max": 68500000000,
"price_min_before_discount": 80000000000,
"price_max_before_discount": 80000000000,
"hidden_price_display": null,
"price_before_discount": 80000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-14%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven7-mief5koyqbr46c.16000031766057579.mp4",
"thumb_url": "id-11110105-6ven7-mief5koyqbr46c_cover",
"duration": 37,
"version": 2,
"vid": "id-11110105-6ven7-mief5koyqbr46c",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven7-mief5koyqbr46c.16000031766057579.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mief5koyqbr46c.16000031766057579.mp4",
"width": 480,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mief5koyqbr46c.default.mp4",
"width": 480,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "WARNA",
"options": [
"BLACK",
"GOLD"
],
"images": [
"id-11134207-8224r-mief26vfnn5u1c",
"id-11134207-8224o-mief26vfp1qa91"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 811587221389312,
"price": 68500000000,
"strikethrough_price": 80000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-14%",
"model_id": 292265723764,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 80000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HainoTeko.Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57203279093,
"shopid": 301061531,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mief26vg8poo85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":810,\"model_id\":292265723764,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mief26vg8poo85\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931086908638,844931064601283,298463379,1059152,700005489,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":810,\"model_id\":292265723764,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57203279093",
"debug_info": null
},
{
"item_basic": {
"itemid": 54603276981,
"shopid": 46376789,
"name": "iFlytek AIT-P10T Dual Screen Translator 99.9% NEW",
"label_ids": [
844931064601283,
1400066568,
1059152,
1059154,
1718093079,
822059908662278,
825465608497696,
2048660,
2048661,
825465608493600,
825465608499232,
1119699,
1718596,
700765096,
298488495,
2213765,
299033477
],
"image": "id-11134207-8224q-mie8txs68e86e6",
"images": [
"id-11134207-8224q-mie8txs68e86e6",
"id-11134207-8224t-mie8txs69ssmbf",
"id-11134207-8224r-mie8txs6b7d2dd"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766047932,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "IFLYTEK",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 1280000000000,
"price_min": 1280000000000,
"price_max": 1280000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 1280000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 360314929980,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 1280000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "manuelerick_",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54603276981,
"shopid": 46376789,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mie8txs68e86e6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059152,1059154,1718093079,822059908662278,825465608497696,2048660,2048661,825465608493600,825465608499232,1119699,1718596,700765096,298488495,2213765,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":155,\"model_id\":360314929980,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mie8txs68e86e6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1400066568,1059152,1059154,1718093079,822059908662278,825465608497696,2048660,2048661,825465608493600,825465608499232,1119699,1718596,700765096,298488495,2213765,299033477],\"matched_keywords\":[\"\"],\"merge_rank\":155,\"model_id\":360314929980,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54603276981",
"debug_info": null
},
{
"item_basic": {
"itemid": 58103259634,
"shopid": 18432502,
"name": "Xiaomi Smart Band 8 Pro 1.74 inch Amoled",
"label_ids": [
1000167,
844931064601283,
844931086908638,
1400005526,
1049116,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699,
1718596,
298488495,
299033477,
2213765
],
"image": "id-11134207-82252-mie4gjuiiosj9d",
"images": [
"id-11134207-82252-mie4gjuiiosj9d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766039824,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Xiaomi",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 55000000000,
"price_min": 55000000000,
"price_max": 55000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Mojokerto",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 55000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 340313987313,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 55000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "wonjinshine",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 58103259634,
"shopid": 18432502,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mie4gjuiiosj9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,844931086908638,1400005526,1049116,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":402,\"model_id\":340313987313,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mie4gjuiiosj9d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,844931064601283,844931086908638,1400005526,1049116,822059908662278,825465608499232,825465608497696,1718093079,1119699,1718596,298488495,299033477,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":402,\"model_id\":340313987313,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_58103259634",
"debug_info": null
},
{
"item_basic": {
"itemid": 48253278424,
"shopid": 194150799,
"name": "NORTH EDGE MARS 5 โ Outdoor Smartwatch",
"label_ids": [
2018619,
700185071,
700190019,
844931064601283,
298463379,
1049124,
1059152,
1718093079,
822059908662278,
825465608499232,
825465608497696,
825465608493600,
1119699,
1718596,
298488495,
2098621,
2213765,
1718088045,
298468389
],
"image": "id-11134207-8224p-midz6aq5id5315",
"images": [
"id-11134207-8224p-midz6aq5id5315",
"id-11134207-8224q-midz6aq5bcavee"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1766031870,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "North Edge",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 68900000000,
"price_min": 68900000000,
"price_max": 68900000000,
"price_min_before_discount": 99900000000,
"price_max_before_discount": 99900000000,
"hidden_price_display": null,
"price_before_discount": 99900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-31%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Black",
"White",
"Blue"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Selatan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 799787620827136,
"price": 68900000000,
"strikethrough_price": 99900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-31%",
"model_id": 435313457263,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 99900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Deyana Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48253278424,
"shopid": 194150799,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-midz6aq5id5315\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700185071,700190019,844931064601283,298463379,1049124,1059152,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,1119699,1718596,298488495,2098621,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":41,\"model_id\":435313457263,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-midz6aq5id5315\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700185071,700190019,844931064601283,298463379,1049124,1059152,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,1119699,1718596,298488495,2098621,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":41,\"model_id\":435313457263,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48253278424",
"debug_info": null
},
{
"item_basic": {
"itemid": 49353257492,
"shopid": 296426053,
"name": "[NEW PRODUCT] OLIKE Smart Band Active Sport B3 Screen 2.7D Curved 3ATM Waterproof 20 Day Battery Life | Smart Band Health Monitor Sync Strava, Strap 18mm",
"label_ids": [
2018619,
2023641,
844931064601283,
844931086908638,
1718093079,
298463379,
1119699,
1718596,
298488495,
2098621,
700005509,
1049138,
822059908662278,
2048661,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
2048660,
700765096,
2213765,
298468389,
1718088045
],
"image": "id-11134207-8224x-mid5uwrbwr2b32",
"images": [
"id-11134207-8224x-mid5uwrbwr2b32",
"id-11134207-8224p-mid5uwrd4ao445",
"id-11134207-8224w-mid5uwrh96vb2e",
"id-11134207-8224p-mid5uwrx6akkd9",
"id-11134207-8224x-mid5uwt5ayvb7b",
"id-11134207-8224s-mid5uwy11kp0c7",
"id-11134207-82251-mid5uwy5dhqf2a",
"id-11134207-8224v-mid5uwy12z9g80",
"id-11134207-8224w-mid5uwygvv9i9a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765981679,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Olike",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 32320000000,
"price_min": 32320000000,
"price_max": 32320000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vdvf-mid5vz3dclc16b.16000101765981459.mp4",
"thumb_url": "id-11110107-6vdvf-mid5vz3dclc16b_cover",
"duration": 60,
"version": 2,
"vid": "id-11110107-6vdvf-mid5vz3dclc16b",
"formats": [
{
"format": 1600010,
"defn": "V540P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vdvf-mid5vz3dclc16b.16000101765981459.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvf-mid5vz3dclc16b.16000101765981459.mp4",
"width": 540,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvf-mid5vz3dclc16b.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "B3",
"options": [
"Black",
"Silver"
],
"images": [
"id-11134207-8224u-mid5wll85wjk14",
"id-11134207-82252-mid5wogw8lqba2"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Banjarmasin",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 32320000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 340311338991,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 32320000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "SUPPLYACC",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49353257492,
"shopid": 296426053,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mid5uwrbwr2b32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,844931086908638,1718093079,298463379,1119699,1718596,298488495,2098621,700005509,1049138,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,700765096,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":732,\"model_id\":340311338991,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mid5uwrbwr2b32\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931064601283,844931086908638,1718093079,298463379,1119699,1718596,298488495,2098621,700005509,1049138,822059908662278,2048661,825465608493600,825465608494624,825465608499232,825465608497696,2048660,700765096,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":732,\"model_id\":340311338991,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49353257492",
"debug_info": null
},
{
"item_basic": {
"itemid": 48303238944,
"shopid": 129213690,
"name": "Etrex SE Garmin Etrex SE TAM",
"label_ids": [
1400066568,
2023641,
1000167,
2018619,
2068629,
298938357,
1428713,
1718087960,
298463379,
844931064601283,
1059154,
1059152,
1718093079,
822059908662278,
825465608497696,
2048660,
2048661,
825465608494624,
825465608499232,
1119699,
1718596,
700765096,
298488495,
2098621,
2213765,
1718088045,
298468389,
2098629,
298938368,
2098628
],
"image": "id-11134207-8224v-micub8iw75ky8b",
"images": [
"id-11134207-8224v-micub8iw75ky8b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765962114,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 317500000000,
"price_min": 317500000000,
"price_max": 317500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp1JT X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 317500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 425310099545,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 317500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp1,1JT x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Falsacom",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48303238944,
"shopid": 129213690,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-micub8iw75ky8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2023641,1000167,2018619,2068629,298938357,1428713,1718087960,298463379,844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,1718596,700765096,298488495,2098621,2213765,1718088045,298468389,2098629,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":806,\"model_id\":425310099545,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-micub8iw75ky8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2023641,1000167,2018619,2068629,298938357,1428713,1718087960,298463379,844931064601283,1059154,1059152,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,1718596,700765096,298488495,2098621,2213765,1718088045,298468389,2098629,298938368,2098628],\"matched_keywords\":[\"\"],\"merge_rank\":806,\"model_id\":425310099545,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48303238944",
"debug_info": null
},
{
"item_basic": {
"itemid": 24147811182,
"shopid": 1680605640,
"name": "Braided Solo Loop For Apple watch band 44mm 40mm ultra 2 49mm 45mm-42-41mm Elastic bracelet iWatch series 9 8 se 6 7 5 4 3 strap",
"label_ids": [
844931064601283,
1059152,
1059154,
822059908662278,
825465608499232,
1119699,
1718093079,
1718596,
298488495,
299033478,
2213765
],
"image": "sg-11134201-81zu8-micib5t2fmywcc",
"images": [
"sg-11134201-81zu8-micib5t2fmywcc",
"sg-11134201-81zvj-micib6dyfojobe",
"sg-11134201-81zww-micib6vduoef6a",
"sg-11134201-81ztu-micib7f2dywzd3",
"sg-11134201-8224x-mhlkek3f42dd51",
"sg-11134201-81zwe-micib88kny137a",
"sg-11134201-81ztz-micib8mcphc692",
"sg-11134201-81ztg-micib8zug54z4d",
"sg-11134201-81zvo-micib9av5beo07"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765941826,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 20160000000,
"price_min": 20160000000,
"price_max": 20160000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Band Color",
"options": [
"Pearl White 17",
"Pink Punch 18",
"Black White 12",
"Blue Green 13",
"multin Color 11",
"Orange 14",
"Charcoal 15",
"Brown 08",
"Atlantic Blue 09",
"Red 07",
"Comouflage Multin10",
"Dark Cherry 31",
"Abyss Blue 32",
"Chocolat 30",
"Sequoia Green 34",
"Blueberry 26",
"Neon Lime 27",
"Strawberry Red 25",
"Hyper Grape 28",
"Blue Green 04",
"Inverness Green 05",
"Blue Pink 03",
"Black 06",
"Vitamin C 29",
"Z Black Red 01",
"Pride Edition 24",
"Z Blue White 02",
"Starlight 35",
"Starlight Black 36",
"Z-Purple Gold 33",
"Sky Blue 21",
"Pistachio 22",
"Purple Pulse 19",
"Electric Orange 23",
"Space Gray 16"
],
"images": [
"sg-11134201-81zwd-micibb38q6mgf4",
"sg-11134201-81zv5-micibbuc3z0j59",
"sg-11134201-81zuk-micibc4cra4k1e",
"sg-11134201-81zts-micibcfb1erm7d",
"sg-11134201-81zu8-micibcss8d1k21",
"sg-11134201-81zvn-micibd5lmk1t23",
"sg-11134201-81zws-micibbg10ykk1c",
"sg-11134201-81zvq-micibdhvcr9e38",
"sg-11134201-81zub-micibdwhbkzsf5",
"sg-11134201-81zvi-micibe8a8dfk71",
"sg-11134201-81zux-micibek44bns06",
"sg-11134201-81zu5-micibev7wgsj43",
"sg-11134201-81zte-micibf69je9z6e",
"sg-11134201-81zu8-micibfh88z5t0e",
"sg-11134201-81zuz-micibg34m96r16",
"sg-11134201-81zvf-micibggje5u0a9",
"sg-11134201-81ztx-micibgx7gg01c9",
"sg-11134201-81zth-micibaba37r85c",
"sg-11134201-81zu3-micibh8n3ncw3d",
"sg-11134201-81zu2-micibhm2gmiw27",
"sg-11134201-81ztx-micibhzxe3uo24",
"sg-11134201-81ztl-micibibjqvb748",
"sg-11134201-81zv3-micibim0fjev06",
"sg-11134201-81zww-micibiyknjt3ed",
"sg-11134201-81zvk-micibjazaqkm19",
"sg-11134201-81zuj-micibjm1fz0h4b",
"sg-11134201-81ztm-micibjz2bthe75",
"sg-11134201-81zvl-micibkcanwuf2e",
"sg-11134201-81zwl-micibkx5m49477",
"sg-11134201-81zvl-miciblfp52bre8",
"sg-11134201-81ztg-micib8zug54z4d",
"sg-11134201-81zvo-micib9av5beo07",
"sg-11134201-81zvr-micib9lmwwsj43",
"sg-11134201-81zwj-micib9y9fu9s77",
"sg-11134201-81zth-micibamr3mkofa"
],
"properties": [],
"type": 0
},
{
"name": "Ships From",
"options": [
"CHINA"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 20160000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 49599833666,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 20160000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "EchotStore",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 24147811182,
"shopid": 1680605640,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu8-micib5t2fmywcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1119699,1718093079,1718596,298488495,299033478,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":426,\"model_id\":49599833666,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-81zu8-micib5t2fmywcc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,1059154,822059908662278,825465608499232,1119699,1718093079,1718596,298488495,299033478,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":426,\"model_id\":49599833666,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_24147811182",
"debug_info": null
},
{
"item_basic": {
"itemid": 43527283749,
"shopid": 228891654,
"name": "Smartwatch M10 Pro",
"label_ids": [
2018619,
700190019,
844931064601283,
844931086908638,
298463379,
1059152,
700005487,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
1718596,
298488495,
2098621,
2213765,
1718088045,
298468389
],
"image": "id-11134207-8224w-mhzveb1tz2f589",
"images": [
"id-11134207-8224w-mhzveb1tz2f589",
"id-11134207-8224r-mhzveb18mps6c1",
"id-11134207-8224y-mhzveb18lb7q8e",
"id-11134207-82251-mhzveb1f3w1u99"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765893305,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 25000000000,
"price_min": 25000000000,
"price_max": 25000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Silver",
"Pink"
],
"images": [
"id-11134207-82251-mhzveb1f3w1u99",
"id-11134207-8224r-mhzveb18mps6c1",
"id-11134207-8224w-mhzveb1tz2f589"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 25000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 380306100271,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 25000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Wanti99lestari",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuNTAuMTQxX3tiMTFiYTNhZjQ4NTU3Zjc0YzMzODExMjQ5NWM3MWMwMDowMjAwMDA0NjU4MzA0NjY5OjAxMDAwMTlmOTA4YjgyMjl9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NzUyNDY4MzYx",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43527283749,
"shopid": 228891654,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhzveb1tz2f589\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700190019,844931064601283,844931086908638,298463379,1059152,700005487,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2098621,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":263,\"model_id\":380306100271,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mhzveb1tz2f589\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,700190019,844931064601283,844931086908638,298463379,1059152,700005487,1718093079,822059908662278,825465608499232,825465608497696,1119699,1718596,298488495,2098621,2213765,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":263,\"model_id\":380306100271,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43527283749",
"debug_info": null
},
{
"item_basic": {
"itemid": 44953183118,
"shopid": 64715447,
"name": "ADVAN Smartwatch SR | Amoled Display 1.43\" | Bluetooth Call | Ai Voice Assistant | Waterproof IP68 | Bluetooth 5.2 | 100+ Mode Sport | Material ZInc Alloy | Up To 15-Days Battery",
"label_ids": [
47,
2018619,
2023641,
1000167,
700190019,
700185071,
1428713,
1718087960,
844931086908638,
844931064601283,
298463379,
1049112,
1059151,
822059908662278,
822120592861206,
825465608499232,
834403089593352,
825465608497696,
2048660,
2048661,
825465608493600,
1718093079,
1718596,
700765096,
1119699,
298488495,
2213765,
298933384,
299033477,
1015914,
700190087,
298468389,
1718088045
],
"image": "id-11134207-82252-mibkece0oz5w79",
"images": [
"id-11134207-82252-mibkece0oz5w79",
"id-11134207-8224x-mibkecdngsncb4",
"id-11134207-8224z-mibkecdw8uf6e6"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765884897,
"sold": 1,
"historical_sold": 1,
"liked": false,
"liked_count": 5,
"view_count": null,
"catid": 100013,
"brand": "ADVAN",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 22000000000,
"price_min": 22000000000,
"price_max": 22000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "WARNA",
"options": [
"Rose gold"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 22000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 277259852498,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 22000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "BHIESTORE",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44953183118,
"shopid": 64715447,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mibkece0oz5w79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,2018619,2023641,1000167,700190019,700185071,1428713,1718087960,844931086908638,844931064601283,298463379,1049112,1059151,822059908662278,822120592861206,825465608499232,834403089593352,825465608497696,2048660,2048661,825465608493600,1718093079,1718596,700765096,1119699,298488495,2213765,298933384,299033477,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":635,\"model_id\":277259852498,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82252-mibkece0oz5w79\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[47,2018619,2023641,1000167,700190019,700185071,1428713,1718087960,844931086908638,844931064601283,298463379,1049112,1059151,822059908662278,822120592861206,825465608499232,834403089593352,825465608497696,2048660,2048661,825465608493600,1718093079,1718596,700765096,1119699,298488495,2213765,298933384,299033477,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":635,\"model_id\":277259852498,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44953183118",
"debug_info": null
},
{
"item_basic": {
"itemid": 44227273061,
"shopid": 301061531,
"name": "Smart Watch HainoTeko HT-27 Amoled WaterProoft Super Slim Baterai Tahan 7 Hari Jam Tangan Touch Screen Layar Amoled Sport Health Monitoring Kesehatan & Olahraga 3 Pairs Strap",
"label_ids": [
834230400556567,
2018619,
2023641,
844931064601283,
844931086908638,
298463379,
700005489,
1059152,
1718093079,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
1119699,
1718596,
298488495,
2098621,
2213765,
298468389,
1718088045
],
"image": "id-11134207-8224y-mibf3ooyb85k5e",
"images": [
"id-11134207-8224y-mibf3ooyb85k5e",
"id-11134207-82250-mibf3ooupzwhf0",
"id-11134207-8224u-mibf3oouregx58",
"id-11134207-8224s-mibf3ooust1d14",
"id-11134207-8224v-mibf3oouu7lt95"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765876460,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "HAINO TEKO",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 68500000000,
"price_min": 68500000000,
"price_max": 68500000000,
"price_min_before_discount": 85000000000,
"price_max_before_discount": 85000000000,
"hidden_price_display": null,
"price_before_discount": 85000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-19%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdv6-mibfc8836aysf7.16000081765876286.mp4",
"thumb_url": "id-11110105-6vdv6-mibfc8836aysf7_cover",
"duration": 40,
"version": 2,
"vid": "id-11110105-6vdv6-mibfc8836aysf7",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv6-mibfc8836aysf7.16000081765876286.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv6-mibfc8836aysf7.16000081765876286.mp4",
"width": 720,
"height": 960
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv6-mibfc8836aysf7.default.mp4",
"width": 540,
"height": 720
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Silver",
"Gold"
],
"images": [
"id-11134207-82252-mibf3oouvm69c9",
"id-11134207-8224s-mibf3ooux0qpae",
"id-11134207-8224w-mibf3oouyfb599"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 811587221389312,
"price": 68500000000,
"strikethrough_price": 85000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-19%",
"model_id": 405304871299,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 85000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HainoTeko.Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44227273061,
"shopid": 301061531,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mibf3ooyb85k5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931064601283,844931086908638,298463379,700005489,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":811,\"model_id\":405304871299,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mibf3ooyb85k5e\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,2018619,2023641,844931064601283,844931086908638,298463379,700005489,1059152,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,1718596,298488495,2098621,2213765,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":811,\"model_id\":405304871299,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44227273061",
"debug_info": null
},
{
"item_basic": {
"itemid": 58003155889,
"shopid": 408934982,
"name": "GPS Tracker Pelacak Kendaraan X3 Concox Realtime - ANTI MALING",
"label_ids": [
1059152,
1049122,
822059908662278,
825465608497696,
825465608493600,
825465608494624,
825465608499232,
1718093079,
1119699,
1718596,
298488495,
2098621,
2213765
],
"image": "id-11134207-8224q-mib5wkaureh212",
"images": [
"id-11134207-8224q-mib5wkaureh212",
"id-11134207-8224y-mib5wkav5g5f36",
"id-11134207-8224s-mib5wkaupzwm21"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765861148,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Concox",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 55200000000,
"price_min": 55200000000,
"price_max": 55200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 55200000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 302258588937,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 55200000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Tracksolid Official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 58003155889,
"shopid": 408934982,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mib5wkaureh212\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1718093079,1119699,1718596,298488495,2098621,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":551,\"model_id\":302258588937,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mib5wkaureh212\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,822059908662278,825465608497696,825465608493600,825465608494624,825465608499232,1718093079,1119699,1718596,298488495,2098621,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":551,\"model_id\":302258588937,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_58003155889",
"debug_info": null
},
{
"item_basic": {
"itemid": 51403130462,
"shopid": 1499776956,
"name": "AZAHRAKOLEKSI FILIEKEU JAM TANGAN PINTAR WANITA GAYA ELEGAN MODIS PANGGILAN BLUETOOTH OLAHRAGA TAHAN AIR GELANG FGH-56",
"label_ids": [
844931064601283,
1049141,
1049154,
1718093079,
822059908662278,
825465608499232,
1718596,
298488495,
2098621,
2213765
],
"image": "id-11134201-8224q-mia80u9blqf688",
"images": [
"id-11134201-8224q-mia80u9blqf688",
"id-11134201-8224r-mia80ws7lzwm87",
"id-11134201-82250-mia80z9gmhvl80",
"id-11134201-8224p-mia810zhq6f546",
"id-11134201-8224s-mia813xw8uf408",
"id-11134201-82251-mia815n0uj2873",
"id-11134201-8224u-mia817c41loh2d",
"id-11134201-8224v-mia818h3epky8f",
"id-11134201-8224u-mia81a5qaoe95b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765803483,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 49664000000,
"price_min": 49664000000,
"price_max": 49664000000,
"price_min_before_discount": 51200000000,
"price_max_before_discount": 51200000000,
"hidden_price_display": null,
"price_before_discount": 51200000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-3%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"black",
"wine red"
],
"images": [
"id-11134201-8224u-mia81pabchs008",
"id-11134201-82252-mia81qpshloge0"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Yogyakarta",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 817925863309312,
"price": 49664000000,
"strikethrough_price": 51200000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-3%",
"model_id": 335301117360,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 51200000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "azahrakoleksi",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51403130462,
"shopid": 1499776956,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mia80u9blqf688\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049141,1049154,1718093079,822059908662278,825465608499232,1718596,298488495,2098621,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":223,\"model_id\":335301117360,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224q-mia80u9blqf688\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049141,1049154,1718093079,822059908662278,825465608499232,1718596,298488495,2098621,2213765],\"matched_keywords\":[\"\"],\"merge_rank\":223,\"model_id\":335301117360,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51403130462",
"debug_info": null
},
{
"item_basic": {
"itemid": 47903123247,
"shopid": 52605257,
"name": "SMARTWATCH PEJE ZW SERIES 10 MINI AI RECORDER CHAT GPT GARANSI RESMI ORIGINAL",
"label_ids": [
2023641,
298938357,
2068629,
2018619,
700190019,
844931064601283,
298463379,
1718093079,
1049116,
1049123,
822059908662278,
825465608497696,
825465608492064,
825465608494624,
825465608499232,
1400066568,
1119699,
1718596,
298488495,
298933384,
2098621,
2213765,
298938368,
1718088045,
2098628,
298468389,
2098629
],
"image": "sg-11134201-822xk-mia0mgswwyrobb",
"images": [
"sg-11134201-822xk-mia0mgswwyrobb",
"sg-11134201-822zd-mia0mc1g9xxc43",
"sg-11134201-822yn-mia0mgdfyqyp78",
"sg-11134201-822wg-mia0mhbil62o4d",
"sg-11134201-822xj-mia0mchbuv43aa",
"sg-11134201-822wi-mia0mdlxbwu9cc",
"sg-11134201-822xs-mia0melfjcao66",
"sg-11134201-822zo-mia0mf8kmbk004",
"sg-11134201-822xx-mia0mfu25s76d1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765790056,
"sold": 4,
"historical_sold": 4,
"liked": false,
"liked_count": 6,
"view_count": null,
"catid": 100013,
"brand": "PEJE",
"cmt_count": 2,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 49450000000,
"price_min": 49450000000,
"price_max": 49450000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven9-mishnqmkffgn4f.16000081766909267.mp4",
"thumb_url": "id-11110105-6ven9-mishnqmkffgn4f_cover",
"duration": 60,
"version": 2,
"vid": "id-11110105-6ven9-mishnqmkffgn4f",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven9-mishnqmkffgn4f.16000081766909267.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mishnqmkffgn4f.16000081766909267.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven9-mishnqmkffgn4f.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"BLACK",
"SILVER",
"PINK"
],
"images": [
"id-11134207-8224y-mj6v2olnfkefe4",
"id-11134207-8224t-mj6v2olpglxd98",
"id-11134207-8224t-mj6v2olngyyvda"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 1,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Malang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp164RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 49450000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390300150516,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 49450000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 4,
"rounded_local_monthly_sold_count": 4,
"local_monthly_sold_count_text": "4",
"rounded_display_sold_count": 4,
"display_sold_count_text": "4"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp164RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": " Time Malang",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47903123247,
"shopid": 52605257,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822xk-mia0mgswwyrobb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,298938357,2068629,2018619,700190019,844931064601283,298463379,1718093079,1049116,1049123,822059908662278,825465608497696,825465608492064,825465608494624,825465608499232,1400066568,1119699,1718596,298488495,298933384,2098621,2213765,298938368,1718088045,2098628,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":156,\"model_id\":390300150516,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822xk-mia0mgswwyrobb\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2023641,298938357,2068629,2018619,700190019,844931064601283,298463379,1718093079,1049116,1049123,822059908662278,825465608497696,825465608492064,825465608494624,825465608499232,1400066568,1119699,1718596,298488495,298933384,2098621,2213765,298938368,1718088045,2098628,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":156,\"model_id\":390300150516,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47903123247",
"debug_info": null
},
{
"item_basic": {
"itemid": 44703085583,
"shopid": 214295724,
"name": "Apple Watch 3 42mm",
"label_ids": [
2018619,
2068629,
298938357,
1428713,
1718087960,
844931064601283,
298463379,
1049117,
1049116,
822059908662278,
825465608499232,
1119699,
298488495,
299033477,
298938368,
298468389
],
"image": "id-11134207-8224o-mi8cengpjshvd5",
"images": [
"id-11134207-8224o-mi8cengpjshvd5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765689952,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 4,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 90000000000,
"price_min": 90000000000,
"price_max": 90000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp300RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 90000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 445295194730,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 90000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp300RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Magnetic778",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 44703085583,
"shopid": 214295724,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mi8cengpjshvd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,298938357,1428713,1718087960,844931064601283,298463379,1049117,1049116,822059908662278,825465608499232,1119699,298488495,299033477,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":844,\"model_id\":445295194730,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mi8cengpjshvd5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2068629,298938357,1428713,1718087960,844931064601283,298463379,1049117,1049116,822059908662278,825465608499232,1119699,298488495,299033477,298938368,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":844,\"model_id\":445295194730,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_44703085583",
"debug_info": null
},
{
"item_basic": {
"itemid": 56153008718,
"shopid": 42251167,
"name": "Smart Watch Taqwa",
"label_ids": [
1400066568,
844931064601283,
844931086908638,
1049112,
700005486,
1718093079,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
1119699,
298463379,
2098621,
298468389,
1718088045
],
"image": "id-11134207-8224y-mi6k5qs3hblz71",
"images": [
"id-11134207-8224y-mi6k5qs3hblz71",
"id-11134207-8224o-mifoiun5ul8g26",
"id-11134207-8224r-mifoiun5t6o04f",
"id-11134207-8224o-mifoiun4u2h399"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765582291,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "TAQWA",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 52000000000,
"price_min": 52000000000,
"price_max": 52000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6ven4-mi6k7fhfjoxs4e.16000091765581789.mp4",
"thumb_url": "id-11110107-6ven4-mi6k7fhfjoxs4e_cover",
"duration": 42,
"version": 2,
"vid": "id-11110107-6ven4-mi6k7fhfjoxs4e",
"formats": [
{
"format": 1600009,
"defn": "V270P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6ven4-mi6k7fhfjoxs4e.16000091765581789.mp4",
"url": "https://down-bs-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven4-mi6k7fhfjoxs4e.16000091765581789.mp4",
"width": 270,
"height": 330
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6ven4-mi6k7fhfjoxs4e.default.mp4",
"width": 288,
"height": 352
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 52000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 302251133998,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 52000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "safaraz Mart",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56153008718,
"shopid": 42251167,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi6k5qs3hblz71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,1049112,700005486,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699,298463379,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":569,\"model_id\":302251133998,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi6k5qs3hblz71\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,844931086908638,1049112,700005486,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1119699,298463379,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":569,\"model_id\":302251133998,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56153008718",
"debug_info": null
},
{
"item_basic": {
"itemid": 46052998008,
"shopid": 41156874,
"name": "GPS Tracker CY06 4G SERVER SECUMURE PLUS",
"label_ids": [
2018619,
2023641,
844931086908638,
844931064601283,
1059156,
700005499,
822059908662278,
827380695406658,
825465608499232,
825465608497696,
822120592861206,
825465608494624,
1119699,
2098621,
1718093079
],
"image": "id-11134207-8224y-mh70qqig62327d",
"images": [
"id-11134207-8224y-mh70qqig62327d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765512808,
"sold": 3,
"historical_sold": 3,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 27500000000,
"price_min": 27500000000,
"price_max": 27500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": true,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 27500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 292249027691,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 27500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "azka5150",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46052998008,
"shopid": 41156874,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mh70qqig62327d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1059156,700005499,822059908662278,827380695406658,825465608499232,825465608497696,822120592861206,825465608494624,1119699,2098621,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":219,\"model_id\":292249027691,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mh70qqig62327d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,2023641,844931086908638,844931064601283,1059156,700005499,822059908662278,827380695406658,825465608499232,825465608497696,822120592861206,825465608494624,1119699,2098621,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":219,\"model_id\":292249027691,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46052998008",
"debug_info": null
},
{
"item_basic": {
"itemid": 52752953616,
"shopid": 1410468266,
"name": "GPS Handheld Trimble TDC-600 Bekas",
"label_ids": [
844931064601283,
700005495,
700005490,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699,
2098621
],
"image": "id-11134207-8224q-mjdmjirdj7ybc9",
"images": [
"id-11134207-8224q-mjdmjirdj7ybc9",
"id-11134207-8224r-mi4ozahq1xxdfb",
"id-11134207-8224z-mi4ozahq3cht08",
"id-11134207-8224s-mi4ozahq4r29e6",
"id-11134207-82250-mi4ozahq65mp40",
"id-11134207-8224z-mi4ozahq7k7561",
"id-11134207-82250-mi4pw3y1bsw045"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765470563,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 3300000000000,
"price_min": 3300000000000,
"price_max": 3300000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 3300000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 310285930921,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 3300000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GEMILANG SURVEY INDONESIA",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52752953616,
"shopid": 1410468266,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjdmjirdj7ybc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005495,700005490,822059908662278,825465608499232,825465608497696,1718093079,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":602,\"model_id\":310285930921,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mjdmjirdj7ybc9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005495,700005490,822059908662278,825465608499232,825465608497696,1718093079,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":602,\"model_id\":310285930921,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52752953616",
"debug_info": null
},
{
"item_basic": {
"itemid": 55502943634,
"shopid": 1504983808,
"name": "Huawei Watch Fit 4 Original Garansi Resmi Huawei Indonesia",
"label_ids": [
844931064601283,
700005514,
1059156,
822059908662278,
825465608499232,
298463379,
1718093079,
1119699,
2098621,
298933384,
1400285055,
298468389,
1718088045
],
"image": "id-11134207-82251-mi4ofbic6arl8b",
"images": [
"id-11134207-82251-mi4ofbic6arl8b"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765468082,
"sold": 3,
"historical_sold": 3,
"liked": false,
"liked_count": 10,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 2,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 161500000000,
"price_min": 161500000000,
"price_max": 161500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 2,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Batang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 161500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 224624936023,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 161500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 3,
"rounded_local_monthly_sold_count": 3,
"local_monthly_sold_count_text": "3",
"rounded_display_sold_count": 3,
"display_sold_count_text": "3"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "dunia Android reborn",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55502943634,
"shopid": 1504983808,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi4ofbic6arl8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005514,1059156,822059908662278,825465608499232,298463379,1718093079,1119699,2098621,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":879,\"model_id\":224624936023,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mi4ofbic6arl8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005514,1059156,822059908662278,825465608499232,298463379,1718093079,1119699,2098621,298933384,1400285055,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":879,\"model_id\":224624936023,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55502943634",
"debug_info": null
},
{
"item_basic": {
"itemid": 57602932114,
"shopid": 410265923,
"name": "Cincin Pintar R11C Smart Ring dengan Layar Tampilan, Pemantauan Detak Jantung, Tidur, Mode Multi Olahraga, Tahan Air 1 ATM, Cincin Pintar dengan Kotak Pengisian Daya",
"label_ids": [
2018619,
1718087960,
1428713,
844931064601283,
844931086908638,
298463379,
700005490,
1049120,
822059908662278,
825465608497696,
840990690654214,
840955085144628,
825465608494624,
825465608499232,
1718093079,
1119699,
1015914,
700190087,
1400285055,
298933384,
2108628,
298468389,
1718088045
],
"image": "sg-11134201-822xp-mi48yg5urc3l4a",
"images": [
"sg-11134201-822xp-mi48yg5urc3l4a",
"sg-11134201-822wk-mi48yig2w5xef0",
"sg-11134201-822yc-mi48yld1cyro19",
"sg-11134201-822wz-mi48ynkjtx4y90",
"sg-11134201-822zh-mi48yqe1inep29",
"sg-11134201-822ww-mi48ysm0vtog9d",
"sg-11134201-822zm-mi48yv4b74zm60",
"sg-11134201-822zg-mi48ywv5u8lja6",
"sg-11134201-822xq-mi48yyv8stfs74"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765441832,
"sold": 16,
"historical_sold": 16,
"liked": false,
"liked_count": 16,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 7,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 32999900000,
"price_min": 32999900000,
"price_max": 32999900000,
"price_min_before_discount": 41999900000,
"price_max_before_discount": 41999900000,
"hidden_price_display": null,
"price_before_discount": 41999900000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-21%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Color",
"options": [
"Black",
"Silver"
],
"images": [
"sg-11134201-822wy-mi48z14kfimb0a",
"sg-11134201-822xv-mi48z2g40i6gc5"
],
"properties": [],
"type": 0
},
{
"name": "Size",
"options": [
"7#(17.5mm)",
"8#(18.3mm)",
"9#(19.1mm)",
"10#(20mm)",
"11#(20.8mm)",
"12#(21.6mm)",
"13#(22.3mm)"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.857142857142857,
"rating_count": [
7,
0,
0,
0,
1,
6
],
"rcount_with_context": 2,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 403227258667730,
"bundle_deal_label": "Pilih 2, diskon 4%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 814267926888448,
"price": 32200000000,
"strikethrough_price": 41999900000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1298167501963264,
"discount_text": "-21%",
"model_id": 400282639135,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1298167501963264,
"voucher_code": "SEAR8521U",
"voucher_discount": 799900000,
"time_info": {
"start_time": 1764213300,
"end_time": 1772297940,
"valid_duration": null
},
"groups": [],
"min_spend": 22999900000
},
"recommended_platform_voucher_info": null,
"original_price": 41999900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 16,
"rounded_local_monthly_sold_count": 16,
"local_monthly_sold_count_text": "16",
"rounded_display_sold_count": 16,
"display_sold_count_text": "16"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Searchai Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57602932114,
"shopid": 410265923,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822xp-mi48yg5urc3l4a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608497696,840990690654214,840955085144628,825465608494624,825465608499232,1718093079,1119699,1015914,700190087,1400285055,298933384,2108628,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":761,\"model_id\":400282639135,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-822xp-mi48yg5urc3l4a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1718087960,1428713,844931064601283,844931086908638,298463379,700005490,1049120,822059908662278,825465608497696,840990690654214,840955085144628,825465608494624,825465608499232,1718093079,1119699,1015914,700190087,1400285055,298933384,2108628,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":761,\"model_id\":400282639135,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57602932114",
"debug_info": null
},
{
"item_basic": {
"itemid": 47252925930,
"shopid": 276030541,
"name": "Olike Interstellar Smart Watch (FW6)",
"label_ids": [
2018619,
298938357,
2068629,
844931086908638,
844931064601283,
298463379,
1059152,
1049122,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
1718093079,
1119699,
2048660,
2048661,
700765096,
2098621,
2098629,
1718088045,
298938368,
2098628,
298468389
],
"image": "id-11134207-8224y-mi3scfjr1a0w84",
"images": [
"id-11134207-8224y-mi3scfjr1a0w84",
"id-11134207-8224v-mi3scfjr2olc3b",
"id-11134207-8224q-mi3scfjrb400c9",
"id-11134207-8224o-mi3scfjr435se1",
"id-11134207-8224w-mi3scfjr6wao5f",
"id-11134207-8224q-mi3scfjr5hq88d",
"id-11134207-8224p-mi3scfjr8av44d",
"id-11134207-8224p-mi3sbtj2mhhiba",
"id-11134207-82250-mi3sb1qw8zyb86"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765414117,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Olike",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 23999900000,
"price_min": 23999900000,
"price_max": 23999900000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp80RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 23999900000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 315280531164,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 23999900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp80RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "csvzio00v_",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47252925930,
"shopid": 276030541,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi3scfjr1a0w84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298938357,2068629,844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,2048660,2048661,700765096,2098621,2098629,1718088045,298938368,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":346,\"model_id\":315280531164,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mi3scfjr1a0w84\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,298938357,2068629,844931086908638,844931064601283,298463379,1059152,1049122,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1119699,2048660,2048661,700765096,2098621,2098629,1718088045,298938368,2098628,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":346,\"model_id\":315280531164,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47252925930",
"debug_info": null
},
{
"item_basic": {
"itemid": 56352878268,
"shopid": 44686230,
"name": "garmin fenix 7 solar",
"label_ids": [
844931064601283,
1059156,
700000491,
822059908662278,
825465608494624,
825465608499232,
1718093079,
1119699,
1400066568,
298933384,
2023641
],
"image": "id-11134207-8224x-mi2zkjhho8w48f",
"images": [
"id-11134207-8224x-mi2zkjhho8w48f",
"id-11134207-8224p-mi2zkjhhfthg2d",
"id-11134207-8224v-mi2zkjhhh81w44",
"id-11134207-8224z-mi2zkjhhimmc73",
"id-11134207-8224x-mi2zkjhhk16s76",
"id-11134207-8224w-mi2zkjhhlfr800",
"id-11134207-8224y-mi2zkjhhmubob7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765365590,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 4,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 725000000000,
"price_min": 725000000000,
"price_max": 725000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Salatiga",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 725000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 272243586548,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 725000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Candibaru_new",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56352878268,
"shopid": 44686230,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mi2zkjhho8w48f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000491,822059908662278,825465608494624,825465608499232,1718093079,1119699,1400066568,298933384,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":677,\"model_id\":272243586548,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224x-mi2zkjhho8w48f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059156,700000491,822059908662278,825465608494624,825465608499232,1718093079,1119699,1400066568,298933384,2023641],\"matched_keywords\":[\"\"],\"merge_rank\":677,\"model_id\":272243586548,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56352878268",
"debug_info": null
},
{
"item_basic": {
"itemid": 51252843726,
"shopid": 172870542,
"name": "AMAZFIT ACTIVE 2 Round Resmi",
"label_ids": [
1000167,
2018619,
700190019,
844931064601283,
298463379,
1718093079,
1119699,
700765096,
2103651,
2143613,
1049145,
1049148,
822059908662278,
2048660,
2048661,
825465608493600,
825465608494624,
825465608499232,
298468389,
1718088045
],
"image": "id-11134207-8224r-mi2klvnljj0n65",
"images": [
"id-11134207-8224r-mi2klvnljj0n65"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765340438,
"sold": 1,
"historical_sold": 1,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "Amazfit",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 199000000000,
"price_min": 199000000000,
"price_max": 199000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandar Lampung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 199000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 272242248884,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 199000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Lampung Jam Tangan",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51252843726,
"shopid": 172870542,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mi2klvnljj0n65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,700190019,844931064601283,298463379,1718093079,1119699,700765096,2103651,2143613,1049145,1049148,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":168,\"model_id\":272242248884,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mi2klvnljj0n65\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,700190019,844931064601283,298463379,1718093079,1119699,700765096,2103651,2143613,1049145,1049148,822059908662278,2048660,2048661,825465608493600,825465608494624,825465608499232,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":168,\"model_id\":272242248884,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51252843726",
"debug_info": null
},
{
"item_basic": {
"itemid": 54052827093,
"shopid": 21175839,
"name": "Xiaomi Smart Band 10 warna Midnight Black",
"label_ids": [
2018619,
1428713,
1718087960,
844931086908638,
844931064601283,
298463379,
1049116,
700000488,
1718093079,
822059908662278,
825465608499232,
825465608497696,
1119699,
298933384,
1015914,
700190087,
2098621,
1718088045,
298468389
],
"image": "id-11134207-8224u-mi1p7mysrdaed2",
"images": [
"id-11134207-8224u-mi1p7mysrdaed2",
"id-11134207-8224u-mi1p7myz4buwb9"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765287708,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100013,
"brand": "Xiaomi",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 60000000000,
"price_min": 60000000000,
"price_max": 60000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Mojokerto",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 60000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 315273537767,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 60000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Skincare.ori.obral",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54052827093,
"shopid": 21175839,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi1p7mysrdaed2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1049116,700000488,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":195,\"model_id\":315273537767,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi1p7mysrdaed2\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,1428713,1718087960,844931086908638,844931064601283,298463379,1049116,700000488,1718093079,822059908662278,825465608499232,825465608497696,1119699,298933384,1015914,700190087,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":195,\"model_id\":315273537767,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54052827093",
"debug_info": null
},
{
"item_basic": {
"itemid": 57002801752,
"shopid": 1545819250,
"name": "Ready GPS Garmin Nuvi GPS GARMIN Mobil Motor - 42LM",
"label_ids": [
844931064601283,
1049112,
1049127,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699,
298933384
],
"image": "id-11134207-8224u-mi1ayji601z972",
"images": [
"id-11134207-8224u-mi1ayji601z972"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765263704,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 55000000000,
"price_min": 55000000000,
"price_max": 55000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bandung",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 55000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 320270849106,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 55000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "wireless gallery",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 57002801752,
"shopid": 1545819250,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi1ayji601z972\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1049127,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":572,\"model_id\":320270849106,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224u-mi1ayji601z972\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049112,1049127,822059908662278,825465608499232,825465608497696,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":572,\"model_id\":320270849106,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_57002801752",
"debug_info": null
},
{
"item_basic": {
"itemid": 40677091570,
"shopid": 778835250,
"name": "Apple Watch Series 6 40mm GPS + LTE Nike Edition Black Original",
"label_ids": [
1718093079,
1049112,
1400005539,
822059908662278,
825465608499232,
1119699,
2098621
],
"image": "id-11134207-8224q-mi0hsl7ud5oh31",
"images": [
"id-11134207-8224q-mi0hsl7ud5oh31",
"id-11134207-8224o-mi0hsl7ssyyo65",
"id-11134207-82251-mi0hsl7sudj4ee",
"id-11134207-8224s-mi0hsl7uek8x4f",
"id-11134207-8224u-mi0hsl7xaia02d",
"id-11134207-8224y-mi0hsl7svs3k48"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765214830,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 265000000000,
"price_min": 265000000000,
"price_max": 265000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6vdvi-mi0ht5x7p4w45a.16000081765214553.mp4",
"thumb_url": "id-11110107-6vdvi-mi0ht5x7p4w45a_cover",
"duration": 35,
"version": 2,
"vid": "id-11110107-6vdvi-mi0ht5x7p4w45a",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6vdvi-mi0ht5x7p4w45a.16000081765214553.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvi-mi0ht5x7p4w45a.16000081765214553.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6vdvi-mi0ht5x7p4w45a.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Majalengka",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 265000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 282238313934,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 265000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "yogaprmna99",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40677091570,
"shopid": 778835250,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mi0hsl7ud5oh31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718093079,1049112,1400005539,822059908662278,825465608499232,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":764,\"model_id\":282238313934,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mi0hsl7ud5oh31\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718093079,1049112,1400005539,822059908662278,825465608499232,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":764,\"model_id\":282238313934,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40677091570",
"debug_info": null
},
{
"item_basic": {
"itemid": 53702775239,
"shopid": 408934982,
"name": "PAKET Asset Tracker AT1 + Simcard + Server TrackSolid - Anti Maling",
"label_ids": [
1059152,
1049122,
1718093079,
822059908662278,
825465608499232,
825465608497696,
825465608493600,
825465608494624,
1119699,
2098621
],
"image": "id-11134207-8224q-mhzv8aqgyoebe5",
"images": [
"id-11134207-8224q-mhzv8aqgyoebe5",
"id-11134207-82251-mhzv8aqgx9tv35",
"id-11134207-8224v-mhzv8aqh02yrde"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765186769,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Concox",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 70100000000,
"price_min": 70100000000,
"price_max": 70100000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PAKET",
"options": [
"SIMCARD + 1 TAHUN",
"SIMCARD + LIFETIME"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 70100000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 360266896383,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 70100000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Tracksolid Official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53702775239,
"shopid": 408934982,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhzv8aqgyoebe5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":552,\"model_id\":360266896383,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhzv8aqgyoebe5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":552,\"model_id\":360266896383,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53702775239",
"debug_info": null
},
{
"item_basic": {
"itemid": 53252761371,
"shopid": 408934982,
"name": "Gps Portable Asset Tracker AT1 / GPS Tracker - Anti Maling",
"label_ids": [
1059152,
1049122,
1718093079,
822059908662278,
825465608499232,
825465608497696,
825465608493600,
825465608494624,
1119699,
2098621
],
"image": "id-11134207-8224o-mhzv8aqgugozdd",
"images": [
"id-11134207-8224o-mhzv8aqgugozdd",
"id-11134207-8224y-mhzv8aqgvv9fcc",
"id-11134207-82250-mhzv8aqgt24j86"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765186162,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Concox",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 57900000000,
"price_min": 57900000000,
"price_max": 57900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 57900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355266830949,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 57900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Tracksolid Official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53252761371,
"shopid": 408934982,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhzv8aqgugozdd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":554,\"model_id\":355266830949,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhzv8aqgugozdd\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608499232,825465608497696,825465608493600,825465608494624,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":554,\"model_id\":355266830949,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53252761371",
"debug_info": null
},
{
"item_basic": {
"itemid": 49502746430,
"shopid": 1513565931,
"name": "Smartwatch Alexander Christie S002 Rubber Strap Original Garansi Resmi 1 Tahun",
"label_ids": [
1400066568,
844931064601283,
2018619,
298463379,
1059152,
700005489,
822059908662278,
825465608499232,
1718093079,
1119699,
2098621,
1718088045,
298468389
],
"image": "id-11134207-8224s-mhybt9z2ztvq7d",
"images": [
"id-11134207-8224s-mhybt9z2ztvq7d",
"id-11134207-8224u-mhybt9z2olc68a",
"id-11134207-8224q-mhybt9z2pzwmeb",
"id-11134207-82251-mhybt9yz0jygdb",
"id-11134207-8224p-mhybt9z2st1i05",
"id-11134207-8224o-mhybt9z2u7lyb7",
"id-11134207-8224z-mhybt9z2x0qu17",
"id-11134207-8224o-mhybt9z2yfbae2",
"id-11134207-8224w-mhybt9yz1yiw98"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765112676,
"sold": 1,
"historical_sold": 1,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Alexandre Christie",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 300000000000,
"price_min": 300000000000,
"price_max": 300000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110107/mms/id-11110107-6venb-mhytgd9771tv72.16000041765113068.mp4",
"thumb_url": "id-11110107-6venb-mhytgd9771tv72_cover",
"duration": 27,
"version": 2,
"vid": "id-11110107-6venb-mhytgd9771tv72",
"formats": [
{
"format": 1600004,
"defn": "V360P",
"profile": "MP4",
"path": "api/v4/11110107/mms/id-11110107-6venb-mhytgd9771tv72.16000041765113068.mp4",
"url": "https://down-ws-sg.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venb-mhytgd9771tv72.16000041765113068.mp4",
"width": 632,
"height": 360
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110107/mms/id-11110107-6venb-mhytgd9771tv72.default.mp4",
"width": 636,
"height": 362
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Hitam",
"options": [
"Hitam",
"Merah",
"Kuning",
"Hijau",
"Hitam Silver"
],
"images": [
"id-11134207-8224z-mhybt9yz3d3cd6",
"id-11134207-82250-mhybt9yz4rnsc3",
"id-11134207-8224w-mhybt9yz7kso99",
"id-11134207-8224o-mhybt9yz668842",
"id-11134207-8224s-mhybt9yz8zd4be"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 300000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 297235187706,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 300000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Hoki Arloji",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49502746430,
"shopid": 1513565931,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhybt9z2ztvq7d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,2018619,298463379,1059152,700005489,822059908662278,825465608499232,1718093079,1119699,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":141,\"model_id\":297235187706,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhybt9z2ztvq7d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,2018619,298463379,1059152,700005489,822059908662278,825465608499232,1718093079,1119699,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":141,\"model_id\":297235187706,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49502746430",
"debug_info": null
},
{
"item_basic": {
"itemid": 50752680062,
"shopid": 1625383942,
"name": "[COD] VIVO GT2 Jam tangan pintar - GPS NFC Layar 2.3 inci Panggilan Bluetooth Pemantauan detak jantung dua Baterai Tahan lama Jam tangan pintar bisnis universal pria dan wanita",
"label_ids": [
1718087960,
1428713,
298463379,
844931064601283,
844931086908638,
1049116,
700005516,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699,
2018619,
1400285055,
298933384,
1015914,
700190087,
298468389,
1718088045
],
"image": "id-11134207-82250-mhwtnfqe172d72",
"images": [
"id-11134207-82250-mhwtnfqe172d72",
"id-11134207-82251-mhwtnfqe2lmted",
"id-11134207-8224q-mhwtnfqecflx8c",
"id-11134207-8224v-mhwtnfqe407906",
"id-11134207-8224w-mhwtnfqe5erp2f",
"id-11134207-8224o-mhwtnfqeb11h95",
"id-11134207-82252-mhwtnfqe6tc552",
"id-11134207-8224u-mhwtnfqe87wl05",
"id-11134207-8224z-mhwtnfqe9mh12f"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1765000716,
"sold": 14,
"historical_sold": 14,
"liked": false,
"liked_count": 20,
"view_count": null,
"catid": 100013,
"brand": "Vivo",
"cmt_count": 5,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 20900000000,
"price_min": 20900000000,
"price_max": 20900000000,
"price_min_before_discount": 44000000000,
"price_max_before_discount": 44000000000,
"hidden_price_display": null,
"price_before_discount": 44000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-53%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vena-mhwydqhrint209.16000031765000289.mp4",
"thumb_url": "id-11110105-6vena-mhwydqhrint209_cover",
"duration": 37,
"version": 2,
"vid": "id-11110105-6vena-mhwydqhrint209",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vena-mhwydqhrint209.16000031765000289.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhwydqhrint209.16000031765000289.mp4",
"width": 854,
"height": 480
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhwydqhrint209.default.mp4",
"width": 854,
"height": 480
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 4,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 388325991264720,
"bundle_deal_label": "Pilih 2, diskon 1%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sidoarjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 201,
"promotion_id": 825875520618496,
"price": 17900100000,
"strikethrough_price": 44000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1304797647224832,
"discount_text": "-53%",
"model_id": 440258305566,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1304797647224832,
"voucher_code": "FWJF87643",
"voucher_discount": 2999900000,
"time_info": {
"start_time": 1765003200,
"end_time": 1770967080,
"valid_duration": null
},
"groups": [],
"min_spend": 19999900000
},
"recommended_platform_voucher_info": null,
"original_price": 44000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 2,
"exclusive_price_result": null,
"deep_discount_skin": {
"skin_id": 75157,
"start_time": 1768323600,
"end_time": 1768409999,
"skin_data": {
"promo_label": {
"promotion_price": "Rp 179.001",
"hidden_promotion_price": "Rp 1?9.001",
"text": null,
"start_time": 1768323600,
"end_time": 1768409999
}
}
}
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 14,
"rounded_local_monthly_sold_count": 14,
"local_monthly_sold_count_text": "14",
"rounded_display_sold_count": 14,
"display_sold_count_text": "14"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Casual smart watch store 2",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50752680062,
"shopid": 1625383942,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhwtnfqe172d72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,298463379,844931064601283,844931086908638,1049116,700005516,822059908662278,825465608499232,825465608497696,1718093079,1119699,2018619,1400285055,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":288,\"model_id\":440258305566,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhwtnfqe172d72\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1718087960,1428713,298463379,844931064601283,844931086908638,1049116,700005516,822059908662278,825465608499232,825465608497696,1718093079,1119699,2018619,1400285055,298933384,1015914,700190087,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":288,\"model_id\":440258305566,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50752680062",
"debug_info": null
},
{
"item_basic": {
"itemid": 47052619037,
"shopid": 1679195087,
"name": "Go Tech - Jam Tangan Anak Anti Air 4G Video Call 2 Camersa 360ยฐ Rotation B599 Smart Watch Kids Digital Smartwatch Kids GPS Waterproof Kids Smart Watch voice call gps dll GT",
"label_ids": [
844931064601283,
844931086908638,
1059152,
1049122,
822059908662278,
825465608499232,
825465608497696,
1119699,
1718093079,
298463379,
298933384,
1718087960,
1428713,
1015914,
700190087,
1718088045,
298468389
],
"image": "sg-11134201-82278-mhuovhsqnqit37",
"images": [
"sg-11134201-82278-mhuovhsqnqit37",
"sg-11134201-8225r-mhuovipaywow83",
"sg-11134201-8226k-mhuoviz2n56ob2",
"sg-11134201-8225c-mhuovjjv8zcxcd",
"sg-11134201-8225m-mhuovjsbpm9v53",
"sg-11134201-8226f-mhuovk04g6bl4e",
"sg-11134201-8225x-mhuovkofo6wz74",
"sg-11134201-8226l-mhuovkvz2zno38",
"sg-11134201-8227x-mhuovlmxe7t0a7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764863229,
"sold": 1,
"historical_sold": 1,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 1,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 21849000000,
"price_min": 21849000000,
"price_max": 21849000000,
"price_min_before_discount": 70000000000,
"price_max_before_discount": 70000000000,
"hidden_price_display": null,
"price_before_discount": 70000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-69%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"blue-Flip",
"black-Flip",
"green-Flip",
"purple-Flip",
"redblue-Flip",
"redblue-Flip."
],
"images": [
"id-11134207-8224z-mhvlr4esda10ac",
"id-11134207-8224o-mhvm9wh47jsxb4",
"id-11134207-8224v-mhvm9wh0kwzm11",
"id-11134207-8224q-mhvm9wh0mbk274",
"id-11134207-8224v-mhvm9wh0nq4i5b",
"id-11134207-8224o-mhvm9wh0p4oyd9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 201,
"promotion_id": 825875520618496,
"price": 21349000000,
"strikethrough_price": 70000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1304118194880512,
"discount_text": "-69%",
"model_id": 400251245341,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1304118194880512,
"voucher_code": "V6T5A01",
"voucher_discount": 500000000,
"time_info": {
"start_time": 1764922740,
"end_time": 1772270340,
"valid_duration": null
},
"groups": [],
"min_spend": 18000000000
},
"recommended_platform_voucher_info": null,
"original_price": 70000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 2,
"exclusive_price_result": null,
"deep_discount_skin": {
"skin_id": 75157,
"start_time": 1768323600,
"end_time": 1768409999,
"skin_data": {
"promo_label": {
"promotion_price": "Rp 213.490",
"hidden_promotion_price": "Rp 2?3.490",
"text": null,
"start_time": 1768323600,
"end_time": 1768409999
}
}
}
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Sahabat Digital Anak ",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47052619037,
"shopid": 1679195087,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82278-mhuovhsqnqit37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,298463379,298933384,1718087960,1428713,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":846,\"model_id\":400251245341,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134201-82278-mhuovhsqnqit37\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059152,1049122,822059908662278,825465608499232,825465608497696,1119699,1718093079,298463379,298933384,1718087960,1428713,1015914,700190087,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":846,\"model_id\":400251245341,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47052619037",
"debug_info": null
},
{
"item_basic": {
"itemid": 56202549908,
"shopid": 59414059,
"name": "[NEW PRODUCT] OLIKE Smartwatch For Runner FG02 Jam Tangan Pria Built-in GPS & Beidou, Sport & Strava Activity Sync, Layar AMOLED 1.43\", 3ATM Water Resistance",
"label_ids": [
298938357,
700185027,
700195012,
2153644,
700185028,
700195016,
700195013,
1400095067,
1400285005,
1000109,
1002164,
1000167,
1013217,
1668726,
1011692,
1016119,
1012865,
2018618,
2068629,
844931086908638,
844931064601283,
298463379,
1718093079,
1119699,
700005490,
1049120,
822059908662278,
825465608499232,
825465608497696,
840990690654214,
840955085144628,
2213652,
1428713,
1718087960,
1015914,
700190087,
1400285055,
825465608492064,
825465608493600,
298468389,
2098628,
1718088045,
2098629,
298938368
],
"image": "id-11134207-82250-mizcq36ok6wx56",
"images": [
"id-11134207-82250-mizcq36ok6wx56",
"id-11134207-8224y-mjgiyh8e6djb1e",
"id-11134207-8224p-mhtwte74jj7kdc",
"id-11134207-8224y-mhtwte74nqww29",
"id-11134207-8224u-mhtwte74rym8ce",
"id-11134207-8224r-mhtwte74i4n48a",
"id-11134207-8224y-mhtwte74gq2o73",
"id-11134207-8224x-mhtwte74qk1sdd",
"id-11134207-8224v-mhtwte7ccgsje1"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764817445,
"sold": 5,
"historical_sold": 5,
"liked": false,
"liked_count": 36,
"view_count": null,
"catid": 100013,
"brand": "Olike",
"cmt_count": 4,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 79900000000,
"price_min": 79900000000,
"price_max": 79900000000,
"price_min_before_discount": 169900000000,
"price_max_before_discount": 169900000000,
"hidden_price_display": null,
"price_before_discount": 169900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-53%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdv4-mjdz83nwmepsc6.16000081768210029.mp4",
"thumb_url": "id-11110105-6vdv4-mjdz83nwmepsc6_cover",
"duration": 49,
"version": 2,
"vid": "id-11110105-6vdv4-mjdz83nwmepsc6",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdv4-mjdz83nwmepsc6.16000081768210029.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mjdz83nwmepsc6.16000081768210029.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdv4-mjdz83nwmepsc6.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Color",
"options": [
"Black"
],
"images": [
"id-11134207-8224o-mhtx6oh0jv2bbf"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
4,
0,
0,
0,
0,
4
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-82250-mizcq36ok6wx56",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 414826233086441,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp266RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 820232957001728,
"price": 79900000000,
"strikethrough_price": 169900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-53%",
"model_id": 445247562751,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 169900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 0,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 5,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 5,
"display_sold_count_text": "5"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp266RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Olike Official Shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56202549908,
"shopid": 59414059,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mizcq36ok6wx56\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,700185027,700195012,2153644,700185028,700195016,700195013,1400095067,1400285005,1000109,1002164,1000167,1013217,1668726,1011692,1016119,1012865,2018618,2068629,844931086908638,844931064601283,298463379,1718093079,1119699,700005490,1049120,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,2213652,1428713,1718087960,1015914,700190087,1400285055,825465608492064,825465608493600,298468389,2098628,1718088045,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":503,\"model_id\":445247562751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mizcq36ok6wx56\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,700185027,700195012,2153644,700185028,700195016,700195013,1400095067,1400285005,1000109,1002164,1000167,1013217,1668726,1011692,1016119,1012865,2018618,2068629,844931086908638,844931064601283,298463379,1718093079,1119699,700005490,1049120,822059908662278,825465608499232,825465608497696,840990690654214,840955085144628,2213652,1428713,1718087960,1015914,700190087,1400285055,825465608492064,825465608493600,298468389,2098628,1718088045,2098629,298938368],\"matched_keywords\":[\"\"],\"merge_rank\":503,\"model_id\":445247562751,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56202549908",
"debug_info": null
},
{
"item_basic": {
"itemid": 47602577756,
"shopid": 15078171,
"name": "Apple Watch Serie 10 42mm Rosegold Ibox",
"label_ids": [
2018619,
844931064601283,
844931086908638,
1059156,
700005499,
1718093079,
822059908662278,
825465608492064,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
1119699,
298933384,
2098621
],
"image": "id-11134207-8224z-mhttkgms4mpuf1",
"images": [
"id-11134207-8224z-mhttkgms4mpuf1",
"id-11134207-8224x-mhttkgmthsli01",
"id-11134207-8224v-mhttkgmnpwjsc4",
"id-11134207-82250-mhttkgmnohzcb4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764810774,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 3,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 550000000000,
"price_min": 550000000000,
"price_max": 550000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 550000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 440247115932,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 550000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Keyshops.id",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 47602577756,
"shopid": 15078171,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhttkgms4mpuf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1059156,700005499,1718093079,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,1119699,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":680,\"model_id\":440247115932,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhttkgms4mpuf1\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,844931086908638,1059156,700005499,1718093079,822059908662278,825465608492064,825465608493600,825465608494624,825465608499232,825465608497696,1119699,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":680,\"model_id\":440247115932,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_47602577756",
"debug_info": null
},
{
"item_basic": {
"itemid": 54352501028,
"shopid": 308000918,
"name": "Apple Watch 8",
"label_ids": [
700185071,
700190019,
844931064601283,
298463379,
1718093079,
1119699,
1400285055,
1049155,
1059156,
2048660,
2048661,
825465608493600,
825465608494624,
822059908662278,
825465608499232,
825465608497696,
700765096,
1718088045,
298468389
],
"image": "id-11134207-8224p-miqbuw7vhmo1f7",
"images": [
"id-11134207-8224p-miqbuw7vhmo1f7",
"id-11134207-8224u-miqbuw7vke81f8",
"id-11134207-8224t-miqbuw7zwb9ga9",
"id-11134207-82250-miqbuw7xmubs7a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764736108,
"sold": 1,
"historical_sold": 1,
"liked": false,
"liked_count": 7,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 1,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 318000000000,
"price_min": 318000000000,
"price_max": 318000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sukoharjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 318000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 325242367101,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 318000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 1,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 1,
"display_sold_count_text": "1"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Mr. O Phone",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54352501028,
"shopid": 308000918,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-miqbuw7vhmo1f7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700185071,700190019,844931064601283,298463379,1718093079,1119699,1400285055,1049155,1059156,2048660,2048661,825465608493600,825465608494624,822059908662278,825465608499232,825465608497696,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":417,\"model_id\":325242367101,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-miqbuw7vhmo1f7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700185071,700190019,844931064601283,298463379,1718093079,1119699,1400285055,1049155,1059156,2048660,2048661,825465608493600,825465608494624,822059908662278,825465608499232,825465608497696,700765096,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":417,\"model_id\":325242367101,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54352501028",
"debug_info": null
},
{
"item_basic": {
"itemid": 50752453138,
"shopid": 15574256,
"name": "Strap Original Apple Watch Nike Sport Band 45mm",
"label_ids": [
844931064601283,
1049142,
1400000598,
1718093079,
822059908662278,
825465608499232,
1119699,
2098621
],
"image": "id-11134207-8224t-mhrgs55amqyo9a",
"images": [
"id-11134207-8224t-mhrgs55amqyo9a",
"id-11134207-82252-mhrgs557cr9k3f",
"id-11134207-82250-mhrgs550hjb958",
"id-11134207-8224w-mhrgs55ao5j4f5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764668139,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 50000000000,
"price_min": 50000000000,
"price_max": 50000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Rokan Hulu",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 50000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 355238095222,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 50000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "PreloveHype7",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50752453138,
"shopid": 15574256,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhrgs55amqyo9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049142,1400000598,1718093079,822059908662278,825465608499232,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":221,\"model_id\":355238095222,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhrgs55amqyo9a\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049142,1400000598,1718093079,822059908662278,825465608499232,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":221,\"model_id\":355238095222,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50752453138",
"debug_info": null
},
{
"item_basic": {
"itemid": 45402442496,
"shopid": 408934982,
"name": "Gps Motorbike VG102 Concox Original - Anti Maling",
"label_ids": [
1059152,
1049122,
1718093079,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
2098621
],
"image": "id-11134207-8224o-mhr28rhz7ll289",
"images": [
"id-11134207-8224o-mhr28rhz7ll289",
"id-11134207-8224o-mhr28rhzaepyc4",
"id-11134207-82251-mhr28rhzbtae8a"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764644009,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 0,
"cb_option": 0,
"item_status": "normal",
"price": 31500000000,
"price_min": 31500000000,
"price_max": 31500000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "MOTOR",
"options": [
"PCX",
"VARIO",
"SCOOPY",
"FAZZIO",
"MIO",
"BEAT"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Utara",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 31500000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 360235798043,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 31500000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Tracksolid Official",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45402442496,
"shopid": 408934982,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhr28rhz7ll289\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":550,\"model_id\":360235798043,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224o-mhr28rhz7ll289\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1059152,1049122,1718093079,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":550,\"model_id\":360235798043,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45402442496",
"debug_info": null
},
{
"item_basic": {
"itemid": 50452393575,
"shopid": 306592086,
"name": "KIRO iPhone Smart Watch-support Whatsapp Reply-Watch Series 11 Smartwatch OLED 2.1\" Display for sport Smartwatch-Bluetooth 6.0 call-Dynamic Island-Tahan Air IP68 -Kompatibel Android iOS",
"label_ids": [
298938357,
2018619,
2068629,
1428713,
1718087960,
844931064601283,
844931086908638,
298463379,
1059152,
1059154,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
1718093079,
1015914,
700190087,
1400285055,
2098628,
1718088045,
298938368,
298468389,
2098629
],
"image": "id-11134207-8224q-mhpzedcfn9qccf",
"images": [
"id-11134207-8224q-mhpzedcfn9qccf",
"id-11134207-8224q-mhpzedc9fxfkb9",
"id-11134207-8224p-mhpzedc9d4aoaa",
"id-11134207-8224t-mhpzedc9iqkg1a",
"id-11134207-8224w-mhpzedc9k54w7d",
"id-11134207-8224q-mhpzedc9eiv477",
"id-11134207-82252-mhpzedc9ocu806",
"id-11134207-8224z-mhpzedc9preo7d",
"id-11134207-8224y-mhpzedc9ljpc5d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764579574,
"sold": 57,
"historical_sold": 69,
"liked": false,
"liked_count": 60,
"view_count": null,
"catid": 100013,
"brand": "KIRO",
"cmt_count": 26,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 32800000000,
"price_min": 32800000000,
"price_max": 32800000000,
"price_min_before_discount": 69900000000,
"price_max_before_discount": 69900000000,
"hidden_price_display": null,
"price_before_discount": 69900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-53%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvh-mife5mdtxfyf7b.16000081766116431.mp4",
"thumb_url": "id-11110105-6vdvh-mife5mdtxfyf7b_cover",
"duration": 26,
"version": 2,
"vid": "id-11110105-6vdvh-mife5mdtxfyf7b",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvh-mife5mdtxfyf7b.16000081766116431.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvh-mife5mdtxfyf7b.16000081766116431.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvh-mife5mdtxfyf7b.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Perak",
"Pink"
],
"images": [
"id-11134207-8224s-mgnupjiz9wjx99",
"id-11134207-8224w-mgnupjizbb4d12",
"id-11134207-8224p-mgnvzdsq5tse8e"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.846153846153846,
"rating_count": [
26,
1,
0,
0,
0,
25
],
"rcount_with_context": 6,
"rcount_with_image": 3
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp109RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228201603547136,
"price": 32800000000,
"strikethrough_price": 69900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-53%",
"model_id": 325232132006,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 69900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 69,
"rounded_local_monthly_sold_count": 57,
"local_monthly_sold_count_text": "57",
"rounded_display_sold_count": 69,
"display_sold_count_text": "69"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp109RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "JJStore2",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50452393575,
"shopid": 306592086,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhpzedcfn9qccf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2018619,2068629,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1015914,700190087,1400285055,2098628,1718088045,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":637,\"model_id\":325232132006,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhpzedcfn9qccf\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[298938357,2018619,2068629,1428713,1718087960,844931064601283,844931086908638,298463379,1059152,1059154,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,1718093079,1015914,700190087,1400285055,2098628,1718088045,298938368,298468389,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":637,\"model_id\":325232132006,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50452393575",
"debug_info": null
},
{
"item_basic": {
"itemid": 48802415228,
"shopid": 1659072746,
"name": "Cityjungle Smartwatch GPSAir | GPS Frekuensi Ganda Multi Sistem | Support Strava | Layar AMOLED 1,32โ HD | Pemantauan Kesehatan Lengkap | Tahan Air 5ATM | Baterai 360mAh Tahan Lama | 170+ Mode Olahraga | Jam Tangan Wanita & Pria",
"label_ids": [
2018618,
298938357,
298888358,
1428713,
1718087960,
844931086908638,
844931064601283,
298463379,
700005490,
1049120,
1718093079,
822059908662278,
825465608497696,
825465608494624,
825465608499232,
840990690654214,
840955085144628,
2213652,
1015914,
700190087,
298933384,
2048661,
825465608493600,
2048660,
700765096,
1400285055,
700810055,
298938368,
2098629,
2098628,
298468389,
1718088045
],
"image": "id-11134207-8224v-mhpmfo7n9jwj54",
"images": [
"id-11134207-8224v-mhpmfo7n9jwj54",
"id-11134207-8224p-mhpofei3qo7acc",
"id-11134207-82252-mhpofehzpzphae",
"id-11134207-8224o-mhpofehzls0582",
"id-11134207-8224p-mhpofehzre9x33",
"id-11134207-82250-mhpofehziyv988",
"id-11134207-8224p-mhpofehzn6klc6",
"id-11134207-8224t-mhpofehzol51ac",
"id-11134207-8224p-mhpofehzkdfpd4"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764569843,
"sold": 95,
"historical_sold": 99,
"liked": false,
"liked_count": 334,
"view_count": null,
"catid": 100013,
"brand": "CITYJUNGLE",
"cmt_count": 53,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 79500000000,
"price_min": 79500000000,
"price_max": 79500000000,
"price_min_before_discount": 279000000000,
"price_max_before_discount": 279000000000,
"hidden_price_display": null,
"price_before_discount": 279000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-72%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vena-mhptkeerpj438a.16000081764568479.mp4",
"thumb_url": "id-11110105-6vena-mhptkeerpj438a_cover",
"duration": 46,
"version": 2,
"vid": "id-11110105-6vena-mhptkeerpj438a",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vena-mhptkeerpj438a.16000081764568479.mp4",
"url": "https://down-cvs-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhptkeerpj438a.16000081764568479.mp4",
"width": 1278,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vena-mhptkeerpj438a.default.mp4",
"width": 958,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam",
"Emas mawar",
"Hitam+Nylon Magnetik",
"Emasr+Nylon Magneti"
],
"images": [
"id-11134207-82252-mhpmfo7qqkg12b",
"id-11134207-8224p-mhpu8lwcaqdg3c",
"id-11134207-8224x-mj9ngtgo5fyd82",
"id-11134207-8224r-mhpu8lwclywyce"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 4.90566037735849,
"rating_count": [
53,
0,
0,
1,
3,
49
],
"rcount_with_context": 11,
"rcount_with_image": 9
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "id-11134207-8224v-mhpmfo7n9jwj54",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 399316208595153,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp112RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228244620324865,
"price": 67500000000,
"strikethrough_price": 279000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1299792132456448,
"discount_text": "-72%",
"model_id": 355231166277,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1299792132456448,
"voucher_code": "CITYQD120",
"voucher_discount": 12000000000,
"time_info": {
"start_time": 1764406560,
"end_time": 1772470740,
"valid_duration": null
},
"groups": [],
"min_spend": 50000000000
},
"recommended_platform_voucher_info": null,
"original_price": 279000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 99,
"rounded_local_monthly_sold_count": 95,
"local_monthly_sold_count_text": "95",
"rounded_display_sold_count": 99,
"display_sold_count_text": "99"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp112RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "CITYJUNGLE Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48802415228,
"shopid": 1659072746,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mhpmfo7n9jwj54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298938357,298888358,1428713,1718087960,844931086908638,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,840990690654214,840955085144628,2213652,1015914,700190087,298933384,2048661,825465608493600,2048660,700765096,1400285055,700810055,298938368,2098629,2098628,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":334,\"model_id\":355231166277,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mhpmfo7n9jwj54\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298938357,298888358,1428713,1718087960,844931086908638,844931064601283,298463379,700005490,1049120,1718093079,822059908662278,825465608497696,825465608494624,825465608499232,840990690654214,840955085144628,2213652,1015914,700190087,298933384,2048661,825465608493600,2048660,700765096,1400285055,700810055,298938368,2098629,2098628,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":334,\"model_id\":355231166277,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48802415228",
"debug_info": null
},
{
"item_basic": {
"itemid": 52202346427,
"shopid": 75057008,
"name": "apple watch 7+GPS 41mm starlight",
"label_ids": [
844931064601283,
1049116,
1049117,
822059908662278,
825465608499232,
825465608497696,
825465608494624,
1718093079,
1119699,
298933384
],
"image": "id-11134207-8224p-mhodwijwx5vpc6",
"images": [
"id-11134207-8224p-mhodwijwx5vpc6",
"id-11134207-8224u-mhodwijo9bswa1",
"id-11134207-8224v-mhodwijqadc341",
"id-11134207-8224v-mhq8ko1kefwgcd",
"id-11134207-8224o-mhzgivcaoqv4bb",
"id-11134207-8224w-mimxkqs66juu0c"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764481957,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Apple Watch",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 200000000000,
"price_min": 200000000000,
"price_max": 200000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 200000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 272214437036,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 200000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "arizal182",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "ogaoAQqlAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4yNDMuMTU5LjI0OF97YjExYmEzYWY0ODU1N2Y4ZGE0YjY0MmVjYjE0ZmQ2MDA6MDIwMDAwYWIwYmI5YTU0MTowMTAwMDFhYzU2MjJiYzc1fV9zZWFyY2gtYmZmc2VhcmNoLWxpdmUtaWQuMjYwMTEyMTU0ODQ5ODM3OTg2LjI2MDExMjE2MzIyNzQ2OTg2NA==",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 52202346427,
"shopid": 75057008,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhodwijwx5vpc6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":162,\"model_id\":272214437036,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhodwijwx5vpc6\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1049116,1049117,822059908662278,825465608499232,825465608497696,825465608494624,1718093079,1119699,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":162,\"model_id\":272214437036,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_52202346427",
"debug_info": null
},
{
"item_basic": {
"itemid": 43026880197,
"shopid": 4981391,
"name": "Xiaomi Mi Band 7 - black",
"label_ids": [
2018619,
844931064601283,
298463379,
1059150,
700005498,
822059908662278,
825465608497696,
2048660,
2048661,
825465608493600,
825465608494624,
825465608499232,
1718093079,
1119699,
700765096,
2098621,
298468389,
1718088045
],
"image": "id-11134207-8224s-mhndeh5yyy9wfa",
"images": [
"id-11134207-8224s-mhndeh5yyy9wfa",
"id-11134207-8224v-mhndeh5uelty40",
"id-11134207-8224x-mhndeh6i7g8wa7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764420282,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Xiaomi",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 34950000000,
"price_min": 34950000000,
"price_max": 34950000000,
"price_min_before_discount": 49900000000,
"price_max_before_discount": 49900000000,
"hidden_price_display": null,
"price_before_discount": 49900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-30%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Medan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 826865225352192,
"price": 34950000000,
"strikethrough_price": 49900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-30%",
"model_id": 302213295403,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 49900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "jvcell",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43026880197,
"shopid": 4981391,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhndeh5yyy9wfa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059150,700005498,822059908662278,825465608497696,2048660,2048661,825465608493600,825465608494624,825465608499232,1718093079,1119699,700765096,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":588,\"model_id\":302213295403,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhndeh5yyy9wfa\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1059150,700005498,822059908662278,825465608497696,2048660,2048661,825465608493600,825465608494624,825465608499232,1718093079,1119699,700765096,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":588,\"model_id\":302213295403,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43026880197",
"debug_info": null
},
{
"item_basic": {
"itemid": 56002314080,
"shopid": 1659072746,
"name": "Cityjungle NeoGPS (DM56) Smartwatch GPS Frekuensi Ganda Layar Sentuh AMOLED 1.43\" Tahan Air 5ATM Kompas Bluetooth Panggilan Altimeter Tekanan Udara Pelacakan Olahraga Real-Time",
"label_ids": [
2018618,
298938357,
298888358,
844931086908638,
844931064601283,
700005490,
1049120,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
1718093079,
1718087960,
1428713,
298463379,
2213652,
1015914,
700190087,
840990690654214,
840955085144628,
298933384,
825465608493600,
2048660,
2048661,
700765096,
1400285055,
700810055,
2098629,
2098628,
298468389,
298938368,
1718088045
],
"image": "id-11134207-8224s-mhn51chpn285a9",
"images": [
"id-11134207-8224s-mhn51chpn285a9",
"id-11134207-8224r-mhn51chpogsl0f",
"id-11134207-8224p-mhn51chppvd1f0",
"id-11134207-8224o-mhn51chpr9xh48",
"id-11134207-8224u-mhn51chpsohx65",
"id-11134207-8224w-mhn51chpu32da8",
"id-11134207-8224q-mhn51chpww794b",
"id-11134207-8224y-mhihoqoqlzb4fe",
"id-11134207-8224q-mhn51chpvhmtd5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764408783,
"sold": 1,
"historical_sold": 2,
"liked": false,
"liked_count": 28,
"view_count": null,
"catid": 100013,
"brand": "CITYJUNGLE",
"cmt_count": 2,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 72500000000,
"price_min": 72500000000,
"price_max": 72500000000,
"price_min_before_discount": 240000000000,
"price_max_before_discount": 240000000000,
"hidden_price_display": null,
"price_before_discount": 240000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-70%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven7-mhpv6uhs07wjbc.16000081764571234.mp4",
"thumb_url": "id-11110105-6ven7-mhpv6uhs07wjbc_cover",
"duration": 37,
"version": 2,
"vid": "id-11110105-6ven7-mhpv6uhs07wjbc",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven7-mhpv6uhs07wjbc.16000081764571234.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mhpv6uhs07wjbc.16000081764571234.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mhpv6uhs07wjbc.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam-NeoGPS(DM56)",
"Perak-NeoGPS(DM56)",
"Hitam-GPS2(B78)",
"Merah-GPS2(B78)"
],
"images": [
"id-11134207-8224s-mhn51chpn285a9",
"id-11134207-82251-mhn51chplnnp65",
"id-11134207-8224z-mhn33n00xg5c61",
"id-11134207-82250-mhn51chls003bd"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
2,
0,
0,
0,
0,
2
],
"rcount_with_context": 1,
"rcount_with_image": 1
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 400303711338588,
"add_on_deal_label": "Kombo Hemat",
"sub_type": 0,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp99RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228244620324865,
"price": 59500000000,
"strikethrough_price": 240000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1326121832955904,
"discount_text": "-70%",
"model_id": 425224807243,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1326121832955904,
"voucher_code": "CITY130KK",
"voucher_discount": 13000000000,
"time_info": {
"start_time": 1767545400,
"end_time": 1775581140,
"valid_duration": null
},
"groups": [],
"min_spend": 0
},
"recommended_platform_voucher_info": null,
"original_price": 240000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp99RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "CITYJUNGLE Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56002314080,
"shopid": 1659072746,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhn51chpn285a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298938357,298888358,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1718087960,1428713,298463379,2213652,1015914,700190087,840990690654214,840955085144628,298933384,825465608493600,2048660,2048661,700765096,1400285055,700810055,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":335,\"model_id\":425224807243,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhn51chpn285a9\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298938357,298888358,844931086908638,844931064601283,700005490,1049120,822059908662278,825465608494624,825465608499232,825465608497696,1718093079,1718087960,1428713,298463379,2213652,1015914,700190087,840990690654214,840955085144628,298933384,825465608493600,2048660,2048661,700765096,1400285055,700810055,2098629,2098628,298468389,298938368,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":335,\"model_id\":425224807243,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56002314080",
"debug_info": null
},
{
"item_basic": {
"itemid": 48202337921,
"shopid": 1659072746,
"name": "Cityjungle B78 Smartwatch GPS | Tahan Air 5ATM,Cocok untuk Renang & Aktivitas Outdoor | Layar AMOLED 1.43โ Full Touch | Kompas, Altimeter & Barometer | 170+ Mode Olahraga Outdoor | Detak Jantung & Oksigen | Panggilan Bluetooth & Notifikasi",
"label_ids": [
2018618,
298888358,
298938357,
844931064601283,
844931086908638,
1718093079,
1049120,
700005490,
822059908662278,
825465608499232,
825465608497696,
825465608494624,
1718087960,
1428713,
298463379,
2213652,
1015914,
700190087,
840955085144628,
840990690654214,
825465608493600,
2048661,
2048660,
700765096,
298933384,
700810055,
1400285055,
1718088045,
298468389,
2098628,
298938368,
2098629
],
"image": "id-11134207-8224z-mhn33n00xg5c61",
"images": [
"id-11134207-8224z-mhn33n00xg5c61",
"id-11134207-8224o-mhn33n00yups73",
"id-11134207-8224o-mhn33n0109a8ca",
"id-11134207-8224r-mhn33n011nuod9",
"id-11134207-8224o-mhn33n0132f44b",
"id-11134207-8224r-mhn33n014gzk4b",
"id-11134207-8224x-mhn33n018oow95",
"id-11134207-82251-mhn33n017a4gd6",
"id-11134207-8224p-mhn33n015vk0b0"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764406215,
"sold": 29,
"historical_sold": 32,
"liked": false,
"liked_count": 189,
"view_count": null,
"catid": 100013,
"brand": "CITYJUNGLE",
"cmt_count": 24,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 72500000000,
"price_min": 72500000000,
"price_max": 72500000000,
"price_min_before_discount": 240000000000,
"price_max_before_discount": 240000000000,
"hidden_price_display": null,
"price_before_discount": 240000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-70%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven2-mhpupcz5ahhief.16000081764570404.mp4",
"thumb_url": "id-11110105-6ven2-mhpupcz5ahhief_cover",
"duration": 59,
"version": 2,
"vid": "id-11110105-6ven2-mhpupcz5ahhief",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven2-mhpupcz5ahhief.16000081764570404.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mhpupcz5ahhief.16000081764570404.mp4",
"width": 720,
"height": 1280
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven2-mhpupcz5ahhief.default.mp4",
"width": 540,
"height": 960
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"Hitam-GPS2(B78)",
"Merah-GPS2(B78)",
"Hitam-NeoGPS(DM56)",
"Perak-NeoGPS(DM56)"
],
"images": [
"id-11134207-8224z-mhn33n00xg5c61",
"id-11134207-82250-mhn51chls003bd",
"id-11134207-82250-mhn51chpk9396f",
"id-11134207-82251-mhn51chplnnp65"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
24,
0,
0,
0,
0,
24
],
"rcount_with_context": 4,
"rcount_with_image": 6
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 400303711338588,
"add_on_deal_label": "Kombo Hemat",
"sub_type": 0,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": true,
"spl_installment_tenure": 6,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp95RB X 6",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 312,
"promotion_id": 228244620324865,
"price": 57500000000,
"strikethrough_price": 240000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1313592406196224,
"discount_text": "-70%",
"model_id": 420224600672,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1313592406196224,
"voucher_code": "CITY150GP",
"voucher_discount": 15000000000,
"time_info": {
"start_time": 1766051640,
"end_time": 1774112340,
"valid_duration": null
},
"groups": [],
"min_spend": 0
},
"recommended_platform_voucher_info": null,
"original_price": 240000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 4,
"exclusive_price_result": null,
"deep_discount_skin": null
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 32,
"rounded_local_monthly_sold_count": 29,
"local_monthly_sold_count_text": "29",
"rounded_display_sold_count": 32,
"display_sold_count_text": "32"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp95RB x 6"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "CITYJUNGLE Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48202337921,
"shopid": 1659072746,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhn33n00xg5c61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298888358,298938357,844931064601283,844931086908638,1718093079,1049120,700005490,822059908662278,825465608499232,825465608497696,825465608494624,1718087960,1428713,298463379,2213652,1015914,700190087,840955085144628,840990690654214,825465608493600,2048661,2048660,700765096,298933384,700810055,1400285055,1718088045,298468389,2098628,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":333,\"model_id\":420224600672,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhn33n00xg5c61\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":true,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,298888358,298938357,844931064601283,844931086908638,1718093079,1049120,700005490,822059908662278,825465608499232,825465608497696,825465608494624,1718087960,1428713,298463379,2213652,1015914,700190087,840955085144628,840990690654214,825465608493600,2048661,2048660,700765096,298933384,700810055,1400285055,1718088045,298468389,2098628,298938368,2098629],\"matched_keywords\":[\"\"],\"merge_rank\":333,\"model_id\":420224600672,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48202337921",
"debug_info": null
},
{
"item_basic": {
"itemid": 53852146635,
"shopid": 1673477956,
"name": "Quickfit Strap Garmin Fenix 5s Tali Jam Gps Watch Band Quick Fit 20mm",
"label_ids": [
844931064601283,
700005486,
1049112,
822059908662278,
825465608499232,
2098621,
1718093079,
1428713,
1718087960,
298463379,
700700063,
298468389,
1718088045
],
"image": "id-11134201-8224v-mhj36nstdvyd19",
"images": [
"id-11134201-8224v-mhj36nstdvyd19",
"id-11134201-8224s-mhj36ptf2qyu8c",
"id-11134201-82250-mhj36shpbfgkc5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764160902,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 32200000000,
"price_min": 32200000000,
"price_max": 32200000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"1. Biru Muda",
"2.Hijau Stabilo",
"3. Biru Navy",
"4.Stone Abu Tua",
"5. Kuning",
"6. Ungu",
"7. Merah",
"8. Putih",
"9. Hitam",
"10. Orange",
"11. Hijau Mint"
],
"images": [
"id-11134201-8224v-mhj36nstdvyd19",
"id-11134201-8224v-mhj36nstdvyd19",
"id-11134201-8224v-mhj36nstdvyd19",
"id-11134201-8224v-mhj36nstdvyd19",
"id-11134201-8224v-mhj36nstdvyd19",
"id-11134201-8224v-mhj36nstdvyd19",
"id-11134201-8224v-mhj36nstdvyd19",
"id-11134201-8224v-mhj36nstdvyd19",
"id-11134201-8224v-mhj36nstdvyd19",
"id-11134201-8224v-mhj36nstdvyd19",
"id-11134201-8224v-mhj36nstdvyd19"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 31300000000,
"strikethrough_price": 32200000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1303337307750400,
"discount_text": null,
"model_id": 292203652141,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1303337307750400,
"voucher_code": "MIST17",
"voucher_discount": 900000000,
"time_info": {
"start_time": 1764829620,
"end_time": 1772263620,
"valid_duration": null
},
"groups": [],
"min_spend": 28000000000
},
"recommended_platform_voucher_info": null,
"original_price": 32200000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Elham Good",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53852146635,
"shopid": 1673477956,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mhj36nstdvyd19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005486,1049112,822059908662278,825465608499232,2098621,1718093079,1428713,1718087960,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":217,\"model_id\":292203652141,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224v-mhj36nstdvyd19\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,700005486,1049112,822059908662278,825465608499232,2098621,1718093079,1428713,1718087960,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":217,\"model_id\":292203652141,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53852146635",
"debug_info": null
},
{
"item_basic": {
"itemid": 53852141590,
"shopid": 1673477956,
"name": "Strap Tali Jam Gps Garmin Vivoactive HR Watch Band Murah",
"label_ids": [
700005486,
1049112,
822059908662278,
825465608499232,
844931064601283,
2098621,
1718093079,
1718087960,
1428713,
298463379,
700700063,
298468389,
1718088045
],
"image": "id-11134201-82251-mhj2w3r1uqrl64",
"images": [
"id-11134201-82251-mhj2w3r1uqrl64",
"id-11134201-8224v-mhj2w4spmlmu31",
"id-11134201-8224x-mhj2w61633t044"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764160415,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 33000000000,
"price_min": 33000000000,
"price_max": 33000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"1. Tosca",
"2. Hijau Mint",
"3.Hijau Stabilo",
"4.Biru Navy",
"5.Biru Elektrik",
"6. Hitam",
"7. Abu-abu",
"8. Putih",
"9. Orange"
],
"images": [
"id-11134201-82251-mhj2w3r1uqrl64",
"id-11134201-82251-mhj2w3r1uqrl64",
"id-11134201-82251-mhj2w3r1uqrl64",
"id-11134201-82251-mhj2w3r1uqrl64",
"id-11134201-82251-mhj2w3r1uqrl64",
"id-11134201-82251-mhj2w3r1uqrl64",
"id-11134201-82251-mhj2w3r1uqrl64",
"id-11134201-82251-mhj2w3r1uqrl64",
"id-11134201-82251-mhj2w3r1uqrl64"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 32100000000,
"strikethrough_price": 33000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1303337307750400,
"discount_text": null,
"model_id": 282203635028,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1303337307750400,
"voucher_code": "MIST17",
"voucher_discount": 900000000,
"time_info": {
"start_time": 1764829620,
"end_time": 1772263620,
"valid_duration": null
},
"groups": [],
"min_spend": 28000000000
},
"recommended_platform_voucher_info": null,
"original_price": 33000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Elham Good",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53852141590,
"shopid": 1673477956,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mhj2w3r1uqrl64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005486,1049112,822059908662278,825465608499232,844931064601283,2098621,1718093079,1718087960,1428713,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":218,\"model_id\":282203635028,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-82251-mhj2w3r1uqrl64\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[700005486,1049112,822059908662278,825465608499232,844931064601283,2098621,1718093079,1718087960,1428713,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":218,\"model_id\":282203635028,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53852141590",
"debug_info": null
},
{
"item_basic": {
"itemid": 48702136143,
"shopid": 1662024727,
"name": "Samsung Galaxy Watch8 40mm / Watch 8 40mm.",
"label_ids": [
844931064601283,
1059152,
700005487,
822059908662278,
825465608497696,
825465608499232,
1718093079
],
"image": "sg-11134275-82262-mhifhwbj3v9h09",
"images": [
"sg-11134275-82262-mhifhwbj3v9h09",
"sg-11134275-8224w-mhifhw2p11qc92",
"sg-11134275-82264-mhifhw643egw6f",
"sg-11134275-8226t-mhifhw16bpj660",
"sg-11134275-82289-mhifhw8kcphgdc"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764121669,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 851522000000,
"price_min": 851522000000,
"price_max": 851522000000,
"price_min_before_discount": 868900000000,
"price_max_before_discount": 868900000000,
"hidden_price_display": null,
"price_before_discount": 868900000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-2%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "warna",
"options": [
"Graphite",
"Silver"
],
"images": [
"sg-11134275-8226s-mhifhwis6h3694",
"sg-11134275-8227l-mhifhx0dhkoyc7"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Timur",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 795434419798016,
"price": 851322000000,
"strikethrough_price": 868900000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1293090296971264,
"discount_text": "-2%",
"model_id": 340205449565,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1293090296971264,
"voucher_code": "INDR2K",
"voucher_discount": 200000000,
"time_info": {
"start_time": 1763608080,
"end_time": 1771646880,
"valid_duration": null
},
"groups": [],
"min_spend": 10000000000
},
"recommended_platform_voucher_info": null,
"original_price": 868900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "indriaanishiinta",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48702136143,
"shopid": 1662024727,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-82262-mhifhwbj3v9h09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005487,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":643,\"model_id\":340205449565,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"sg-11134275-82262-mhifhwbj3v9h09\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1059152,700005487,822059908662278,825465608497696,825465608499232,1718093079],\"matched_keywords\":[\"\"],\"merge_rank\":643,\"model_id\":340205449565,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48702136143",
"debug_info": null
},
{
"item_basic": {
"itemid": 50152099010,
"shopid": 1631362272,
"name": "GPS Garmin 66s Bekas Murah Dengan Garansi 1 Bulan",
"label_ids": [
1400066568,
844931064601283,
700005490,
700005495,
1718093079,
822059908662278,
825465608497696,
2048660,
2048661,
825465608494624,
825465608499232,
1119699,
700765096,
298463379,
298933384,
2098621,
298468389,
1718088045
],
"image": "id-11134207-82251-mhhplf1nngugbc",
"images": [
"id-11134207-82251-mhhplf1nngugbc",
"id-11134207-82251-mhhplf1novew9a",
"id-11134207-8224y-mhhplf1nq9zc56"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764100841,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 650000000000,
"price_min": 650000000000,
"price_max": 650000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 650000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 325204759090,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 650000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Toko Afandi Survey DI",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50152099010,
"shopid": 1631362272,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhhplf1nngugbc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,700005495,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,700765096,298463379,298933384,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":259,\"model_id\":325204759090,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mhhplf1nngugbc\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,700005490,700005495,1718093079,822059908662278,825465608497696,2048660,2048661,825465608494624,825465608499232,1119699,700765096,298463379,298933384,2098621,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":259,\"model_id\":325204759090,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50152099010",
"debug_info": null
},
{
"item_basic": {
"itemid": 46402092797,
"shopid": 34558647,
"name": "Redmi Watch 2 Lite Mulus Fullset Bonus Hard Case",
"label_ids": [
844931064601283,
1718093079,
1119699,
2098621,
700005490,
700005495,
822059908662278,
825465608493600,
825465608499232,
825465608497696
],
"image": "id-11134207-8224z-mhhh94ze7g8w81",
"images": [
"id-11134207-8224z-mhhh94ze7g8w81"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764063584,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Redmi",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 35000000000,
"price_min": 35000000000,
"price_max": 35000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Tangerang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 35000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 430202361392,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 35000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "onlin_shop",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46402092797,
"shopid": 34558647,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhhh94ze7g8w81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,2098621,700005490,700005495,822059908662278,825465608493600,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":727,\"model_id\":430202361392,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mhhh94ze7g8w81\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,1718093079,1119699,2098621,700005490,700005495,822059908662278,825465608493600,825465608499232,825465608497696],\"matched_keywords\":[\"\"],\"merge_rank\":727,\"model_id\":430202361392,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46402092797",
"debug_info": null
},
{
"item_basic": {
"itemid": 46602067050,
"shopid": 340471827,
"name": "Apple Watch Series 9 45mm Starlight BH99% Fullset Original iWatch",
"label_ids": [
2018619,
844931064601283,
298463379,
1718093079,
1119699,
2098621,
1059152,
700005489,
822059908662278,
825465608493600,
825465608494624,
825465608499232,
825465608497696,
298933384,
298468389,
1718088045
],
"image": "id-11134207-82251-mizs0pcveg3qe0",
"images": [
"id-11134207-82251-mizs0pcveg3qe0",
"id-11134207-82250-mizs0pc5x79g18",
"id-11134207-8224z-mizs0pc7y8sla6",
"id-11134207-8224u-mizs0pcb17nq6a",
"id-11134207-8224x-mizs0pd0ighz56",
"id-11134207-8224o-mizs0pd0h1xjaa",
"id-11134207-8224z-mizs0pgajke989",
"id-11134207-8224u-mizs0pi0s078cf",
"id-11134207-82252-mizs0pijs2rn67"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764038517,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 7,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 350000000000,
"price_min": 350000000000,
"price_max": 350000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 350000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 277198596065,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 350000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ggapple",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 46602067050,
"shopid": 340471827,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mizs0pcveg3qe0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1718093079,1119699,2098621,1059152,700005489,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":814,\"model_id\":277198596065,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mizs0pcveg3qe0\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931064601283,298463379,1718093079,1119699,2098621,1059152,700005489,822059908662278,825465608493600,825465608494624,825465608499232,825465608497696,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":814,\"model_id\":277198596065,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_46602067050",
"debug_info": null
},
{
"item_basic": {
"itemid": 56852055876,
"shopid": 1579640819,
"name": "Garmin Venu 3S Smartwatch - Garansi Resmi Garmin Indonesia",
"label_ids": [
844931064601283,
844931086908638,
1049116,
1049117,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "id-11134207-8224t-mhh26gyjxfk495",
"images": [
"id-11134207-8224t-mhh26gyjxfk495",
"id-11134207-8224y-mhh26gysfnd147",
"id-11134207-8224v-mhh26hcqafpc4b",
"id-11134207-8224o-mhh26gyj3xmu3c",
"id-11134207-8224q-mhh26gyj5c7aea"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1764038260,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 699900000000,
"price_min": 699900000000,
"price_max": 699900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Soft Gold Ivory",
"Slate Pebble Gray",
"SoftGold French Gray"
],
"images": [
"id-11134207-8224x-mhh26gyj6qrq9f",
"id-11134207-8224z-mhh26gyj85c602",
"id-11134207-8224z-mhh26gyj9jwmc9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 699900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 345200038335,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 699900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "KDMP Mabung Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 56852055876,
"shopid": 1579640819,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhh26gyjxfk495\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":660,\"model_id\":345200038335,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224t-mhh26gyjxfk495\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":660,\"model_id\":345200038335,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_56852055876",
"debug_info": null
},
{
"item_basic": {
"itemid": 51602006450,
"shopid": 1579640819,
"name": "Garmin Venu 3 Smartwatch - Garansi Resmi Garmin Indonesia",
"label_ids": [
844931086908638,
844931064601283,
1049116,
1049117,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1119699
],
"image": "id-11134207-82250-mhfrj5xaerda97",
"images": [
"id-11134207-82250-mhfrj5xaerda97",
"id-11134207-8224x-mhfrj5xc7dhr91",
"id-11134207-82250-mhfrj61hon4dde",
"id-11134207-8224u-mhfrj5xaby8e26",
"id-11134207-8224q-mhfrj5xadcsuf3",
"id-11134207-8224r-mhfrj5xag5xq29"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763959811,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "Garmin",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 689900000000,
"price_min": 689900000000,
"price_max": 689900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Slate Black",
"Silver Whitestone"
],
"images": [
"id-11134207-8224p-mhfrj5xahki69a",
"id-11134207-82251-mhfrj5xaiz2mea"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 689900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 262196422124,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 689900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "KDMP Mabung Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51602006450,
"shopid": 1579640819,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhfrj5xaerda97\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":661,\"model_id\":262196422124,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mhfrj5xaerda97\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049116,1049117,822059908662278,825465608499232,825465608497696,1718093079,1119699],\"matched_keywords\":[\"\"],\"merge_rank\":661,\"model_id\":262196422124,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51602006450",
"debug_info": null
},
{
"item_basic": {
"itemid": 53151999180,
"shopid": 270686239,
"name": "ORIN OBU T1 - GPS Tracker Alat Pelacak Lokasi Mobil Tanpa DUAL USB Lighter CHARGER Plug & Play",
"label_ids": [
1400066568,
2018619,
844931064601283,
844931086908638,
1718093079,
1119699,
1049117,
1049116,
822059908662278,
825465608492064,
825465608499232,
825465608497696,
2218763
],
"image": "id-11134207-8224p-mhfmoxxyww0829",
"images": [
"id-11134207-8224p-mhfmoxxyww0829",
"id-11134207-8224r-mhfmoxxysoawe9",
"id-11134207-8224t-mhfmoxxyr9qg99",
"id-11134207-8224o-mhfmoxxypv6019"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763953636,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "VASTEL",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 125000000000,
"price_min": 125000000000,
"price_max": 125000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PAKET",
"options": [
"UNIT ONLY",
"+KUOTA 1THN"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 125000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 272195928133,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 125000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ORIN Indonesia",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 53151999180,
"shopid": 270686239,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhfmoxxyww0829\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,1718093079,1119699,1049117,1049116,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":184,\"model_id\":272195928133,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224p-mhfmoxxyww0829\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,1718093079,1119699,1049117,1049116,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":184,\"model_id\":272195928133,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_53151999180",
"debug_info": null
},
{
"item_basic": {
"itemid": 49252014740,
"shopid": 270686239,
"name": "BUY 1 GET 1 FREE! ORIN OBU M GPS Tracker Motor Alat Pelacak JPS Lokasi Jarak Jauh Tersembunyi + ORIN TAG",
"label_ids": [
844931086908638,
844931064601283,
1400066568,
2018619,
1718093079,
1119699,
1049116,
1049117,
822059908662278,
825465608492064,
825465608499232,
825465608497696,
2218763
],
"image": "id-11134207-8224q-mhfmoxxz13pk8b",
"images": [
"id-11134207-8224q-mhfmoxxz13pk8b",
"id-11134207-8224v-mhfocgr9gwztdb",
"id-11134207-8224s-mhfocgr9e3ux97",
"id-11134207-8224y-mhfocgr9fifd45",
"id-11134207-82252-mhfocgr9baq1aa"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763951356,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "VASTEL",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 125000000000,
"price_min": 125000000000,
"price_max": 125000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "PAKET",
"options": [
"UNIT ONLY",
"+KUOTA 1BLN"
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 125000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 405195287258,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 125000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ORIN Indonesia",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49252014740,
"shopid": 270686239,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhfmoxxz13pk8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,2018619,1718093079,1119699,1049116,1049117,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":182,\"model_id\":405195287258,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224q-mhfmoxxz13pk8b\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1400066568,2018619,1718093079,1119699,1049116,1049117,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":182,\"model_id\":405195287258,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49252014740",
"debug_info": null
},
{
"item_basic": {
"itemid": 40476673688,
"shopid": 270686239,
"name": "ORIN TAG Mini IOS Apple GPS Tracker Motor dan Kunci Anti Maling Pelacak Apple iCloud Find My JPS Tanpa Sim Card",
"label_ids": [
1400066568,
2018619,
844931064601283,
844931086908638,
1119699,
1718093079,
1049116,
1049117,
822059908662278,
825465608492064,
825465608499232,
825465608497696,
2218763
],
"image": "id-11134207-8224s-mhd1jgt3t72ie8",
"images": [
"id-11134207-8224s-mhd1jgt3t72ie8",
"id-11134207-8224q-mhd1jgt3ulmy36",
"id-11134207-8224x-mhd0t1ek4etm84",
"id-11134207-8224r-mhd1jgsvglji58",
"id-11134207-8224u-mhd0t1ek309605",
"id-11134207-8224y-mhd1jgslpfkc50",
"id-11134207-8224q-mhd1jgspj37s3c",
"id-11134207-8224y-mhd1jgszk360a0",
"id-11134207-8224s-mhd1jgsnkutlde"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763795291,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "VASTEL",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 24900000000,
"price_min": 24900000000,
"price_max": 24900000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 24900000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 390188889332,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 24900000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "ORIN Indonesia",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 40476673688,
"shopid": 270686239,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhd1jgt3t72ie8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,1119699,1718093079,1049116,1049117,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":556,\"model_id\":390188889332,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224s-mhd1jgt3t72ie8\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,2018619,844931064601283,844931086908638,1119699,1718093079,1049116,1049117,822059908662278,825465608492064,825465608499232,825465608497696,2218763],\"matched_keywords\":[\"\"],\"merge_rank\":556,\"model_id\":390188889332,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_40476673688",
"debug_info": null
},
{
"item_basic": {
"itemid": 50701931915,
"shopid": 1662546121,
"name": "Gavanazz - PEJE Vibe Smartwatch Custom Video Screen Bluetooth Call IP68 Health & Music",
"label_ids": [
1428713,
1718087960,
844931064601283,
844931086908638,
1049112,
700005512,
822059908662278,
825465608499232,
298933384,
1718093079,
298463379,
700700063,
298468389,
1718088045
],
"image": "id-11134201-8224y-mhcsiicrq9zed5",
"images": [
"id-11134201-8224y-mhcsiicrq9zed5",
"id-11134201-82251-mhcsikuzco3u92",
"id-11134201-8224u-mhcsinbrxszz66",
"id-11134201-8224q-mhcsio89fr4eb4",
"id-11134201-8224v-mhcsipxgvz7t33"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763779757,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 94423000000,
"price_min": 94423000000,
"price_max": 94423000000,
"price_min_before_discount": 96350000000,
"price_max_before_discount": 96350000000,
"hidden_price_display": null,
"price_before_discount": 96350000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-2%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"BLACK",
"PINK"
],
"images": [
"id-11134201-8224z-mhcsj6cy9k3yf3",
"id-11134201-8224y-mhcsj827o0lpb9"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 786904832868352,
"price": 93523000000,
"strikethrough_price": 96350000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1288936141242392,
"discount_text": "-2%",
"model_id": 385187908068,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1288936141242392,
"voucher_code": "GAVANAZ4",
"voucher_discount": 900000000,
"time_info": {
"start_time": 1763112900,
"end_time": 1769878740,
"valid_duration": null
},
"groups": [],
"min_spend": 28000000000
},
"recommended_platform_voucher_info": null,
"original_price": 96350000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Gavanazz",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 50701931915,
"shopid": 1662546121,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mhcsiicrq9zed5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1049112,700005512,822059908662278,825465608499232,298933384,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":834,\"model_id\":385187908068,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224y-mhcsiicrq9zed5\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,1049112,700005512,822059908662278,825465608499232,298933384,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":834,\"model_id\":385187908068,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_50701931915",
"debug_info": null
},
{
"item_basic": {
"itemid": 49351915240,
"shopid": 1625140159,
"name": "Samsung GT8 Jam tangan pintar GPS NFC Layar 1.28 inci Panggilan Bluetooth Pemantauan detak jantung dua Baterai Tahan lama Jam tangan pintar bisnis universal pria dan wanita",
"label_ids": [
1428713,
1718087960,
844931064601283,
844931086908638,
298463379,
1049116,
700005516,
822059908662278,
825465608499232,
825465608497696,
1718093079,
1400285055,
298933384,
2023641,
1015914,
700190087,
2018619,
2098621,
1718088045,
298468389
],
"image": "id-11134207-8224r-mhbp09qv1szx34",
"images": [
"id-11134207-8224r-mhbp09qv1szx34",
"id-11134207-82250-mhbp09qv4m4t9e",
"id-11134207-8224s-mhbp09qv60p99c",
"id-11134207-8224x-mhbp09qv8tu5da",
"id-11134207-8224t-mhbp09qv7f9pdb",
"id-11134207-8224p-mhbp09qva8el01",
"id-11134207-8224y-mhbp09qvbmz19f",
"id-11134207-82250-mhbp09qvd1jh4c",
"id-11134207-82250-mhbp09qv37kda7"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763714995,
"sold": 5,
"historical_sold": 19,
"liked": false,
"liked_count": 16,
"view_count": null,
"catid": 100013,
"brand": "Samsung",
"cmt_count": 5,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 20459100000,
"price_min": 20459100000,
"price_max": 20459100000,
"price_min_before_discount": 44000000000,
"price_max_before_discount": 44000000000,
"hidden_price_display": null,
"price_before_discount": 44000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-54%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvb-mhbpmx5vm3ux8a.16000081763714442.mp4",
"thumb_url": "id-11110105-6vdvb-mhbpmx5vm3ux8a_cover",
"duration": 32,
"version": 2,
"vid": "id-11110105-6vdvb-mhbpmx5vm3ux8a",
"formats": [
{
"format": 1600008,
"defn": "V720P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvb-mhbpmx5vm3ux8a.16000081763714442.mp4",
"url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mhbpmx5vm3ux8a.16000081763714442.mp4",
"width": 1280,
"height": 720
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mhbpmx5vm3ux8a.default.mp4",
"width": 960,
"height": 540
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Warna",
"options": [
"black",
"silver"
],
"images": [
"id-11134207-8224r-mhbp09qveg3x03",
"id-11134207-82250-mhbp09qv37kda7"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
5,
0,
0,
0,
0,
5
],
"rcount_with_context": 4,
"rcount_with_image": 2
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": {
"bundle_deal_id": 388004577558782,
"bundle_deal_label": "Pilih 2, diskon 1%"
},
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Sidoarjo",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 201,
"promotion_id": 825875520618496,
"price": 19459100000,
"strikethrough_price": 44000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1332338806505472,
"discount_text": "-54%",
"model_id": 335182117813,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1332338806505472,
"voucher_code": "SVC-1332338806505472",
"voucher_discount": 1000000000,
"time_info": {
"start_time": 1768323600,
"end_time": 1768409999,
"valid_duration": null
},
"groups": [],
"min_spend": 10000000000
},
"recommended_platform_voucher_info": null,
"original_price": 44000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": {
"label_type": 2,
"exclusive_price_result": null,
"deep_discount_skin": {
"skin_id": 75157,
"start_time": 1768323600,
"end_time": 1768409999,
"skin_data": {
"promo_label": {
"promotion_price": "Rp 194.591",
"hidden_promotion_price": "Rp 1?4.591",
"text": null,
"start_time": 1768323600,
"end_time": 1768409999
}
}
}
},
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 19,
"rounded_local_monthly_sold_count": 5,
"local_monthly_sold_count_text": "5",
"rounded_display_sold_count": 19,
"display_sold_count_text": "19"
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "OneWatch Tech",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 49351915240,
"shopid": 1625140159,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mhbp09qv1szx34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,298463379,1049116,700005516,822059908662278,825465608499232,825465608497696,1718093079,1400285055,298933384,2023641,1015914,700190087,2018619,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":292,\"model_id\":335182117813,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224r-mhbp09qv1szx34\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1428713,1718087960,844931064601283,844931086908638,298463379,1049116,700005516,822059908662278,825465608499232,825465608497696,1718093079,1400285055,298933384,2023641,1015914,700190087,2018619,2098621,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":292,\"model_id\":335182117813,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_49351915240",
"debug_info": null
},
{
"item_basic": {
"itemid": 54951809488,
"shopid": 301061531,
"name": "Hainoteko RW-58 Smart watch Premium 1 ATM Tahan Air 12jam Jam Tangan Layar AMOLED Bisa Call Pantau kesehantan & olahraga 24H Baterai Tahan 10 Hari",
"label_ids": [
834230400556567,
844931064601283,
844931086908638,
2018619,
2023641,
298463379,
1059152,
700005489,
1718093079,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
1119699,
2098621,
298933384,
298468389,
1718088045
],
"image": "id-11134207-8224y-mha3nn0cimtr2d",
"images": [
"id-11134207-8224y-mha3nn0cimtr2d",
"id-11134207-8224x-mha3nn0cftovf0",
"id-11134207-82250-mha3nn0ch89b6e",
"id-11134207-8224p-mha3nn0c1s0af5"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763642302,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "HAINO TEKO",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 68500000000,
"price_min": 68500000000,
"price_max": 68500000000,
"price_min_before_discount": 80000000000,
"price_max_before_discount": 80000000000,
"hidden_price_display": null,
"price_before_discount": 80000000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-14%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6ven7-mhaiqvkr3xn006.16000031763642299.mp4",
"thumb_url": "id-11110105-6ven7-mhaiqvkr3xn006_cover",
"duration": 45,
"version": 2,
"vid": "id-11110105-6ven7-mhaiqvkr3xn006",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6ven7-mhaiqvkr3xn006.16000031763642299.mp4",
"url": "https://down-zl-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mhaiqvkr3xn006.16000031763642299.mp4",
"width": 480,
"height": 640
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6ven7-mhaiqvkr3xn006.default.mp4",
"width": 480,
"height": 640
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "warna",
"options": [
"hitam",
"silver"
],
"images": [
"id-11134207-8224y-mha3nn0cimtr2d",
"id-11134207-8224x-mha3nn0cftovf0"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": true,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": true,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 811587221389312,
"price": 68500000000,
"strikethrough_price": 80000000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": "-14%",
"model_id": 380168922040,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 80000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "HainoTeko.Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54951809488,
"shopid": 301061531,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mha3nn0cimtr2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,844931064601283,844931086908638,2018619,2023641,298463379,1059152,700005489,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2098621,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":586,\"model_id\":380168922040,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mha3nn0cimtr2d\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[834230400556567,844931064601283,844931086908638,2018619,2023641,298463379,1059152,700005489,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,1119699,2098621,298933384,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":586,\"model_id\":380168922040,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54951809488",
"debug_info": null
},
{
"item_basic": {
"itemid": 55601754960,
"shopid": 355849185,
"name": "Huawei Watch Fit 3 - White",
"label_ids": [
844931064601283,
844931086908638,
1059156,
700005499,
1718093079,
822059908662278,
825465608494624,
825465608499232,
825465608497696,
825465608493600,
1119699,
298933384,
2098621
],
"image": "id-11134207-8224v-mh9y6hdouyvf69",
"images": [
"id-11134207-8224v-mh9y6hdouyvf69"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763607794,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 110000000000,
"price_min": 110000000000,
"price_max": 110000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Semarang",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 110000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 385162583835,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 110000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "dadiberkah",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55601754960,
"shopid": 355849185,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mh9y6hdouyvf69\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059156,700005499,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1119699,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":863,\"model_id\":385162583835,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224v-mh9y6hdouyvf69\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931064601283,844931086908638,1059156,700005499,1718093079,822059908662278,825465608494624,825465608499232,825465608497696,825465608493600,1119699,298933384,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":863,\"model_id\":385162583835,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55601754960",
"debug_info": null
},
{
"item_basic": {
"itemid": 48351743670,
"shopid": 17867851,
"name": "huawei watch GT4",
"label_ids": [
2018619,
844931086908638,
844931064601283,
1049116,
1049117,
1718093079,
822059908662278,
827380695406658,
825465608499232,
825465608497696,
825465608494624,
822120592861206,
1119699,
2098621
],
"image": "id-11134207-8224z-mh95qvgd06x5c3",
"images": [
"id-11134207-8224z-mh95qvgd06x5c3",
"id-11134207-8224r-mh95qvg5ea6g2e",
"id-11134207-8224w-mh95qvgcyscpbe",
"id-11134207-8224z-mh95qvgcvz7t20",
"id-11134207-8224s-mh95qvg5cvm083",
"id-11134207-82252-mh95qvg5foqw31",
"id-11134207-8224v-mh95qvgcxds908",
"id-11134207-8224t-mh95qvgfgop441"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763560757,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 2,
"view_count": null,
"catid": 100013,
"brand": "Huawei",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 170000000000,
"price_min": 170000000000,
"price_max": 170000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Surabaya",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 170000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 320160029080,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 170000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "fxrendykurnia",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48351743670,
"shopid": 17867851,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mh95qvgd06x5c3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,1049116,1049117,1718093079,822059908662278,827380695406658,825465608499232,825465608497696,825465608494624,822120592861206,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":336,\"model_id\":320160029080,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224z-mh95qvgd06x5c3\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018619,844931086908638,844931064601283,1049116,1049117,1718093079,822059908662278,827380695406658,825465608499232,825465608497696,825465608494624,822120592861206,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":336,\"model_id\":320160029080,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48351743670",
"debug_info": null
},
{
"item_basic": {
"itemid": 45401716308,
"shopid": 1479995539,
"name": "{New} Rolemani R9 Pro Jam Tangan Smartwatch Asli Waterproof IP68 Custom Wallpaper Kalkulator Bluetooth Call Android IOS More Sports Modes Pemantauan Kesehatan Smart Watch Pria Wanita",
"label_ids": [
2018618,
2153644,
1012729,
844931064601283,
844931086908638,
298463379,
1718093079,
1119699,
2213652,
1718087960,
1428713,
1049112,
1059151,
822059908662278,
825465608499232,
1015914,
700190087,
2068629,
298938357,
825465608497696,
2098629,
298938368,
2098628,
1718088045,
298468389
],
"image": "id-11134207-8224y-mgw7gxsi9fd668",
"images": [
"id-11134207-8224y-mgw7gxsi9fd668",
"id-11134207-8224x-mh8jju7u1hcc0d",
"id-11134207-82252-mh8jju7onmyx04",
"id-11134207-8224w-mh8jju8pc0su26",
"id-11134207-8224q-mh8jju8p4zygce",
"id-11134207-8224t-mh8jju7tm13gf4",
"id-11134207-8224q-mh8jju8sotn355",
"id-11134207-8224z-mh8jju7om8eh42",
"id-11134207-8224x-mh8jju7v3eo8ff"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763523281,
"sold": 1,
"historical_sold": 2,
"liked": false,
"liked_count": 9,
"view_count": null,
"catid": 100013,
"brand": "ROLEMANI",
"cmt_count": 1,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 23999900000,
"price_min": 23999900000,
"price_max": 23999900000,
"price_min_before_discount": 99999900000,
"price_max_before_discount": 99999900000,
"hidden_price_display": null,
"price_before_discount": 99999900000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-76%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"Pink",
"Black"
],
"images": [
"id-11134207-8224q-mh8jju912tqid4",
"id-11134207-8224w-mh8jju9148ayc8"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 5,
"rating_count": [
1,
0,
0,
0,
0,
1
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": true,
"show_official_shop_label": true,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": {
"add_on_deal_id": 410459157312368,
"add_on_deal_label": "Hadiah Gratis",
"sub_type": 1,
"status": 1
},
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bekasi",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": 3,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": "Rp79RB X 3",
"spl_repayment_label_text": "Cicilan Murah 0%",
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 731823613740032,
"price": 23899900000,
"strikethrough_price": 99999900000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1280214446129152,
"discount_text": "-76%",
"model_id": 420155136434,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1280214446129152,
"voucher_code": "ROLE11020",
"voucher_discount": 100000000,
"time_info": {
"start_time": 1762072800,
"end_time": 1769878740,
"valid_duration": null
},
"groups": [],
"min_spend": 100000000
},
"recommended_platform_voucher_info": null,
"original_price": 99999900000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 2,
"rounded_local_monthly_sold_count": 1,
"local_monthly_sold_count_text": "1",
"rounded_display_sold_count": 2,
"display_sold_count_text": "2"
},
"spl_installment_discount": {
"card_promo_title_text": "Cicilan 0%",
"card_promo_sub_title_text": "Rp79RB x 3"
},
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Rolemani Official Store",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 45401716308,
"shopid": 1479995539,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mgw7gxsi9fd668\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1012729,844931064601283,844931086908638,298463379,1718093079,1119699,2213652,1718087960,1428713,1049112,1059151,822059908662278,825465608499232,1015914,700190087,2068629,298938357,825465608497696,2098629,298938368,2098628,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":699,\"model_id\":420155136434,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224y-mgw7gxsi9fd668\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[2018618,2153644,1012729,844931064601283,844931086908638,298463379,1718093079,1119699,2213652,1718087960,1428713,1049112,1059151,822059908662278,825465608499232,1015914,700190087,2068629,298938357,825465608497696,2098629,298938368,2098628,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":699,\"model_id\":420155136434,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_45401716308",
"debug_info": null
},
{
"item_basic": {
"itemid": 43826566505,
"shopid": 1665124596,
"name": "MICODUS Gps Tracker 2G Portable ML500 - Daya tahan baterai 6 hari - Gratis Aplikasi",
"label_ids": [
1400066568,
844931064601283,
1059152,
700005489,
1718093079,
822059908662278,
825465608499232,
825465608494624,
2098621,
298933384
],
"image": "id-11134207-82250-mh8ilvba7qj37f",
"images": [
"id-11134207-82250-mh8ilvba7qj37f",
"id-11134207-8224r-mh8ilvbg6nezee",
"id-11134207-8224z-mh8ilvbg81zfd7",
"id-11134207-82251-mh8ilvbgav4bfe",
"id-11134207-8224o-mh8ilvbgc9or44",
"id-11134207-8224r-mh8ilvbgdo97d3",
"id-11134207-8224z-mh8ilvbgf2tn0d",
"id-11134207-8224t-mh8ilvbgghe337"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763521787,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 65000000000,
"price_min": 65000000000,
"price_max": 65000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": [
{
"video_id": "api/v4/11110105/mms/id-11110105-6vdvb-mh8isy3lhwjy13.16000031763521262.mp4",
"thumb_url": "id-11110105-6vdvb-mh8isy3lhwjy13_cover",
"duration": 59,
"version": 2,
"vid": "id-11110105-6vdvb-mh8isy3lhwjy13",
"formats": [
{
"format": 1600003,
"defn": "V480P",
"profile": "MP4",
"path": "api/v4/11110105/mms/id-11110105-6vdvb-mh8isy3lhwjy13.16000031763521262.mp4",
"url": "https://down-tx-sg.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mh8isy3lhwjy13.16000031763521262.mp4",
"width": 480,
"height": 480
}
],
"default_format": {
"format": 1600323,
"defn": "V540P",
"profile": "MP4",
"path": "",
"url": "https://mms.vod.susercontent.com/api/v4/11110105/mms/id-11110105-6vdvb-mh8isy3lhwjy13.default.mp4",
"width": 480,
"height": 480
},
"mms_data": null
}
],
"tier_variations": [
{
"name": "Varian",
"options": [
"GPS Only",
"GPS + Simcard"
],
"images": [
"id-11134207-8224y-mh8ilvbghvyjd2",
"id-11134207-82252-mh8ilvbgjaiz56"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Jakarta Pusat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 65000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 375154897656,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 65000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "MICODUS Online",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 43826566505,
"shopid": 1665124596,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mh8ilvba7qj37f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,825465608494624,2098621,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":797,\"model_id\":375154897656,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82250-mh8ilvba7qj37f\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1400066568,844931064601283,1059152,700005489,1718093079,822059908662278,825465608499232,825465608494624,2098621,298933384],\"matched_keywords\":[\"\"],\"merge_rank\":797,\"model_id\":375154897656,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":true}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_43826566505",
"debug_info": null
},
{
"item_basic": {
"itemid": 48751698468,
"shopid": 9227816,
"name": "Smartwatch Lige Kotak Military Q6",
"label_ids": [
1000167,
2018619,
844931064601283,
844931086908638,
298463379,
1049112,
700005517,
822059908662278,
825465608492064,
825465608499232,
825465608497696,
840990690654214,
840955085144628,
1718093079,
1119699,
2048661,
2048660,
700765096,
2098621,
298933384,
1718088045,
298468389
],
"image": "id-11134207-8224w-mh8a7fkdird6d7",
"images": [
"id-11134207-8224w-mh8a7fkdird6d7",
"id-11134207-8224v-mh8a7fkdk5xmcf"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763507219,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "Lige",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 25000000000,
"price_min": 25000000000,
"price_max": 25000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Bandung Barat",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 25000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 320154151397,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 25000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "GREYZSHOP",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 48751698468,
"shopid": 9227816,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mh8a7fkdird6d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,844931086908638,298463379,1049112,700005517,822059908662278,825465608492064,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,2048661,2048660,700765096,2098621,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":416,\"model_id\":320154151397,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-8224w-mh8a7fkdird6d7\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1000167,2018619,844931064601283,844931086908638,298463379,1049112,700005517,822059908662278,825465608492064,825465608499232,825465608497696,840990690654214,840955085144628,1718093079,1119699,2048661,2048660,700765096,2098621,298933384,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":416,\"model_id\":320154151397,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_48751698468",
"debug_info": null
},
{
"item_basic": {
"itemid": 55851532936,
"shopid": 54060005,
"name": "JETE Venus Smartwatch | 1.75\" AMOLED HD FULL SCREEN | HITAM (BNIB!)",
"label_ids": [
1049116,
700005558,
822059908662278,
825465608499232,
844931064601283,
1718093079,
1015914,
700190087,
1119699,
2098621
],
"image": "id-11134207-82251-mh63swpecw7h38",
"images": [
"id-11134207-82251-mh63swpecw7h38",
"id-11134207-82250-mh63swpea32ldc",
"id-11134207-8224y-mh63swpebhn1b8"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763375296,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "JETE",
"cmt_count": 0,
"flag": 131072,
"cb_option": 0,
"item_status": "normal",
"price": 45000000000,
"price_min": 45000000000,
"price_max": 45000000000,
"price_min_before_discount": -1,
"price_max_before_discount": -1,
"hidden_price_display": null,
"price_before_discount": 0,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": null,
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": true,
"is_preferred_plus_seller": false,
"shop_location": "Kab. Pasuruan",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": false,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 0,
"promotion_id": 0,
"price": 45000000000,
"strikethrough_price": null,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": null,
"discount_text": null,
"model_id": 262164858339,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": null,
"recommended_platform_voucher_info": null,
"original_price": 45000000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "TRONIK STORE 007",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 55851532936,
"shopid": 54060005,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mh63swpecw7h38\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049116,700005558,822059908662278,825465608499232,844931064601283,1718093079,1015914,700190087,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":368,\"model_id\":262164858339,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134207-82251-mh63swpecw7h38\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[1049116,700005558,822059908662278,825465608499232,844931064601283,1718093079,1015914,700190087,1119699,2098621],\"matched_keywords\":[\"\"],\"merge_rank\":368,\"model_id\":262164858339,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_55851532936",
"debug_info": null
},
{
"item_basic": {
"itemid": 54551394481,
"shopid": 1623950990,
"name": "Banivestiwall - Whoop 5.0 & Mg Fitness Tracker One, Peak & Life Advanced Health & Recovery Insights",
"label_ids": [
844931086908638,
844931064601283,
1049112,
1049147,
822059908662278,
825465608499232,
825465608497696,
2098621,
298933384,
1428713,
1718087960,
1718093079,
298463379,
700700063,
1718088045,
298468389
],
"image": "id-11134201-8224t-mh1uvhidaia161",
"images": [
"id-11134201-8224t-mh1uvhidaia161",
"id-11134201-82252-mh1uvigancb3bd",
"id-11134201-8224o-mh1uvk5felmy07",
"id-11134201-8224y-mh1uvlv4khzi06",
"id-11134201-8224y-mh1uvoc0cruz6d"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763117848,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 1,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 1141984200000,
"price_min": 1141984200000,
"price_max": 1141984200000,
"price_min_before_discount": 1165290000000,
"price_max_before_discount": 1165290000000,
"hidden_price_display": null,
"price_before_discount": 1165290000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-2%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "",
"options": [
""
],
"images": null,
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 792573099163648,
"price": 1141084200000,
"strikethrough_price": 1165290000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1294603434475520,
"discount_text": "-2%",
"model_id": 287157342032,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1294603434475520,
"voucher_code": "BANIVEST4",
"voucher_discount": 900000000,
"time_info": {
"start_time": 1763788500,
"end_time": 1769878740,
"valid_duration": null
},
"groups": [],
"min_spend": 28000000000
},
"recommended_platform_voucher_info": null,
"original_price": 1165290000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Banivestiwall",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 54551394481,
"shopid": 1623950990,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mh1uvhidaia161\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,298933384,1428713,1718087960,1718093079,298463379,700700063,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":624,\"model_id\":287157342032,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224t-mh1uvhidaia161\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,298933384,1428713,1718087960,1718093079,298463379,700700063,1718088045,298468389],\"matched_keywords\":[\"\"],\"merge_rank\":624,\"model_id\":287157342032,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_54551394481",
"debug_info": null
},
{
"item_basic": {
"itemid": 51001403014,
"shopid": 1623950990,
"name": "Banivestiwall - Aukey Smartwatch 2 Ultra Amoled, Waterproof, Bluetooth Call Sw-2U",
"label_ids": [
844931086908638,
844931064601283,
1049112,
1049147,
822059908662278,
825465608499232,
825465608497696,
2098621,
1718087960,
1428713,
1718093079,
298463379,
700700063,
298468389,
1718088045
],
"image": "id-11134201-8224w-mh1saj7bp79mde",
"images": [
"id-11134201-8224w-mh1saj7bp79mde",
"id-11134201-8224w-mh1sal2znqbu06",
"id-11134201-8224o-mh1salzqhhc9b2",
"id-11134201-8224x-mh1samwmm6ffd5",
"id-11134201-8224y-mh1saom7ajgr4e"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763113506,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 95344200000,
"price_min": 95344200000,
"price_max": 95344200000,
"price_min_before_discount": 97290000000,
"price_max_before_discount": 97290000000,
"hidden_price_display": null,
"price_before_discount": 97290000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-2%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Spesifikasi",
"options": [
"S"
],
"images": [
"id-11134201-8224r-mh1sb80bku179d"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count": [
0,
0,
0,
0,
0,
0
],
"rcount_with_context": 0,
"rcount_with_image": 0
},
"item_type": 0,
"reference_item_id": "",
"transparent_background_image": "",
"is_adult": false,
"badge_icon_type": null,
"shopee_verified": false,
"is_official_shop": false,
"show_official_shop_label": false,
"show_shopee_verified_label": false,
"show_official_shop_label_in_title": null,
"is_cc_installment_payment_eligible": false,
"is_non_cc_installment_payment_eligible": false,
"coin_earn_label": null,
"show_free_shipping": false,
"preview_info": null,
"coin_info": null,
"exclusive_price_info": null,
"bundle_deal_id": null,
"can_use_bundle_deal": null,
"bundle_deal_info": null,
"is_group_buy_item": null,
"has_group_buy_stock": null,
"group_buy_info": null,
"welcome_package_type": 0,
"welcome_package_info": null,
"add_on_deal_info": null,
"can_use_wholesale": false,
"is_preferred_plus_seller": false,
"shop_location": "Bogor",
"has_model_with_available_shopee_stock": null,
"voucher_info": null,
"can_use_cod": true,
"is_on_flash_sale": false,
"spl_installment_tenure": null,
"is_live_streaming_price": null,
"is_mart": false,
"pack_size": null,
"deep_discount_skin": null,
"is_service_by_shopee": false,
"spl_repayment_label_repayment": null,
"spl_repayment_label_text": null,
"highlight_video": null,
"free_shipping_info": null,
"global_sold_count": null,
"wp_eligibility": null,
"live_streaming_info": null,
"non_wifi_highlight_video": null,
"dynamic_ui_flag": null,
"estimated_delivery_time": null,
"adult_age_threshold": null,
"need_kyc": false,
"adult_types": null,
"item_card_display_price": {
"promotion_type": 301,
"promotion_id": 792573099163648,
"price": 94444200000,
"strikethrough_price": 97290000000,
"discount": 0,
"hidden_price_display_text": null,
"recommended_shop_voucher_promotion_id": 1294603434475520,
"discount_text": "-2%",
"model_id": 277157110583,
"recommended_platform_voucher_promotion_id": null,
"recommended_shop_voucher_info": {
"promotion_id": 1294603434475520,
"voucher_code": "BANIVEST4",
"voucher_discount": 900000000,
"time_info": {
"start_time": 1763788500,
"end_time": 1769878740,
"valid_duration": null
},
"groups": [],
"min_spend": 28000000000
},
"recommended_platform_voucher_info": null,
"original_price": 97290000000,
"model_selection_logic": 3,
"final_price_icon": null
},
"item_card_display_label": null,
"model_id": null,
"is_shopee_choice": false,
"item_card_display_sold_count": {
"historical_sold_count": null,
"monthly_sold_count": null,
"historical_sold_count_text": null,
"monthly_sold_count_text": null,
"display_sold_count": 0,
"rounded_local_monthly_sold_count": 0,
"local_monthly_sold_count_text": "",
"rounded_display_sold_count": 0,
"display_sold_count_text": ""
},
"spl_installment_discount": null,
"item_card_hidden_field": null,
"compatible_with_user_vehicle": false,
"item_card_display_overlay": null,
"shop_name": "Banivestiwall",
"shop_icon": null,
"is_lowest_price": false,
"name_tr": null,
"shop_location_tr": null,
"fbs_logo": null,
"item_card_display_brand_info": null,
"voucher_label_display_infos": null,
"item_card_element_collection": null
},
"adsid": null,
"campaignid": null,
"distance": null,
"match_type": null,
"ads_keyword": null,
"deduction_info": null,
"collection_id": null,
"display_name": null,
"campaign_stock": null,
"json_data": "oganAQqkAWJmZi1zZWFyY2hfaWRfc2cxMl8xMC4xNDkuMTMuMjMzX3tiMTFiYTNhZjQ4NTU3ZmE1YmY2Mzg5OGRiMjdkOGIwMDowMjAwMDA3OTQyYTQxMDE0OjAxMDAwMTMxM2NlYjBlYmR9X3NlYXJjaC1iZmZzZWFyY2gtbGl2ZS1pZC4yNjAxMTIxNTQ4NDk4Mzc5ODYuMjYwMTEyMTY0NTUyNDcyODc4",
"tracking_info": {
"viral_spu_tracking": null,
"business_tracking": null,
"multi_search_tracking": null,
"groupid": null,
"ruleid": [
0
]
},
"itemid": 51001403014,
"shopid": 1623950990,
"algo_image": null,
"fe_flags": null,
"item_type": 1,
"foody_item": null,
"search_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mh1saj7bp79mde\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1718087960,1428713,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":757,\"model_id\":277157110583,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"bff_item_tracking": "{\"ads_rank_bid\":0,\"biz_json\":\"\",\"groupid\":0,\"image_id\":\"id-11134201-8224w-mh1saj7bp79mde\",\"image_source\":0,\"is_ads\":false,\"is_dp_mirror_sku\":false,\"is_liked\":false,\"is_on_flash_sale\":false,\"item_type\":1,\"item_type_str\":\"organic\",\"label_ids\":[844931086908638,844931064601283,1049112,1049147,822059908662278,825465608499232,825465608497696,2098621,1718087960,1428713,1718093079,298463379,700700063,298468389,1718088045],\"matched_keywords\":[\"\"],\"merge_rank\":757,\"model_id\":277157110583,\"model_source\":0,\"price_source\":0,\"relevance_level\":-1,\"ruleids\":[0],\"search_guide_info\":\"\",\"search_xui_info\":\"\",\"traffic_source\":1,\"with_video\":false}",
"personalized_labels": null,
"biz_json": "",
"creative_image_id": null,
"creative_id": null,
"creative_id_int": null,
"item_card_label_groups": null,
"title_max_lines": null,
"play_icon_ui_type": 1,
"item_card_bottom_element": null,
"video_card": null,
"live_card": null,
"item_card_element_collection": null,
"item_card_price": null,
"display_ad_tag": null,
"traffic_source": 1,
"live_card_item": null,
"live_card_rcmd_label": null,
"item_card_displayed_asset": null,
"item_data": null,
"ads_data_tms": "",
"item_config": {
"disable_model_id_to_pdp": false,
"disable_image_to_pdp": false
},
"ctx_item_type": 1,
"real_items": null,
"v_model_id": null,
"video_card_item": null,
"ad_voucher_signature": null,
"ui_info": null,
"minifeed_card_detail": null,
"topic_card_detail": null,
"repeated_item_type": 0,
"hashtag_card_detail": null,
"item_unique_key": "0_51001403014",
"debug_info": null
},
{
"item_basic": {
"itemid": 49001412980,
"shopid": 1623950990,
"name": "Banivestiwall - Hyundai Hy-C8 Pro Ai Smart Glasses Translator 100+ Bahasa, Transcript, Musik, Bluetooth Call",
"label_ids": [
844931064601283,
844931086908638,
1049112,
1049147,
822059908662278,
825465608499232,
825465608497696,
2098621,
1428713,
1718087960,
1718093079,
298463379,
700700063,
1718088045,
298468389
],
"image": "id-11134201-82252-mh1rxkkwq2of62",
"images": [
"id-11134201-82252-mh1rxkkwq2of62",
"id-11134201-82251-mh1rxlhi7cayc0",
"id-11134201-8224o-mh1rxn68ahord6",
"id-11134201-8224w-mh1rxouq9dsfdb",
"id-11134201-8224z-mh1rxrb0z4ztce"
],
"currency": "IDR",
"stock": 1,
"status": 1,
"ctime": 1763112900,
"sold": 0,
"historical_sold": 0,
"liked": false,
"liked_count": 0,
"view_count": null,
"catid": 100013,
"brand": "",
"cmt_count": 0,
"flag": 196608,
"cb_option": 0,
"item_status": "normal",
"price": 48108200000,
"price_min": 48108200000,
"price_max": 48108200000,
"price_min_before_discount": 49090000000,
"price_max_before_discount": 49090000000,
"hidden_price_display": null,
"price_before_discount": 49090000000,
"has_lowest_price_guarantee": false,
"show_discount": 0,
"raw_discount": 0,
"discount": "-2%",
"is_category_failed": null,
"size_chart": null,
"video_info_list": null,
"tier_variations": [
{
"name": "Warna",
"options": [
"White"
],
"images": [
"id-11134201-82252-mh1ry8v8flscdb"
],
"properties": [],
"type": 0
}
],
"item_rating": {
"rating_star": 0,
"rating_count"